:root {
  --navy: #06142e;
  --navy-2: #0b2248;
  --blue: #146bff;
  --cyan: #4fd8ff;
  --violet: #7a5cff;
  --red: #ff3d57;
  --paper: #f4f7fb;
  --white: #ffffff;
  --ink: #0a1830;
  --muted: #62708a;
  --line: rgba(11, 34, 72, .14);
  --shadow: 0 24px 70px rgba(5, 20, 48, .14);
  --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.is-hidden { display: none !important; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 999; padding: 12px 18px; background: white; color: var(--ink); }
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  z-index: 30;
  inset: 0 0 auto;
  height: 74px;
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  background: rgba(4, 15, 36, .88);
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: 9px; font-weight: 900; text-decoration: none; letter-spacing: .05em; }
.brand-logo { width: 45px; height: 48px; object-fit: contain; }
.brand-mark { display: inline-grid; place-items: center; min-width: 48px; height: 34px; padding: 0 7px; color: white; background: linear-gradient(135deg, var(--blue), var(--violet)); border-radius: 7px 14px 7px 14px; font-weight: 950; letter-spacing: -.04em; transform: skew(-7deg); }
.main-nav { display: flex; align-items: center; gap: 27px; }
.main-nav a { font-size: 13px; font-weight: 750; text-decoration: none; letter-spacing: .03em; opacity: .82; transition: opacity .2s, color .2s; }
.main-nav a:hover, .main-nav a:focus-visible { opacity: 1; color: var(--cyan); }
.main-nav .nav-protected { padding: 9px 14px; border: 1px solid rgba(255,255,255,.36); border-radius: 999px; }
.menu-button { display: none; border: 1px solid rgba(255,255,255,.3); border-radius: 10px; padding: 8px 12px; color: white; background: transparent; }

