:root {
    --ink: #17231f;
    --muted: #66766d;
    --line: rgba(23, 35, 31, 0.12);
    --paper: #f5f7f2;
    --surface: #ffffff;
    --forest: #10231f;
    --green: #0f766e;
    --mint: #c8f3d4;
    --soft: #e7eee1;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Arial, Helvetica, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 22px;
    padding: 14px clamp(18px, 4vw, 56px);
    border-bottom: 1px solid var(--line);
    background: rgba(245, 247, 242, 0.92);
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
}

.brand img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.brand span {
    display: grid;
    gap: 2px;
    line-height: 1.05;
}

.brand strong {
    font-weight: 900;
}

.brand small {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
}

.main-nav a,
.reserved-link {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0 15px;
    font-size: 14px;
    font-weight: 900;
}

.main-nav a:hover {
    background: var(--soft);
}

.reserved-link {
    justify-self: end;
    color: #fff;
    background: var(--forest);
}

.hero {
    min-height: calc(100vh - 73px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(290px, 410px);
    align-items: end;
    gap: clamp(28px, 5vw, 76px);
    padding: clamp(54px, 8vw, 104px) clamp(18px, 4vw, 56px) clamp(36px, 5vw, 66px);
    color: #fff;
    background:
        linear-gradient(90deg, rgba(16, 35, 31, 0.95), rgba(16, 35, 31, 0.7) 54%, rgba(16, 35, 31, 0.2)),
        linear-gradient(135deg, #10231f 0%, #345f55 48%, #cadaae 100%);
}

.hero-content {
    max-width: 820px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--green);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: #bce8da;
}

.hero h1,
.section h2 {
    margin: 0;
    letter-spacing: 0;
    line-height: 0.98;
}

.hero h1 {
    max-width: 920px;
    font-size: clamp(44px, 8vw, 104px);
}

.hero-copy {
    max-width: 650px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(18px, 2vw, 23px);
    line-height: 1.45;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0 20px;
    font-weight: 900;
}

.btn-primary {
    color: var(--forest);
    background: var(--mint);
}

.btn-secondary {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.1);
}

.hero-stats {
    display: grid;
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
}

.hero-stats div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    padding: 18px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.12);
}

.hero-stats strong {
    font-size: 38px;
    line-height: 1;
}

.hero-stats span {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 900;
    text-align: right;
}

.section {
    padding: clamp(52px, 8vw, 96px) clamp(18px, 4vw, 56px);
}

.split-section {
    display: grid;
    grid-template-columns: minmax(230px, 0.52fr) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: start;
}

.soft-section {
    background: var(--soft);
}

.section-heading {
    max-width: 430px;
}

.section-heading.wide {
    max-width: 720px;
}

.section h2 {
    font-size: clamp(31px, 4vw, 56px);
}

.section-heading p:not(.eyebrow),
.contact-section p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.event-card {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: 0 16px 40px rgba(23, 35, 31, 0.08);
}

.date-pill {
    width: fit-content;
    padding: 8px 10px;
    border-radius: 999px;
    color: var(--green);
    background: rgba(15, 118, 110, 0.1);
    font-size: 13px;
    font-weight: 900;
}

.time-pill {
    width: fit-content;
    padding: 8px 10px;
    border-radius: 999px;
    color: #374151;
    background: #f3f4f6;
    font-size: 13px;
    font-weight: 900;
}

.event-card h3,
.tournament-panel h3 {
    margin: 0;
    font-size: 23px;
    line-height: 1.15;
}

.event-card p,
.tournament-panel p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.event-card strong {
    margin-top: auto;
}

.results-section {
    background: #fff;
}

.result-list {
    display: grid;
    gap: 10px;
    margin-top: 24px;
}