.hero { position: relative; display: block; min-height: auto; padding-top: 74px; color: white; overflow: hidden; background: var(--navy); }
.hero-image, .hero-video, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center 35%; filter: saturate(.8) contrast(1.06); }
.hero-video { object-fit: cover; object-position: center; filter: saturate(.75) contrast(1.1); }
.hero-overlay { background: linear-gradient(90deg, rgba(4, 15, 36, .97) 0%, rgba(5, 20, 48, .78) 45%, rgba(5, 20, 48, .18) 78%), linear-gradient(0deg, rgba(4,15,36,.78), transparent 45%); }
.hero-orbit { position: absolute; width: 600px; height: 600px; border: 1px solid rgba(79,216,255,.25); border-radius: 50%; right: -180px; top: 30px; box-shadow: 0 0 0 110px rgba(122,92,255,.04), 0 0 0 230px rgba(20,107,255,.035); }
.hero-content { position: relative; z-index: 2; padding-top: 72px; padding-bottom: 62px; }
.hero-logo { width: clamp(110px, 12vw, 165px); max-height: 150px; margin-bottom: 16px; object-fit: contain; object-position: left center; filter: drop-shadow(0 12px 30px rgba(0,0,0,.35)); }
.eyebrow, .section-kicker { margin: 0 0 16px; color: var(--cyan); font-size: 12px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.hero h1 { max-width: 830px; margin: 0; font-size: clamp(52px, 8.2vw, 108px); line-height: .88; letter-spacing: -.065em; text-transform: uppercase; text-wrap: balance; }
.hero h1 span { color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.9); }
.hero-lead { margin: 25px 0 0; font-size: clamp(18px, 2vw, 25px); color: rgba(255,255,255,.78); }
.hero-actions { display: flex; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 12px 22px; border: 0; border-radius: 8px 16px 8px 16px; font-size: 13px; font-weight: 900; letter-spacing: .045em; text-decoration: none; text-transform: uppercase; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: linear-gradient(135deg, var(--blue), var(--violet)); box-shadow: 0 12px 30px rgba(20,107,255,.3); }
.button-ghost { color: white; border: 1px solid rgba(255,255,255,.45); background: rgba(255,255,255,.06); }
.button-dark { color: white; background: var(--navy); }
.hero-facts { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid rgba(255,255,255,.18); }
.hero-facts div { padding: 22px 26px; border-right: 1px solid rgba(255,255,255,.14); }
.hero-facts span { display: block; margin-bottom: 3px; color: rgba(255,255,255,.55); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero-facts strong { font-size: 15px; }
.ticker { min-height: 54px; padding: 14px max(20px, calc((100vw - 1180px)/2)); display: flex; align-items: center; gap: 12px; color: white; background: linear-gradient(90deg, #0c4ece, #392ca8); font-size: 13px; }
.ticker strong { text-transform: uppercase; letter-spacing: .08em; }
.live-dot { width: 8px; height: 8px; flex: 0 0 auto; background: #ff667a; border-radius: 50%; box-shadow: 0 0 0 5px rgba(255,102,122,.16); }

.section { padding: 104px 0; }
.section h2 { margin: 0; font-size: clamp(40px, 5.7vw, 74px); line-height: .96; letter-spacing: -.055em; text-transform: uppercase; }
.section-dark { color: white; background: var(--navy); }
.section-light { background: #e9eef6; }
.intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.lead { margin: 0; max-width: 680px; font-size: clamp(20px, 2.25vw, 29px); line-height: 1.45; color: #263a5a; }
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 48px; border-top: 1px solid var(--line); }
.stat-row div { padding: 25px 12px 0 0; }
.stat-row strong { display: block; color: var(--blue); font-size: 40px; line-height: 1; }
.stat-row span { color: var(--muted); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.meta-explainer { padding-top: 38px; background: linear-gradient(180deg, var(--paper), #e9eef6); }
.meta-heading { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: end; margin-bottom: 50px; }
.meta-heading .lead { font-size: clamp(19px, 2vw, 27px); }
.meta-story-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: stretch; gap: 22px; }
.meta-photo { min-height: 620px; position: relative; overflow: hidden; margin: 0; border-radius: 20px 42px 20px 42px; box-shadow: var(--shadow); }
.meta-photo::after { content: ''; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(4,15,36,.78)); }
.meta-photo img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; object-position: 43% center; }
.meta-photo figcaption { position: absolute; z-index: 1; left: 28px; bottom: 25px; color: white; font-size: 12px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.meta-rules-card { padding: 42px; color: white; background: radial-gradient(circle at 100% 0%, rgba(79,216,255,.13), transparent 32%), linear-gradient(145deg, var(--navy), #123b7c); border-radius: 20px 42px 20px 42px; box-shadow: var(--shadow); }
.meta-rules { margin: 0; padding: 0; list-style: none; }
.meta-rules li { display: grid; grid-template-columns: 12px 1fr; gap: 12px; align-items: start; padding: 17px 0; border-top: 1px solid rgba(255,255,255,.14); }
.meta-rules li:last-child { border-bottom: 1px solid rgba(255,255,255,.14); }
.meta-rules li::before { content: ''; width: 6px; height: 6px; margin-top: .55em; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 5px rgba(79,216,255,.12); }
.meta-rules li span { color: rgba(255,255,255,.88); font-size: 15px; line-height: 1.5; }
.section-heading { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 54px; }
.section-heading > p { max-width: 420px; margin: 0; color: var(--muted); }
.section-dark .section-heading > p { color: rgba(255,255,255,.62); }
.timeline { display: grid; }
.timeline-item { display: grid; grid-template-columns: 135px 1fr; gap: 28px; align-items: center; padding: 25px 4px; border-top: 1px solid rgba(255,255,255,.15); }
.timeline-item:last-child { border-bottom: 1px solid rgba(255,255,255,.15); }
.timeline-time { color: var(--cyan); font-size: 25px; font-weight: 900; font-variant-numeric: tabular-nums; }
.timeline-item h3 { margin: 0 0 3px; font-size: 21px; }
.timeline-item p { margin: 0; color: rgba(255,255,255,.56); }

.tournament-section { background-image: radial-gradient(circle at 85% 15%, rgba(20,107,255,.10), transparent 24%); }
.category-switcher { display: inline-flex; gap: 8px; padding: 7px; margin-bottom: 12px; background: #e4eaf3; border-radius: 13px; }
.category-tab { min-width: 145px; padding: 12px 20px; color: var(--muted); background: transparent; border: 0; border-radius: 9px; font-weight: 900; text-transform: uppercase; cursor: pointer; }
.category-tab[aria-selected="true"] { color: white; background: linear-gradient(135deg, var(--blue), var(--violet)); box-shadow: 0 8px 22px rgba(20,107,255,.22); }
.active-category-label { margin: 0 0 28px; color: var(--muted); font-size: 13px; font-weight: 750; }
.subsection-title { display: flex; align-items: center; gap: 14px; margin: 20px 0 22px; }
.subsection-title h3 { margin: 0; font-size: 24px; text-transform: uppercase; }
.groups-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.group-card { overflow: hidden; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 14px 45px rgba(8,27,61,.07); }
.group-card h4 { margin: 0; padding: 20px 22px; color: white; background: linear-gradient(120deg, var(--navy-2), #143f7f); font-size: 17px; text-transform: uppercase; letter-spacing: .05em; }
.team-row { display: grid; grid-template-columns: 1fr; align-items: center; min-height: 52px; padding: 9px 20px; border-top: 1px solid var(--line); }
.team-row strong.placeholder { color: #8d98aa; font-weight: 600; }
.schedule-title { margin-top: 62px; }
.schedule-explainer { margin-bottom: 18px; }
.schedule-explainer p { max-width: 700px; margin: 0; color: var(--muted); }
.group-schedule-wrap { overflow-x: auto; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 14px 45px rgba(8,27,61,.07); }
.group-schedule { width: 100%; min-width: 620px; border-collapse: collapse; table-layout: fixed; }
.group-schedule caption { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.group-schedule th, .group-schedule td { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.group-schedule th:last-child, .group-schedule td:last-child { border-right: 0; }
.group-schedule tbody tr:last-child td, .group-schedule tbody tr:last-child th { border-bottom: 0; }
.group-schedule .category-head { padding: 15px; color: white; background: linear-gradient(120deg, var(--navy-2), #143f7f); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.group-schedule .category-head.suhanc { background: linear-gradient(120deg, #2d247a, #573fb5); }
.group-schedule .time-head { width: 86px; color: var(--muted); background: #eef2f8; }
.group-schedule .field-head { padding: 10px 8px; color: var(--muted); background: #f6f8fb; font-size: 11px; text-transform: uppercase; letter-spacing: .05em; }
.group-schedule tbody th { padding: 16px 10px; color: var(--navy); background: #f6f8fb; font-size: 16px; font-variant-numeric: tabular-nums; }
.schedule-game { min-height: 68px; display: grid; align-content: center; gap: 3px; padding: 10px; }
.schedule-game.empty { color: #a3adbc; text-align: center; }
.schedule-group { width: fit-content; padding: 2px 6px; color: white; background: var(--blue); border-radius: 999px; font-size: 9px; font-weight: 950; text-transform: uppercase; }
.schedule-game.group-b .schedule-group { background: var(--violet); }
.schedule-game.group-c .schedule-group { background: #0a9d79; }
.schedule-teams { display: flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 850; line-height: 1.2; }
.schedule-teams i { color: #9aa5b5; font-size: 10px; font-style: normal; font-weight: 700; }
.schedule-result { width: fit-content; margin-top: 5px; padding: 3px 8px; color: white; background: var(--navy); border-radius: 7px; font-size: 13px; font-weight: 950; font-variant-numeric: tabular-nums; }
.standings-title { margin-top: 62px; }
.qualification-note { max-width: 760px; margin: -8px 0 22px; color: var(--muted); }
.standings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.standings-card { overflow: hidden; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 14px 45px rgba(8,27,61,.06); }
.standings-card h4 { margin: 0; padding: 16px 18px; color: white; background: linear-gradient(120deg, var(--navy-2), #143f7f); text-transform: uppercase; }
.standings-scroll { overflow-x: auto; }
.standings-card table { width: 100%; min-width: 390px; border-collapse: collapse; font-size: 12px; font-variant-numeric: tabular-nums; }
.standings-card th, .standings-card td { padding: 10px 7px; text-align: center; border-bottom: 1px solid var(--line); }
.standings-card th { color: var(--muted); background: #f6f8fb; font-size: 10px; text-transform: uppercase; }
.standings-card th:first-child, .standings-card td:first-child { width: 46%; text-align: left; }
.standings-card td:first-child span { display: inline-block; width: 22px; color: var(--muted); font-weight: 900; }
.standings-card tbody tr:last-child td { border-bottom: 0; }
.standings-card td:last-child strong { color: var(--blue); font-size: 15px; }
.qualifiers-panel { margin-top: 18px; padding: 20px 22px; color: white; background: linear-gradient(125deg, var(--navy), #123b7c); border-radius: 12px 22px 12px 22px; }
.qualifiers-panel > div { display: flex; align-items: center; gap: 22px; }
.qualifiers-panel > div > span { flex: 0 0 auto; color: var(--cyan); font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.qualifiers-panel p { margin: 0; color: rgba(255,255,255,.72); }
.qualifier-list { display: flex; flex-wrap: wrap; gap: 8px; }
.qualifier-list strong { padding: 7px 11px; color: var(--navy); background: white; border-radius: 999px; font-size: 12px; }
.qualifier-list i { margin-right: 5px; color: var(--blue); font-style: normal; }
.bracket-title { margin-top: 62px; }
.matches-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.match-card { padding: 22px; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 14px 45px rgba(8,27,61,.06); }
.match-meta { display: flex; justify-content: space-between; margin-bottom: 18px; color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.match-team { display: grid; grid-template-columns: 1fr auto; gap: 18px; padding: 10px 0; border-top: 1px solid var(--line); font-weight: 800; }
.match-team:last-child { border-bottom: 1px solid var(--line); }
.score { min-width: 28px; text-align: right; font-size: 20px; }
.match-status { display: inline-block; margin-top: 14px; padding: 5px 9px; color: var(--muted); background: #eef2f8; border-radius: 999px; font-size: 10px; font-weight: 900; text-transform: uppercase; }
.podium-section { margin-top: 64px; padding: 38px 34px 0; color: white; background: linear-gradient(145deg, var(--navy), #173d7d); border-radius: 20px 42px 20px 42px; overflow: hidden; }
.podium-section h3 { margin: 0 0 34px; font-size: 34px; text-transform: uppercase; }
.podium { min-height: 250px; display: grid; grid-template-columns: repeat(3, 1fr); align-items: end; gap: 12px; }
.podium-place { display: grid; align-content: start; justify-items: center; gap: 8px; min-height: 150px; padding: 24px 14px; color: var(--navy); background: #d9e2f0; border-radius: 14px 14px 0 0; text-align: center; }
.podium-place span { display: grid; place-items: center; width: 42px; height: 42px; color: white; background: #7c8da6; border-radius: 50%; font-size: 18px; font-weight: 950; }
.podium-place strong { font-size: 17px; }
.podium-place.place-1 { min-height: 220px; background: linear-gradient(180deg, #ffe991, #e9bd3f); }
.podium-place.place-1 span { background: #a87800; }
.podium-place.place-3 { min-height: 125px; background: linear-gradient(180deg, #e0ac87, #b97648); }
.podium-place.place-3 span { background: #7c3f20; }

.stream-section { color: white; background: linear-gradient(135deg, #07152f 20%, #102b5c 65%, #382a8c); position: relative; overflow: hidden; }
.stream-section::after { content: ''; position: absolute; width: 430px; height: 430px; right: -180px; top: -180px; border: 1px solid rgba(79,216,255,.25); border-radius: 50%; box-shadow: 0 0 0 90px rgba(79,216,255,.035), 0 0 0 180px rgba(122,92,255,.035); }
.stream-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: center; }
.stream-grid p:not(.section-kicker) { color: rgba(255,255,255,.65); }
.stream-link { margin-top: 18px; }
.video-frame { aspect-ratio: 16/9; overflow: hidden; background: #030a18; border: 1px solid rgba(255,255,255,.18); border-radius: 14px 28px 14px 28px; box-shadow: 0 35px 90px rgba(0,0,0,.38); }
.video-frame iframe { width: 100%; height: 100%; border: 0; }
.video-placeholder { height: 100%; display: grid; place-content: center; justify-items: center; gap: 10px; text-align: center; background: radial-gradient(circle at center, rgba(20,107,255,.24), transparent 55%), #061127; }
.video-placeholder span:last-child { color: rgba(255,255,255,.45); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.play-icon { display: grid; place-items: center; width: 70px; height: 70px; padding-left: 5px; margin-bottom: 8px; background: var(--blue); border-radius: 50%; box-shadow: 0 0 0 12px rgba(20,107,255,.15); }
.motm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.motm-card, .empty-card { min-height: 350px; overflow: hidden; position: relative; border-radius: var(--radius); background: white; border: 1px solid var(--line); box-shadow: var(--shadow); }
.motm-card img { width: 100%; height: 240px; object-fit: cover; }
.motm-image-placeholder { height: 240px; display: grid; place-items: center; color: white; background: linear-gradient(135deg, var(--blue), var(--violet)); font-size: 64px; }
.motm-body { padding: 22px; }
.motm-body h3, .empty-card h3 { margin: 0; font-size: 23px; }
.motm-body p, .empty-card p { margin: 5px 0 0; color: var(--muted); }
.motm-details { display: grid; gap: 5px; margin-top: 12px; color: var(--muted); font-size: 14px; }
.motm-details span { display: block; }
.motm-details b { color: var(--ink); }
.motm-body a { display: inline-block; margin-top: 15px; color: var(--blue); font-weight: 800; text-decoration: none; }
.empty-card { display: grid; place-content: center; justify-items: center; padding: 35px; color: var(--muted); text-align: center; border-style: dashed; box-shadow: none; }
.empty-card > span { color: var(--blue); font-size: 42px; }
.location-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; align-items: center; }
.location-name { margin: 30px 0 12px; color: var(--muted); font-size: 22px; }
.location-name strong { color: var(--ink); font-size: 32px; }
.map-frame { min-height: 440px; overflow: hidden; background: #dfe6f0; border-radius: var(--radius); box-shadow: var(--shadow); }
.map-frame iframe { width: 100%; height: 440px; border: 0; }
.map-placeholder { min-height: 440px; display: grid; place-content: center; justify-items: center; gap: 8px; text-align: center; background-image: linear-gradient(rgba(255,255,255,.45) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.45) 1px, transparent 1px); background-size: 32px 32px; }
.map-placeholder span { display: grid; place-items: center; width: 68px; height: 68px; color: white; background: var(--blue); border-radius: 50% 50% 50% 8px; transform: rotate(-45deg); font-size: 32px; }
.map-placeholder span::first-letter { transform: rotate(45deg); }
.map-placeholder small { color: var(--muted); }
.info-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 75px; }
.info-list { margin: 0; padding: 0; list-style: none; }
.info-list li { position: relative; padding: 19px 18px 19px 42px; border-top: 1px solid var(--line); }
.info-list li:last-child { border-bottom: 1px solid var(--line); }
.info-list li::before { content: '✓'; position: absolute; left: 10px; color: var(--blue); font-weight: 950; }

.protected-section { padding-top: 20px; }
.protected-card { display: grid; grid-template-columns: auto 1fr 1fr; gap: 34px; align-items: center; padding: 48px; color: white; background: linear-gradient(125deg, #07152f, #123b7c); border-radius: 20px 42px 20px 42px; box-shadow: var(--shadow); }
.protected-card h2 { font-size: clamp(30px, 4vw, 54px); }
.protected-card p { margin-bottom: 0; color: rgba(255,255,255,.62); }
.lock-mark { display: grid; place-items: center; width: 66px; height: 66px; color: var(--cyan); border: 1px solid rgba(79,216,255,.45); border-radius: 50%; box-shadow: inset 0 0 0 8px rgba(79,216,255,.06); }
.password-form label { display: block; margin-bottom: 7px; font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.input-row { display: flex; gap: 8px; }
.input-row input { min-width: 0; width: 100%; padding: 12px 15px; color: white; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.3); border-radius: 8px; outline: none; }
.input-row input:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(79,216,255,.15); }
.form-message { min-height: 22px; margin: 8px 0 0 !important; font-size: 13px; }
.form-message.error { color: #ff9aaa; }
.participant-content { grid-column: 2 / -1; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.16); }
.participant-schedule { display: grid; gap: 8px; margin: 15px 0 30px; }
.participant-schedule-item { display: grid; grid-template-columns: 185px 110px 1fr; gap: 14px; padding: 13px 0; border-top: 1px solid rgba(255,255,255,.15); }
.participant-schedule-item strong { color: var(--cyan); }
.participant-schedule-item span { color: rgba(255,255,255,.65); }
.participant-schedule-item p { margin: 0; color: white; }
.participant-content .info-list li { border-color: rgba(255,255,255,.15); }
.text-button { margin-top: 18px; padding: 0; color: var(--cyan); background: none; border: 0; font-weight: 800; cursor: pointer; }
.sponsors-section { padding-top: 72px; background: white; }
.sponsors-heading { margin-bottom: 38px; }
.sponsors-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px; }
.sponsor-card { min-height: 190px; display: grid; place-items: center; align-content: center; gap: 18px; padding: 28px 22px; color: var(--ink); background: #f7f9fc; border: 1px solid var(--line); border-radius: var(--radius); text-align: center; text-decoration: none; transition: transform .2s, border-color .2s, box-shadow .2s; }
a.sponsor-card:hover, a.sponsor-card:focus-visible { transform: translateY(-3px); border-color: rgba(20,107,255,.35); box-shadow: 0 16px 38px rgba(5,20,48,.1); }
.sponsor-card img { width: 100%; height: 92px; object-fit: contain; }
.sponsor-card strong { font-size: 15px; }
.sponsor-logo-placeholder { display: grid; place-items: center; width: 72px; height: 72px; color: white; background: linear-gradient(135deg, var(--blue), var(--violet)); border-radius: 16px 28px 16px 28px; font-size: 28px; }
.sponsors-empty { grid-column: 1 / -1; margin: 0; padding: 30px; color: var(--muted); background: #f7f9fc; border: 1px dashed var(--line); border-radius: var(--radius); text-align: center; }
.site-footer { padding: 42px 0; color: rgba(255,255,255,.62); background: #030b1c; font-size: 13px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr auto; gap: 30px; align-items: center; }
.footer-grid > div { display: flex; align-items: center; gap: 13px; color: white; }
.footer-logo { width: 62px; height: 58px; object-fit: contain; }
.footer-grid p { margin: 0; }
.footer-grid a { color: var(--cyan); }

@media (max-width: 900px) {
  .menu-button { display: block; }
  .main-nav { position: absolute; top: 74px; left: 0; right: 0; display: none; height: calc(100dvh - 74px); flex-direction: column; align-items: stretch; gap: 0; overflow-y: auto; overscroll-behavior: contain; padding: 20px max(24px, calc((100vw - 760px) / 2)); background: rgba(4,15,36,.985); border-top: 1px solid rgba(255,255,255,.1); box-shadow: 0 24px 50px rgba(0,0,0,.35); }
  .main-nav.open { display: flex; }
  .main-nav a { flex: 0 0 auto; padding: 17px 4px; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 16px; }
  .main-nav .nav-protected { margin-top: 14px; padding: 15px; text-align: center; }
  .intro-grid, .meta-heading, .meta-story-grid, .stream-grid, .location-grid, .info-grid { grid-template-columns: 1fr; gap: 38px; }
  .meta-photo { min-height: 500px; }
  .section-heading { align-items: start; flex-direction: column; }
  .groups-grid { grid-template-columns: 1fr 1fr; }
  .standings-grid { grid-template-columns: 1fr; }
  .motm-grid { grid-template-columns: 1fr 1fr; }
  .protected-card { grid-template-columns: auto 1fr; }
  .password-form { grid-column: 1 / -1; }
  .participant-content { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .shell { width: min(100% - 28px, 1180px); }
  .hero { min-height: auto; padding-top: 74px; }
  .hero-content { padding-top: 50px; padding-bottom: 42px; }
  .hero-logo { width: 105px; max-height: 95px; }
  .hero-overlay { background: linear-gradient(0deg, rgba(4,15,36,.96) 0%, rgba(4,15,36,.65) 65%, rgba(4,15,36,.42)); }
  .hero h1 { font-size: clamp(43px, 14vw, 66px); }
  .hero-actions { width: 100%; }
  .hero-actions .button { flex: 1; padding-inline: 10px; }
  .hero-facts { grid-template-columns: 1fr 1fr; }
  .hero-facts div { padding: 15px 10px; }
  .hero-facts div:nth-child(3) { display: none; }
  .hero-facts div:nth-child(4) { grid-column: 1 / -1; }
  .ticker { align-items: flex-start; flex-wrap: wrap; }
  .ticker span:last-child { flex-basis: 100%; padding-left: 20px; }
  .section { padding: 76px 0; }
  .section h2 { font-size: 43px; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .meta-heading { margin-bottom: 34px; }
  .meta-photo { min-height: 340px; border-radius: 16px 30px 16px 30px; }
  .meta-rules-card { padding: 28px 22px; border-radius: 16px 30px 16px 30px; }
  .meta-rules li { grid-template-columns: 12px 1fr; padding: 14px 0; }
  .timeline-item { grid-template-columns: 76px 1fr; gap: 14px; }
  .timeline-time { font-size: 18px; }
  .groups-grid, .matches-grid, .motm-grid { grid-template-columns: 1fr; }
  .qualifiers-panel > div { align-items: flex-start; flex-direction: column; gap: 10px; }
  .podium-section { padding-inline: 16px; }
  .podium { gap: 6px; }
  .podium-place { padding-inline: 7px; }
  .podium-place strong { font-size: 13px; }
  .group-schedule-wrap { margin-right: -14px; border-radius: 14px 0 0 14px; }
  .category-switcher { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .category-tab { min-width: 0; padding-inline: 10px; }
  .stream-grid { gap: 35px; }
  .map-frame, .map-placeholder { min-height: 330px; }
  .protected-card { grid-template-columns: 1fr; padding: 32px 24px; border-radius: 16px 32px 16px 32px; }
  .lock-mark { width: 52px; height: 52px; }
  .input-row { flex-direction: column; }
  .participant-schedule-item { grid-template-columns: 1fr; gap: 2px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