.result-list article {
    display: grid;
    grid-template-columns: minmax(112px, 0.2fr) minmax(180px, 0.35fr) minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.result-list span {
    color: var(--green);
    font-weight: 900;
}

.result-list strong {
    font-size: 18px;
}

.result-list p {
    margin: 0;
    color: var(--muted);
}

.tournament-panel {
    display: grid;
    gap: 18px;
    padding: clamp(24px, 4vw, 38px);
    border-radius: 8px;
    color: #fff;
    background: var(--forest);
}

.tournament-panel article {
    display: grid;
    gap: 12px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.tournament-panel article:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.tournament-panel p {
    color: rgba(255, 255, 255, 0.76);
}

.tournament-panel span {
    color: rgba(255, 255, 255, 0.84);
    font-weight: 900;
}

.contact-section {
    display: grid;
    grid-template-columns: minmax(240px, 0.45fr) minmax(0, 0.55fr);
    gap: clamp(24px, 5vw, 64px);
}

.contact-section p {
    margin: 0;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px clamp(18px, 4vw, 56px);
    color: rgba(255, 255, 255, 0.74);
    background: var(--forest);
}

.site-footer a,
.site-footer span {
    font-weight: 900;
}

.page-shell {
    min-height: calc(100vh - 73px);
    display: grid;
    align-content: center;
    padding: clamp(64px, 10vw, 120px) clamp(18px, 4vw, 56px);
}

.page-shell h1 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(44px, 8vw, 96px);
    line-height: 0.98;
    letter-spacing: 0;
}

.page-hero {
    padding: clamp(60px, 9vw, 112px) clamp(18px, 4vw, 56px) clamp(38px, 5vw, 64px);
    color: #fff;
    background:
        linear-gradient(90deg, rgba(16, 35, 31, 0.94), rgba(16, 35, 31, 0.72)),
        linear-gradient(135deg, #10231f 0%, #345f55 52%, #cadaae 100%);
}

.page-hero h1 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(44px, 8vw, 96px);
    line-height: 0.98;
    letter-spacing: 0;
}

.page-hero p:not(.eyebrow) {
    max-width: 690px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.5;
}

.page-hero .eyebrow {
    color: #bce8da;
}

.events-browser {
    display: grid;
    gap: 28px;
}

.event-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.68);
}

.event-tab {
    min-height: 44px;
    border: 0;
    border-radius: 6px;
    padding: 0 16px;
    color: var(--ink);
    background: transparent;
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    font-weight: 900;
}

.event-tab:hover,
.event-tab.is-active {
    color: #fff;
    background: var(--forest);
}

.events-panel {
    display: grid;
    gap: 22px;
}

.events-panel[hidden] {
    display: none;
}

.events-empty {
    padding: 28px;
    border: 1px dashed var(--line);
    border-radius: 8px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.6);
    font-weight: 800;
}

.poster-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.poster-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: 0 16px 40px rgba(23, 35, 31, 0.08);
}

.poster-card__image {
    aspect-ratio: 3 / 4;
    display: grid;
    place-items: center;
    padding: 10px;
    background: #fff;
}

.poster-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.poster-card__body {
    display: grid;
    gap: 11px;
    padding: 16px;
}

.poster-card__schedule {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.poster-card__location {
    color: var(--ink);
    font-size: 14px;
    line-height: 1.35;
}

.poster-card__body h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.15;
}

.poster-card__body p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.poster-card__meta {
    display: grid;
    gap: 5px;
}

.poster-card__meta strong {
    color: var(--ink);
    font-size: 14px;
}

.poster-card__meta span {
    color: var(--green);
    font-size: 14px;
    font-weight: 900;
}

.event-detail-hero {
    padding: clamp(34px, 6vw, 78px) clamp(18px, 4vw, 56px);
    color: #fff;
    background:
        linear-gradient(90deg, rgba(16, 35, 31, 0.94), rgba(16, 35, 31, 0.72)),
        linear-gradient(135deg, #10231f 0%, #345f55 52%, #cadaae 100%);
}

.page-back-link {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    margin-bottom: 24px;
    border-radius: 999px;
    padding: 0 14px;
    color: var(--forest);
    background: var(--mint);
    font-weight: 900;
}

.event-detail-hero__grid {
    display: grid;
    grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
    gap: clamp(24px, 5vw, 70px);
    align-items: center;
}

.event-detail-poster {
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: #fff;
    padding: 12px;
}

.event-detail-poster img {
    display: block;
    width: 100%;
    max-height: 560px;
    object-fit: contain;
}

.event-detail-summary h1 {
    max-width: 880px;
    margin: 0;
    font-size: clamp(42px, 7vw, 88px);
    line-height: 0.98;
    letter-spacing: 0;
}

.event-detail-summary .eyebrow {
    color: #bce8da;
}

.event-detail-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.event-detail-chips span {
    border: 1px solid rgba(94, 234, 212, 0.26);
    border-radius: 999px;
    background: rgba(94, 234, 212, 0.12);
    padding: 8px 12px;
    color: #dcfffa;
    font-weight: 900;
}

.event-detail-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.event-detail-facts div {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 14px;
}

.event-detail-facts small {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 900;
    text-transform: uppercase;
}

.event-detail-facts strong {
    display: block;
    margin-top: 6px;
    font-size: 20px;
}

.event-detail-copy {
    max-width: 780px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.65;
}

.public-live-section {
    display: grid;
    gap: 24px;
}

.public-event-live {
    border-radius: 12px;
    padding: 10px;
    color: #f8fafc;
    background:
        linear-gradient(115deg, rgba(94, 234, 212, 0.12) 0 1px, transparent 1px 120px),
        radial-gradient(circle at 12% 0%, rgba(94, 234, 212, 0.24), transparent 28%),
        radial-gradient(circle at 88% 8%, rgba(250, 204, 21, 0.14), transparent 24%),
        linear-gradient(135deg, #06111c 0%, #092130 44%, #0b2d2a 100%);
}

.event-dashboard-live {
    display: grid;
    gap: 8px;
}

.event-dashboard-phases {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
}

.event-phase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 11px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05));
    color: #cbd5e1;
}

.event-phase span {
    display: inline-grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    font-size: 12px;
    font-weight: 900;
}

.event-phase strong {
    font-size: clamp(12px, 1.25vw, 18px);
}

.event-phase.is-active {
    border-color: rgba(94, 234, 212, 0.7);
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.34), rgba(94, 234, 212, 0.12));
    color: #fff;
    box-shadow: 0 0 34px rgba(20, 184, 166, 0.2);
}

.event-dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    align-items: start;
}

.event-dashboard-panel {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    padding: 10px;
    backdrop-filter: blur(18px);
}

.event-dashboard-panel__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 8px;
}

.event-dashboard-panel__head p,
.event-dashboard-panel__head strong {
    margin: 0;
}

.event-dashboard-panel__head p {
    color: #99f6e4;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.event-dashboard-panel__head strong {
    color: #fff;
    border-radius: 999px;
    background: rgba(94, 234, 212, 0.14);
    padding: 4px 9px;
    font-size: 12px;
}

.event-pickets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 6px;
}

.event-sector-title,
.event-ranking-sector {
    grid-column: 1 / -1;
    margin-top: 2px;
    border-radius: 8px;
    background: linear-gradient(90deg, rgba(94, 234, 212, 0.24), rgba(94, 234, 212, 0.06));
    color: #a7fff5;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.event-picket-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 3px 7px;
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 9px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    padding: 7px 8px;
}

.event-picket-card.is-empty,
.public-participants-grid article.is-empty {
    opacity: 0.45;
}

.event-picket-number {
    width: fit-content;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(94, 234, 212, 0.28), rgba(94, 234, 212, 0.12));
    color: #99f6e4;
    padding: 3px 7px;
    font-size: 11px;
    font-weight: 900;
}

.event-picket-card strong {
    color: #fff;
    font-size: 12px;
    line-height: 1.15;
    align-self: center;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.event-picket-card small,
.event-ranking-row small {
    color: #bad3df;
    font-size: 10px;
    font-weight: 800;
}

.event-picket-card small {
    grid-column: 1 / -1;
}

.event-ranking {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 3px;
    align-items: start;
}

.event-ranking--sectors {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 8px;
}

.event-ranking-sector-column {
    display: grid;
    gap: 4px;
    align-content: start;
    min-width: 0;
}

.event-ranking-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 8px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.07));
    padding: 5px 7px;
}

.event-ranking-position {
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.24);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
}

.event-ranking-row strong {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #fff;
    font-size: 12px;
    line-height: 1.1;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
}

.event-ranking-name {
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-ranking-row--gold {
    border-color: rgba(250, 204, 21, 0.78);
    background: linear-gradient(90deg, rgba(250, 204, 21, 0.28), rgba(255, 255, 255, 0.1));
    box-shadow: 0 0 14px rgba(250, 204, 21, 0.24);
}

.event-ranking-row--silver {
    border-color: rgba(226, 232, 240, 0.72);
    background: linear-gradient(90deg, rgba(226, 232, 240, 0.2), rgba(255, 255, 255, 0.1));
}

.event-ranking-row--bronze {
    border-color: rgba(251, 146, 60, 0.74);
    background: linear-gradient(90deg, rgba(251, 146, 60, 0.2), rgba(255, 255, 255, 0.1));
}

.event-ranking-row--gold .event-ranking-position {
    background: #facc15;
}

.event-ranking-row--silver .event-ranking-position {
    background: #e2e8f0;
    color: #334155;
}

.event-ranking-row--bronze .event-ranking-position {
    background: #fb923c;
}

.event-prize-badge {
    display: inline-grid;
    width: 16px;
    height: 16px;
    place-items: center;
    border-radius: 50%;
    font-size: 10px;
    line-height: 1;
}

.event-prize-badge--gold {
    background: rgba(250, 204, 21, 0.2);
    box-shadow: 0 0 0 1px rgba(250, 204, 21, 0.36);
}

.event-prize-badge--silver {
    background: rgba(226, 232, 240, 0.18);
    box-shadow: 0 0 0 1px rgba(226, 232, 240, 0.32);
    filter: grayscale(1) brightness(1.35);
}

.event-prize-badge--bronze {
    background: rgba(251, 146, 60, 0.18);
    box-shadow: 0 0 0 1px rgba(251, 146, 60, 0.32);
}

.event-ranking-score {
    display: grid;
    justify-items: end;
}

.event-ranking-score strong {
    color: #5eead4;
    font-size: 14px;
}

.event-dashboard-empty {
    border: 1px dashed rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    color: #dbeafe;
    padding: 26px;
    text-align: center;
    font-weight: 800;
}

.event-dashboard-totals {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.event-dashboard-totals div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 1px solid rgba(94, 234, 212, 0.28);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.24), rgba(255, 255, 255, 0.07));
    padding: 8px 11px;
}

.event-dashboard-totals span {
    color: #bff7ef;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.event-dashboard-totals strong {
    color: #fff;
    font-size: clamp(16px, 2vw, 26px);
    line-height: 1;
}

.public-participants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}

.public-participants-grid article {
    display: grid;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 14px;
    box-shadow: 0 10px 28px rgba(23, 35, 31, 0.06);
}

.public-participants-grid span {
    color: var(--green);
    font-weight: 900;
}

@media (max-width: 980px) {
    .site-header {
        grid-template-columns: 1fr auto;
    }

    .main-nav {
        display: none;
    }

    .hero,
    .split-section,
    .contact-section {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .event-card {
        min-height: auto;
    }

    .poster-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .event-detail-hero__grid,
    .event-detail-facts {
        grid-template-columns: 1fr;
    }

    .event-dashboard-phases,
    .event-dashboard-totals {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .site-header {
        gap: 12px;
        padding: 12px 14px;
    }

    .brand img {
        width: 38px;
        height: 38px;
    }

    .brand strong {
        font-size: 14px;
    }

    .brand small,
    .reserved-link {
        font-size: 12px;
    }

    .reserved-link {
        min-height: 38px;
        padding: 0 12px;
    }

    .hero {
        padding: 44px 16px 28px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-actions {
        display: grid;
    }

    .btn {
        width: 100%;
    }

    .hero-stats div {
        padding: 14px;
    }

    .hero-stats strong {
        font-size: 30px;
    }

    .section {
        padding: 46px 16px;
    }

    .section h2 {
        font-size: 34px;
    }

    .result-list article {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .event-tabs {
        display: grid;
    }

    .event-tab {
        width: 100%;
    }

    .poster-grid {
        grid-template-columns: 1fr;
    }
}
