:root {
    --ink: #18343a;
    --ink-soft: #476066;
    --green: #234f45;
    --green-2: #3d6f58;
    --sage: #a8b985;
    --orange: #e96720;
    --orange-dark: #c94f12;
    --gold: #f1b941;
    --cream: #fff9e9;
    --paper: #fffdf5;
    --sand: #f2e6c8;
    --line: #d9caa6;
    --danger: #a94438;
    --success: #4f8b55;
    --blue: #47749b;
    --shadow: 0 14px 34px rgba(49, 57, 42, .13), 0 2px 6px rgba(49, 57, 42, .08);
    --shadow-soft: 0 7px 18px rgba(49, 57, 42, .10);
    --radius: 20px;
    --radius-sm: 12px;
    --content: 1460px;
}

* { box-sizing: border-box; }
html { color-scheme: light; scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: #f7eed8; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.5; }
button, input, textarea, select { font: inherit; color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { border: 0; background: none; cursor: pointer; }
[hidden] { display: none !important; }

.paper-noise { position: fixed; inset: 0; pointer-events: none; z-index: -1; opacity: .5; background-image: radial-gradient(rgba(35,79,69,.08) .7px, transparent .7px), radial-gradient(rgba(233,103,32,.055) .6px, transparent .6px); background-position: 0 0, 9px 9px; background-size: 18px 18px; }
.app-shell::before { content: ""; position: fixed; inset: 0; z-index: -2; background: radial-gradient(circle at 10% 0%, rgba(255,255,255,.92), transparent 33%), radial-gradient(circle at 90% 20%, rgba(241,185,65,.12), transparent 30%), linear-gradient(180deg, #fff9e9, #f5ead0); }

.topbar { position: sticky; top: 0; z-index: 80; background: rgba(255, 250, 235, .94); border-bottom: 1px solid rgba(130, 105, 65, .22); backdrop-filter: blur(18px); box-shadow: 0 4px 16px rgba(47,54,40,.07); }
.topbar__inner { max-width: var(--content); min-height: 78px; margin: 0 auto; padding: 0 22px; display: grid; grid-template-columns: 130px 1fr auto; align-items: center; gap: 26px; }
.brand img { width: 102px; height: 64px; object-fit: contain; }
.main-nav { display: flex; align-items: stretch; height: 78px; gap: 2px; }
.main-nav a { position: relative; display: flex; align-items: center; justify-content: center; gap: 7px; padding: 0 15px; font-size: 14px; font-weight: 800; color: var(--ink-soft); }
.main-nav a span { color: var(--orange); font-size: 17px; }
.main-nav a::after { content: ""; position: absolute; left: 13px; right: 13px; bottom: 0; height: 4px; border-radius: 5px 5px 0 0; transform: scaleX(0); background: var(--orange); transition: .2s ease; }
.main-nav a:hover, .main-nav a.active { color: var(--ink); }
.main-nav a.active::after { transform: scaleX(1); }
.topbar__actions { display: flex; align-items: center; gap: 12px; }
.dropdown { position: relative; }
.dropdown > button { display: flex; align-items: center; gap: 9px; min-height: 44px; padding: 7px 11px; border: 1px solid transparent; border-radius: 12px; font-weight: 800; }
.dropdown > button:hover, .dropdown.open > button { background: white; border-color: var(--line); }
.user-switcher > button > img { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--orange); background: var(--sand); }
.user-switcher > button > span { display: grid; text-align: left; line-height: 1.15; }
.user-switcher small { color: var(--green-2); font-size: 11px; margin-top: 3px; }
.dropdown__menu { position: absolute; top: calc(100% + 9px); min-width: 210px; padding: 8px; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-5px); transition: .18s ease; }
.dropdown.open .dropdown__menu { opacity: 1; visibility: visible; transform: none; }
.dropdown__menu--right { right: 0; }
.dropdown__menu a, .dropdown__menu button { display: flex; width: 100%; align-items: center; justify-content: space-between; padding: 10px 11px; border-radius: 9px; text-align: left; font-weight: 700; font-size: 13px; }
.dropdown__menu a:hover, .dropdown__menu button:hover, .dropdown__menu a.active { background: #f4ead2; }
.dropdown__menu a small { color: var(--ink-soft); font-weight: 500; }
.dropdown__menu .danger { color: var(--danger); }
.mobile-menu-button { display: none; font-size: 24px; }
.year-switcher--mobile { display: none; }

.page-shell { width: min(var(--content), calc(100% - 38px)); margin: 0 auto; padding: 28px 0 90px; }
.eyebrow { display: block; color: var(--orange-dark); font-size: 12px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; line-height: 1.06; }
h1, .sport-title { font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-weight: 500; letter-spacing: .025em; text-transform: uppercase; transform: skew(-2deg); }
h1 { font-size: clamp(38px, 5vw, 68px); }
h2 { font-size: 22px; }
p { margin: 0; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 42px; padding: 9px 16px; border: 1px solid transparent; border-radius: 10px; font-weight: 900; font-size: 13px; transition: .18s ease; }
.button:hover { transform: translateY(-1px); box-shadow: var(--shadow-soft); }
.button--primary { color: #fff; background: var(--orange); border-color: var(--orange-dark); }
.button--primary:hover { background: var(--orange-dark); }
.button--outline { background: var(--paper); border-color: var(--green); color: var(--green); }
.button--soft { background: #e8efd9; color: var(--green); border-color: #bdcba6; }
.button--wide { width: 100%; }
.text-link { color: var(--green); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .04em; }

.hero-card { position: relative; min-height: 390px; display: grid; grid-template-columns: 1.05fr 1.15fr .85fr; align-items: center; overflow: hidden; padding: 32px 34px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(135deg, rgba(255,253,245,.98), rgba(249,238,206,.96)); box-shadow: var(--shadow); }
.hero-card::before, .hero-card::after { content: ""; position: absolute; border: 3px solid var(--sage); border-radius: 50%; opacity: .45; }
.hero-card::before { width: 150px; height: 75px; left: 36%; top: 42px; border-left-color: transparent; border-bottom-color: transparent; transform: rotate(-13deg); }
.hero-card::after { width: 100px; height: 100px; right: -48px; bottom: -50px; }
.hero-card__copy { z-index: 2; align-self: start; padding-top: 28px; }
.hero-card__copy h1 { max-width: 500px; margin: 8px 0 14px; color: var(--green); }
.hero-card__copy p { max-width: 430px; color: var(--ink-soft); font-size: 16px; }
.hero-card__actions { display: flex; gap: 10px; margin-top: 24px; }
.hero-card__team { align-self: end; width: 100%; max-height: 320px; object-fit: contain; object-position: bottom center; z-index: 1; }
.hero-card__today { z-index: 2; padding: 18px; border: 1px solid #e4d5b2; border-radius: 16px; background: rgba(255,253,245,.92); box-shadow: var(--shadow-soft); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 18px; }
.section-heading span { color: var(--orange); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.section-heading strong { font-size: 18px; }
.schedule-mini { display: grid; gap: 4px; margin: 14px 0; }
.schedule-mini a { display: grid; grid-template-columns: 48px minmax(0, 1fr) auto; align-items: center; gap: 8px; padding: 9px 4px; border-bottom: 1px dashed var(--line); font-size: 12px; }
.schedule-mini time { color: var(--green); font-weight: 900; }
.schedule-mini__name { min-width: 0; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; font-weight: 800; }
.schedule-mini__meta { display: grid; justify-items: end; gap: 2px; min-width: 0; }
.schedule-mini .status { justify-self: end; }
.schedule-mini__weather { display: inline-flex; align-items: center; gap: 4px; justify-self: end; color: var(--green); font-weight: 900; white-space: nowrap; }
.schedule-mini__weather span:last-child { font-variant-numeric: tabular-nums; }

.stat-strip { position: relative; z-index: 3; width: calc(100% - 80px); margin: -20px auto 22px; display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); box-shadow: var(--shadow-soft); }
.stat-strip > div { display: grid; grid-template-columns: 32px auto 1fr; align-items: center; gap: 8px; padding: 15px 20px; border-right: 1px solid var(--line); }
.stat-strip > div:last-child { border: 0; }
.stat-strip__icon { font-size: 23px; color: var(--orange); }
.stat-strip strong { font-size: 25px; }
.stat-strip small { font-weight: 800; color: var(--ink-soft); text-transform: uppercase; }

.dashboard-grid { display: grid; grid-template-columns: 1.12fr .9fr .88fr; gap: 18px; }
.panel { min-width: 0; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,253,245,.93); box-shadow: var(--shadow-soft); }
.panel__header { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.panel__header a, .panel__header button, .panel__header > span { color: var(--green); font-size: 12px; font-weight: 900; }
.panel__header h2 { margin-top: 4px; }
.report-list { display: grid; gap: 8px; }
.report-row { display: flex; width: 100%; align-items: center; gap: 10px; padding: 9px; border-radius: 11px; text-align: left; transition: .18s; }
.report-row:hover { background: #f5ecd8; transform: translateX(2px); }
.report-row__thumb { flex: 0 0 56px; height: 44px; display: grid; place-items: center; overflow: hidden; border-radius: 9px; background: #e9d9b5; }
.report-row__thumb img { width: 100%; height: 100%; object-fit: cover; }
.report-row__body { min-width: 0; display: grid; flex: 1; }
.report-row__body strong { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; font-size: 13px; }
.report-row__body small { color: var(--ink-soft); font-size: 11px; }
.comment-count { color: var(--green); font-size: 11px; font-weight: 900; }
.leaderboard-mini { list-style: none; padding: 0; margin: 0; display: grid; }
.leaderboard-mini li { display: grid; grid-template-columns: 24px 34px 1fr auto; align-items: center; gap: 8px; padding: 9px 3px; border-bottom: 1px dashed var(--line); font-size: 13px; }
.leaderboard-mini > li > img { width: 30px; height: 30px; border-radius: 50%; background: var(--sand); }
.leaderboard-mini .rank { color: var(--orange); font-weight: 900; }
.leaderboard-mini li > span:last-child { font-weight: 900; }
.personal-stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.personal-stat-grid > div { min-height: 100px; display: grid; grid-template-columns: 38px 1fr; align-items: center; padding: 13px; border: 1px solid #e3d6b8; border-radius: 13px; background: #faf2df; }
.personal-stat-grid span { grid-row: span 2; font-size: 28px; }
.personal-stat-grid strong { font-size: 24px; }
.personal-stat-grid small { color: var(--ink-soft); font-weight: 700; }
.motto-banner { margin-top: 20px; display: flex; align-items: center; justify-content: center; gap: 18px; padding: 14px 20px; border-radius: 13px; color: #fff9df; background: var(--green); box-shadow: var(--shadow-soft); font-family: Impact, sans-serif; letter-spacing: .25em; text-transform: uppercase; font-weight: 200; }
.motto-banner span { font-size: 24px; }

.page-heading { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 145px; margin-bottom: 22px; padding: 24px 28px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,253,245,.9); box-shadow: var(--shadow-soft); overflow: hidden; }
.page-heading > div { z-index: 2; }
.page-heading h1 { color: var(--green); margin: 5px 0 8px; }
.page-heading p { color: var(--ink-soft); max-width: 720px; }
.illustrated-heading > img { position: absolute; right: 140px; bottom: -25px; width: 170px; max-height: 150px; opacity: .95; }
.illustrated-heading > .button { z-index: 2; }

.filter-bar { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; padding: 10px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,253,245,.88); }
.segmented { display: flex; flex-wrap: wrap; gap: 5px; }
.segmented a, .segmented button { min-height: 36px; padding: 8px 13px; border: 1px solid #c9ba98; border-radius: 8px; color: var(--green); background: var(--paper); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.segmented a.active, .segmented button.active { color: white; border-color: var(--orange); background: var(--orange); }
.search-box { flex: 1; display: flex; align-items: center; gap: 7px; min-width: 190px; margin-left: auto; padding: 0 12px; border: 1px solid #d6c7a5; border-radius: 10px; background: white; }
.search-box input { width: 100%; min-height: 38px; border: 0; outline: 0; background: transparent; }
.filter-drawer { display: none; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; padding: 12px 16px; border: 1px dashed var(--line); border-radius: 12px; background: #f8efdc; font-size: 12px; }
.filter-drawer.open { display: flex; }
.filter-drawer span { font-weight: 900; }
.filter-drawer a { padding: 5px 9px; border-radius: 8px; font-weight: 700; }
.filter-drawer a.active, .filter-drawer a:hover { background: var(--green); color: white; }

.discipline-table { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow-soft); }
.discipline-table__head, .discipline-row { display: grid; grid-template-columns: minmax(220px, 1.7fr) minmax(100px, .8fr) 90px minmax(155px, 1fr) 110px 80px 20px; gap: 12px; align-items: center; }
.discipline-table__head { padding: 12px 18px; color: var(--ink-soft); background: #f3e8ce; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.discipline-row { min-height: 68px; padding: 9px 18px; border-top: 1px solid #eadfc6; font-size: 13px; transition: .16s; }
.discipline-row:hover { background: #fff8e5; padding-left: 22px; }
.discipline-row > span { min-width: 0; }
.discipline-row small { display: block; color: var(--ink-soft); }
.discipline-name { display: flex; align-items: center; gap: 11px; }
.discipline-name img { width: 44px; height: 44px; object-fit: contain; }
.status { display: inline-flex; align-items: center; justify-content: center; padding: 4px 8px; border-radius: 99px; font-style: normal; font-size: 9px; font-weight: 900; text-transform: uppercase; white-space: nowrap; }
.status--planned { background: #f5e6b8; color: #806120; }
.status--in_progress { background: #dcebcf; color: #38633d; }
.status--completed { background: #dbe8f2; color: #365f7c; }
.status--closed { background: #e1e1dd; color: #5b5c55; }
.status--cancelled { background: #f2d5cf; color: #8a3c32; }

.breadcrumbs { display: flex; gap: 8px; margin-bottom: 12px; color: var(--ink-soft); font-size: 12px; font-weight: 700; }
.discipline-hero { display: grid; grid-template-columns: 100px 1fr minmax(480px, auto); align-items: center; gap: 22px; margin-bottom: 18px; padding: 22px 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow-soft); }
.discipline-hero > img { width: 90px; height: 90px; object-fit: contain; }
.discipline-hero h1 { margin: 4px 0; color: var(--green); font-size: clamp(36px, 5vw, 56px); }
.discipline-hero p { color: var(--ink-soft); }
.discipline-meta { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.discipline-meta > div { display: grid; grid-template-columns: 30px 1fr; padding: 11px; border: 1px solid #e4d7b9; border-radius: 11px; background: #faf1dd; }
.discipline-meta span { grid-row: span 2; font-size: 21px; color: var(--orange); }
.discipline-meta small { font-size: 9px; text-transform: uppercase; font-weight: 900; color: var(--ink-soft); }
.discipline-meta strong { font-size: 11px; }
.discipline-detail-grid { display: grid; grid-template-columns: repeat(11, minmax(0, 1fr)); gap: 16px; grid-auto-flow: row; }
.discipline-detail-grid__full { grid-column: 1 / -1; }
.rules-card { grid-column: span 3; }
.participants-card { grid-column: span 3; }
.matches-card { grid-column: span 6; }
.results-card { grid-column: span 5; }
.stats-card { grid-column: span 4; }
.reports-card { grid-column: span 3; }
.discipline-history-card{ grid-column: span 3; }
.tiebreak-card { grid-column: span 3; border-color: #e8a35e; background: #fff5df; }
.rich-text { color: var(--ink-soft); font-size: 13px; }
.info-chip { margin-top: 15px; padding: 10px; border-radius: 9px; background: #f6e5bd; color: #7c5b1c; font-size: 11px; font-weight: 800; }
.participants-table { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow-soft); }
.participants-table__head, .participants-table__row { display: grid; grid-template-columns: 40px minmax(0, 1fr); align-items: center; gap: 10px; min-width: 0; min-height: 56px; padding: 8px 16px; }
.participants-table__head { min-height: 40px; background: #f1e5ca; color: var(--ink-soft); font-size: 9px; font-weight: 900; text-transform: uppercase; }
.participants-table__row { border-top: 1px solid #eadfc6; font-size: 12px; }
.participants-table__row:hover { background: #fff7e3; }
.participants-table .player-cell { min-width: 0; }
.avatar-list { display: flex; flex-wrap: wrap; gap: 8px; }
.avatar-list span { display: flex; align-items: center; gap: 7px; padding: 5px 9px 5px 5px; border: 1px solid #e1d2af; border-radius: 99px; background: #fbf2de; font-size: 11px; font-weight: 800; }
.avatar-list > span > img { width: 28px; height: 28px; border-radius: 50%; }
.team-list { display: grid; gap: 8px; }
.team-list div { display: grid; padding: 9px; border-radius: 9px; background: #f7edd6; }
.team-list span { color: var(--ink-soft); font-size: 11px; }
.match-list { display: grid; gap: 7px; }
.match-row { display: grid; grid-template-columns: 80px 1fr; gap: 2px 10px; padding: 9px 11px; border: 1px solid #e7dcc2; border-radius: 9px; }
.match-row small { grid-row: span 2; color: var(--orange-dark); font-weight: 900; }
.match-row__main { min-width: 0; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.match-row__main > strong { min-width: 0; flex: 1; display: flex; justify-content: space-between; gap: 8px; font-size: 12px; }
.match-row__main > .panel-actions { flex: 0 0 auto; flex-wrap: nowrap; }
.match-row__participant { min-width: 0; padding: 3px 6px; border-radius: 7px; }
.match-row__participant.is-winner { color: #fff; background: var(--green); box-shadow: 0 2px 7px rgba(38,79,57,.22); }
.match-row__participant em { color: #dff7cb; font-style: normal; font-weight: 1000; }
.match-row strong b { color: var(--green); }
.match-row p { color: var(--ink-soft); font-size: 10px; }
.results-list { list-style: none; margin: 0; padding: 0; display: grid; }
.results-list li { display: grid; grid-template-columns: 30px minmax(0,1fr) minmax(90px,auto) 54px auto; align-items: center; gap: 8px; padding: 9px 4px; border-bottom: 1px dashed var(--line); font-size: 12px; }
.results-list li > span { color: var(--orange); font-weight: 900; }
.results-list li small { color: var(--ink-soft); }
.results-list li b { text-align: right; }
.discipline-shootouts { display: contents; }
.stamp { transform: rotate(-4deg); padding: 4px 8px; border: 2px solid var(--green); color: var(--green) !important; font-family: Impact, sans-serif; letter-spacing: .08em; }
.stat-definition-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.stat-definition-grid > div { display: grid; grid-template-columns: 30px 1fr; padding: 10px; border-radius: 10px; background: #f8edd6; }
.stat-definition-grid span { grid-row: span 3; font-size: 22px; }
.stat-definition-grid strong, .stat-definition-grid b { font-size: 11px; }
.stat-definition-grid small { color: var(--ink-soft); font-size: 9px; }

.day-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 15px; }
.day-card { position: relative; min-height: 300px; display: flex; flex-direction: column; padding: 22px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow-soft); transition: .2s; }
.day-card:hover { transform: translateY(-5px) rotate(-.4deg); box-shadow: var(--shadow); }
.day-card.current { border-color: var(--orange); background: linear-gradient(160deg, #fffdf5, #f9e7c0); }
.day-card__number { position: absolute; right: -4px; top: -18px; color: rgba(233,103,32,.12); font-family: Impact, sans-serif; font-size: 126px; line-height: 1; }
.day-card small { color: var(--orange); font-weight: 900; }
.day-card h2 { margin: 9px 0; font-family: Impact, sans-serif; font-size: 31px; text-transform: uppercase; color: var(--green); }
.day-card p { color: var(--ink-soft); font-size: 13px; }
.day-card dl { margin: auto 0 0; display: flex; gap: 20px; }
.day-card dl div { display: grid; }
.day-card dt { color: var(--ink-soft); font-size: 10px; text-transform: uppercase; }
.day-card dd { margin: 0; font-size: 23px; font-weight: 900; }
.day-card__arrow { align-self: end; font-size: 25px; color: var(--orange); }
.two-column-layout { display: grid; grid-template-columns: 1.5fr .8fr; gap: 18px; }
.timeline { position: relative; display: grid; }
.timeline::before { content: ""; position: absolute; left: 54px; top: 10px; bottom: 10px; width: 2px; background: #ddcfac; }
.timeline a { position: relative; display: grid; grid-template-columns: 44px 44px 1fr auto; align-items: center; gap: 12px; padding: 10px 3px; }
.timeline time { font-weight: 900; }
.timeline img { z-index: 1; width: 40px; height: 40px; padding: 4px; border-radius: 50%; background: var(--paper); object-fit: contain; }
.timeline div { display: grid; }
.timeline small { color: var(--ink-soft); }
.section-block { margin-top: 25px; }
.section-block > .section-heading { margin-bottom: 12px; }

.ranking-progress {
    margin-bottom: 18px;
    margin-top: 18px;
}

.ranking-progress__header {
    align-items: flex-start;
}

.ranking-progress__header p {
    max-width: 760px;
    color: var(--ink-soft);
    font-size: 13px;
    margin-top: 4px;
}

.ranking-progress__meta {
    display: grid;
    justify-items: end;
    min-width: 72px;
    color: var(--green);
}

.ranking-progress__meta strong {
    font-size: 28px;
    line-height: 1;
}

.ranking-progress__meta span {
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.ranking-progress__toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.ranking-progress__modes,
.ranking-progress__scopes,
.ranking-progress__filters {
    flex-wrap: wrap;
}

.ranking-progress__playback {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.ranking-progress__playback-controls {
    flex-wrap: nowrap;
}

.ranking-progress__slider {
    flex: 1;
    display: grid;
    gap: 6px;
    min-width: 220px;
}

.ranking-progress__slider span {
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.ranking-progress__slider input {
    width: 100%;
}

.ranking-progress__selection {
    padding: 12px 13px;
    border: 1px dashed #d9caa6;
    border-radius: 14px;
    background: #faf2df;
}

.ranking-progress__selection summary {
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.ranking-progress__player-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 8px;
    margin-top: 10px;
    max-height: 240px;
    overflow: auto;
}

.ranking-progress__player {
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    align-items: center;
    gap: 8px;
    min-width: 0;
    padding: 9px 10px;
    border: 1px solid #e3d6b8;
    border-radius: 12px;
    background: rgba(255, 253, 245, .9);
    cursor: pointer;
}

.ranking-progress__player input {
    margin: 0;
}

.ranking-progress__player-rank {
    color: var(--orange-dark);
    font-size: 11px;
    font-weight: 900;
}

.ranking-progress__player .avatar-component {
    --avatar-size: 30px;
    --badge-size: 10px;
    margin: 0;
}

.ranking-progress__player strong,
.ranking-progress__player small {
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ranking-progress__player strong {
    font-size: 12px;
}

.ranking-progress__player small {
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 800;
}

.ranking-progress__chart {
    width: 100%;
    min-height: 420px;
}

.day-expectation {
    margin-bottom: 18px;
}

.day-expectation__header {
    align-items: flex-start;
}

.day-expectation__header p {
    max-width: 720px;
    color: var(--ink-soft);
    font-size: 13px;
    margin-top: 4px;
}

.day-expectation__meta {
    display: grid;
    justify-items: end;
    min-width: 72px;
    color: var(--green);
}

.day-expectation__meta strong {
    font-size: 28px;
    line-height: 1;
}

.day-expectation__meta span {
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

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

.day-expectation__card,
.day-expectation__table-card {
    grid-column: 1 / -1;
    padding: 16px;
    border: 1px solid #e3d6b8;
    border-radius: 18px;
    background: #fbf6ea;
}

.day-expectation__card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.day-expectation__card-head h3 {
    font-size: 18px;
}

.day-expectation__card-head p {
    margin-top: 4px;
    color: var(--ink-soft);
    font-size: 13px;
}

.day-expectation__badge {
    flex: 0 0 auto;
    padding: 5px 9px;
    border-radius: 99px;
    background: #e8efd9;
    color: var(--green);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.day-expectation__chart {
    width: 100%;
    min-height: 340px;
}

.day-expectation__fallback {
    margin-top: 12px;
}

.day-expectation__table-scroll {
    overflow-x: auto;
}

.day-expectation__table {
    width: 100%;
    border-collapse: collapse;
}

.day-expectation__table thead {
    background: #f1e5ca;
}

.day-expectation__table th,
.day-expectation__table td {
    padding: 10px 11px;
    border-bottom: 1px solid #eadfc6;
    text-align: left;
    white-space: nowrap;
    font-size: 12px;
}

.day-expectation__table th {
    color: var(--ink-soft);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.day-expectation__table td:last-child,
.day-expectation__table th:last-child {
    text-align: right;
}

.day-expectation__table--wide {
    min-width: 760px;
}

.day-expectation__summary-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.day-expectation__summary-card {
    display: grid;
    gap: 5px;
    padding: 14px 15px;
    border: 1px solid #e3d6b8;
    border-radius: 14px;
    background: #fffdf6;
}

.day-expectation__summary-card span {
    color: var(--orange-dark);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.day-expectation__summary-card strong {
    font-size: 17px;
    color: var(--green);
}

.day-expectation__summary-card small {
    color: var(--ink-soft);
    font-size: 12px;
    font-weight: 800;
}

.discipline-prediction {
    margin-bottom: 18px;
}

.discipline-prediction__header {
    align-items: flex-start;
}

.discipline-prediction__header p {
    max-width: 760px;
    color: var(--ink-soft);
    font-size: 13px;
    margin-top: 4px;
}

.discipline-prediction__meta {
    display: grid;
    justify-items: end;
    min-width: 72px;
    color: var(--green);
}

.discipline-prediction__meta strong {
    font-size: 28px;
    line-height: 1;
}

.discipline-prediction__meta span {
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.discipline-prediction__toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.discipline-prediction__filters {
    flex-wrap: wrap;
}

.discipline-prediction__meta-inline {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.discipline-prediction__meta-inline strong {
    color: var(--green);
    font-size: 16px;
    font-weight: 900;
}

.discipline-prediction__selection {
    padding: 12px 13px;
    border: 1px dashed #d9caa6;
    border-radius: 14px;
    background: #faf2df;
}

.discipline-prediction__selection summary {
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.discipline-prediction__player-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 8px;
    margin-top: 10px;
    max-height: 240px;
    overflow: auto;
}

.discipline-prediction__player {
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    align-items: center;
    gap: 8px;
    min-width: 0;
    padding: 9px 10px;
    border: 1px solid #e3d6b8;
    border-radius: 12px;
    background: rgba(255, 253, 245, .9);
    cursor: pointer;
}

.discipline-prediction__player input {
    margin: 0;
}

.discipline-prediction__player-rank {
    color: var(--orange-dark);
    font-size: 11px;
    font-weight: 900;
}

.discipline-prediction__player .avatar-component {
    --avatar-size: 30px;
    --badge-size: 10px;
    margin: 0;
}

.discipline-prediction__player strong,
.discipline-prediction__player small {
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.discipline-prediction__player strong {
    font-size: 12px;
}

.discipline-prediction__player small {
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 800;
}

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

.discipline-prediction__card,
.discipline-prediction__table-card {
    grid-column: 1 / -1;
    padding: 16px;
    border: 1px solid #e3d6b8;
    border-radius: 18px;
    background: #fbf6ea;
}

.discipline-prediction__card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.discipline-prediction__card-head h3 {
    font-size: 18px;
}

.discipline-prediction__card-head p {
    margin-top: 4px;
    color: var(--ink-soft);
    font-size: 13px;
}

.discipline-prediction__badge {
    flex: 0 0 auto;
    padding: 5px 9px;
    border-radius: 99px;
    background: #e8efd9;
    color: var(--green);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.discipline-prediction__chart {
    width: 100%;
    min-height: 320px;
}

.discipline-prediction__table-scroll {
    overflow-x: auto;
}

.discipline-prediction__table {
    width: 100%;
    min-width: 1080px;
    border-collapse: collapse;
}

.discipline-prediction__table thead {
    background: #f1e5ca;
}

.discipline-prediction__table th,
.discipline-prediction__table td {
    padding: 10px 11px;
    border-bottom: 1px solid #eadfc6;
    text-align: left;
    white-space: nowrap;
    font-size: 12px;
    vertical-align: middle;
}

.discipline-prediction__table th {
    color: var(--ink-soft);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.discipline-prediction__table td:last-child,
.discipline-prediction__table th:last-child {
    text-align: right;
}

.discipline-prediction__player-cell {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 8px;
}

.discipline-prediction__player-cell .avatar-component {
    --avatar-size: 28px;
    --badge-size: 10px;
    margin: 0;
}

.discipline-prediction__player-cell strong {
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.team-discipline-prediction {
    margin-bottom: 18px;
}

.team-discipline-prediction__header {
    align-items: flex-start;
}

.team-discipline-prediction__header p {
    max-width: 780px;
    color: var(--ink-soft);
    font-size: 13px;
    margin-top: 4px;
}

.team-discipline-prediction__meta {
    display: grid;
    justify-items: end;
    min-width: 104px;
    color: var(--green);
}

.team-discipline-prediction__meta strong {
    font-size: 28px;
    line-height: 1;
}

.team-discipline-prediction__meta span,
.team-discipline-prediction__meta small {
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.team-discipline-prediction__toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.team-discipline-prediction__meta-inline {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.team-discipline-prediction__meta-inline strong {
    color: var(--green);
    font-size: 16px;
    font-weight: 900;
}

.team-discipline-prediction__player-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 8px;
    margin-bottom: 14px;
    max-height: 280px;
    overflow: auto;
}

.team-discipline-prediction__player {
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-width: 0;
    padding: 9px 10px;
    border: 1px solid #e3d6b8;
    border-radius: 12px;
    background: rgba(255, 253, 245, .92);
    text-align: left;
    cursor: pointer;
    transition: .18s ease;
}

.team-discipline-prediction__player:hover,
.team-discipline-prediction__player.is-active {
    border-color: var(--orange);
    background: #fff6e4;
    box-shadow: 0 0 0 1px rgba(233, 103, 32, .18);
}

.team-discipline-prediction__player-rank {
    color: var(--orange-dark);
    font-size: 11px;
    font-weight: 900;
}

.team-discipline-prediction__player .avatar-component {
    --avatar-size: 30px;
    --badge-size: 10px;
    margin: 0;
}

.team-discipline-prediction__player-copy {
    min-width: 0;
    display: grid;
}

.team-discipline-prediction__player-copy strong,
.team-discipline-prediction__player-copy small {
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.team-discipline-prediction__player-copy strong {
    font-size: 12px;
}

.team-discipline-prediction__player-copy small {
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 800;
}

.team-discipline-prediction__charts {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 14px;
}

.team-discipline-prediction__card,
.team-discipline-prediction__plan-card,
.team-discipline-prediction__table-card {
    padding: 16px;
    border: 1px solid #e3d6b8;
    border-radius: 18px;
    background: #fbf6ea;
    min-width: 0;
}

.team-discipline-prediction__card--wide {
    grid-column: 1 / -1;
}

.team-discipline-prediction__card:not(.team-discipline-prediction__card--wide) {
    grid-column: span 6;
}

.team-discipline-prediction__card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.team-discipline-prediction__card-head h3 {
    font-size: 18px;
}

.team-discipline-prediction__card-head p {
    margin-top: 4px;
    color: var(--ink-soft);
    font-size: 13px;
}

.team-discipline-prediction__badge {
    flex: 0 0 auto;
    padding: 5px 9px;
    border-radius: 99px;
    background: #e8efd9;
    color: var(--green);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.team-discipline-prediction__chart {
    width: 100%;
    min-height: 320px;
}

.team-discipline-prediction__plan-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 14px;
}

.team-discipline-prediction__plan-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 12px;
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.team-discipline-prediction__plan-summary strong {
    color: var(--green);
    font-size: 16px;
    font-weight: 900;
}

.team-discipline-prediction__plan-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.team-discipline-prediction__plan-list li {
    display: grid;
    gap: 2px;
    padding: 9px 10px;
    border: 1px solid #e7dcc2;
    border-radius: 11px;
    background: rgba(255, 255, 255, .52);
}

.team-discipline-prediction__plan-list strong {
    font-size: 12px;
}

.team-discipline-prediction__plan-list small {
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 800;
}

.team-discipline-prediction__table-card {
    margin-top: 14px;
}

.team-discipline-prediction__table-scroll {
    overflow-x: auto;
}

.team-discipline-prediction__table {
    width: 100%;
    min-width: 1180px;
    border-collapse: collapse;
}

.team-discipline-prediction__table thead {
    background: #f1e5ca;
}

.team-discipline-prediction__table th,
.team-discipline-prediction__table td {
    padding: 10px 11px;
    border-bottom: 1px solid #eadfc6;
    text-align: left;
    white-space: nowrap;
    font-size: 12px;
    vertical-align: middle;
}

.team-discipline-prediction__table th {
    color: var(--ink-soft);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.team-discipline-prediction__table td:last-child,
.team-discipline-prediction__table th:last-child {
    white-space: normal;
    text-align: left;
    min-width: 280px;
}

.team-discipline-prediction__table tbody tr.is-fixed td {
    background: rgba(61, 111, 88, .05);
}

.team-discipline-prediction__pair-cell {
    display: grid;
    gap: 2px;
}

.team-discipline-prediction__pair-cell strong {
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.team-discipline-prediction__pair-cell small {
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 800;
}

.ranking-progress__tooltip strong {
    display: block;
    margin-bottom: 4px;
    color: var(--green);
    font-size: 13px;
}

.ranking-progress__tooltip-day,
.ranking-progress__tooltip-small {
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 3px;
}

.ranking-progress__tooltip table {
    width: 100%;
    margin-top: 8px;
    border-collapse: collapse;
}

.ranking-progress__tooltip th,
.ranking-progress__tooltip td {
    padding: 3px 0;
    font-size: 11px;
    text-align: left;
}

.ranking-progress__tooltip th {
    padding-right: 12px;
    color: var(--green);
}

.ranking-progress__tooltip td {
    white-space: nowrap;
    text-align: right;
    font-weight: 900;
}

.report-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.report-card { height: 100%; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow-soft); cursor: pointer; transition: .2s; }
.report-card:hover { transform: translateY(-4px) rotate(-.2deg); box-shadow: var(--shadow); }
.report-card__media { position: relative; height: 180px; overflow: hidden; background: #e8d7b1; }
.report-card__media img { width: 100%; height: 100%; object-fit: cover; transition: .3s; }
.report-card:hover .report-card__media img { transform: scale(1.035); }
.report-card__media > span { position: absolute; left: 12px; bottom: 10px; padding: 4px 8px; border-radius: 99px; background: rgba(35,79,69,.9); color: white; font-size: 10px; font-weight: 900; }
.report-placeholder { height: 100%; display: grid; place-items: center; color: var(--green); font-size: 54px; }
.report-placeholder--media { gap: 8px; padding: 12px; }
.report-placeholder--media small { max-width: 18ch; color: var(--ink-soft); font-size: 11px; font-weight: 800; line-height: 1.25; text-align: center; overflow-wrap: anywhere; }
.report-placeholder--failed { color: #8d3f33; background: linear-gradient(160deg, #f6d7cd, #e8b9aa); }
.report-card__body { padding: 16px; }
.report-card__body > small { color: var(--orange-dark); font-weight: 800; }
.report-card__body h3 { margin: 7px 0; font-size: 18px; }
.report-card__body p { min-height: 60px; color: var(--ink-soft); font-size: 12px; }
.report-card__body > div { display: flex; gap: 15px; margin-top: 12px; color: var(--green); font-size: 11px; font-weight: 900; }
.standalone-report { max-width: 900px; margin: auto; padding: 40px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.standalone-report h1 { margin: 20px 0; color: var(--green); }

.leaderboard-tabs > .segmented { margin-bottom: 15px; }
.leaderboard-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 18px; align-items: start; }
.podium {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: end;
    gap: 10px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow-soft);
}
.podium__item {
    position: relative;
    display: grid;
    grid-template-rows: auto auto auto auto auto;
    justify-items: center;
    align-content: start;
    gap: 8px;
    min-width: 0;
    padding: 18px 12px 14px;
    border-radius: 14px 14px 8px 8px;
    background: #f7edd7;
    text-align: center;
    overflow: hidden;
}
.podium__item--1 { order: 2; min-height: 286px; background: #f8e4a6; }
.podium__item--2 { order: 1; min-height: 242px; background: #f3e8cf; }
.podium__item--3 { order: 3; min-height: 204px; background: #efd5bf; }
.podium__item > span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--orange);
    color: white;
    font-weight: 900;
    line-height: 1;
}
.podium__avatar {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 98px;
}
.podium__item .avatar-component {
    --avatar-size: 76px;
    --badge-size: 16px;
    margin: 0;
}
.podium__item strong {
    width: 100%;
    min-width: 0;
    font-size: 18px;
    line-height: 1.05;
    overflow-wrap: anywhere;
    position: relative;
    z-index: 1;
    margin-top: 2px;
}
.podium__item b {
    font-size: 22px;
    line-height: 1;
    color: var(--green);
    position: relative;
    z-index: 1;
    margin-top: 2px;
}
.podium__item small {
    position: relative;
    z-index: 1;
}
.podium__item small {
    color: var(--ink-soft);
    font-size: 12px;
    font-weight: 800;
}
.ranking-table { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow-soft); }
.ranking-table__head, .ranking-table > a { display: grid; grid-template-columns: 40px minmax(180px, 1fr) 90px 85px 80px 90px; align-items: center; gap: 10px; min-width: 0; min-height: 56px; padding: 8px 16px; }
.ranking-table__head { min-height: 40px; background: #f1e5ca; color: var(--ink-soft); font-size: 9px; font-weight: 900; text-transform: uppercase; }
.ranking-table > a { border-top: 1px solid #eadfc6; font-size: 12px; }
.ranking-table > a:hover { background: #fff7e3; }
.player-cell { right: 0; display: flex; align-items: center; gap: 9px;}
.player-cell strong { min-width: 0; overflow-wrap: anywhere; }
.player-cell > img { width: 36px; height: 36px; border-radius: 50%; }
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.category-card { padding: 19px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow-soft); }
.category-card header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.category-card header > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: color-mix(in srgb, var(--category, var(--orange)) 20%, white); font-size: 26px; }
.category-card header small { color: var(--ink-soft); }
.category-card ol { list-style: none; margin: 0; padding: 0; }
.category-card li { display: grid; grid-template-columns: 24px 1fr auto; padding: 8px 2px; border-top: 1px dashed var(--line); font-size: 12px; }
.fun-card header > span { background: #f4e4bd; }

.player-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 17px; }
.player-card { position: relative; min-height: 360px; display: flex; flex-direction: column; align-items: center; padding: 24px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow-soft); text-align: center; transition: .2s; }
.player-card:hover { transform: translateY(-5px) rotate(.25deg); box-shadow: var(--shadow); }
.player-card::after { content: ""; position: absolute; width: 150px; height: 150px; left: -80px; bottom: -80px; border: 3px dashed var(--sage); border-radius: 50%; opacity: .4; }
.player-card__rank { position: absolute; left: 15px; top: 14px; color: var(--orange); font-family: Impact, sans-serif; font-size: 29px; }
.player-card > img { width: 130px; height: 130px; margin: 16px 0; border-radius: 50%; background: #efdfbe; }
.player-card h2 { font-family: Impact, sans-serif; font-size: 27px; text-transform: uppercase; color: var(--green); }
.player-card p { min-height: 44px; margin: 7px 0 15px; color: var(--ink-soft); font-size: 12px; font-style: italic; }
.player-card dl { width: 100%; display: grid; grid-template-columns: repeat(3,1fr); margin: 0 0 15px; }
.player-card dl div { display: grid; padding: 8px; border-right: 1px solid var(--line); }
.player-card dl div:last-child { border: 0; }
.player-card dt { color: var(--ink-soft); font-size: 9px; text-transform: uppercase; }
.player-card dd { margin: 0; font-size: 20px; font-weight: 900; }
.profile-hero { display: grid; grid-template-columns: 190px 1fr 220px; align-items: center; gap: 25px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow); }
.profile-hero > img { width: 180px; height: 180px; border-radius: 50%; background: #f0dfbb; }
.profile-hero h1 { margin: 6px 0; color: var(--green); }
.profile-hero p { color: var(--ink-soft); }
.profile-hero blockquote { margin: 13px 0 0; color: var(--orange-dark); font-weight: 800; }
.profile-hero__rank { display: grid; justify-items: center; padding: 20px; border-radius: 17px; background: #f6e5bc; }
.profile-hero__rank span { color: var(--orange); font-family: Impact, sans-serif; font-size: 72px; line-height: 1; }
.profile-hero__rank small { text-transform: uppercase; font-weight: 900; }
.profile-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin-top: 18px; }
.profile-summary { display: flex; align-items: center; gap: 20px; }
.profile-summary > img { width: 110px; height: 110px; border-radius: 50%; background: #efdfbe; }
.tag { display: inline-flex; margin-top: 9px; padding: 5px 9px; border-radius: 99px; background: #e4edd5; color: var(--green); font-size: 11px; font-weight: 900; }

.admin-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 18px; }
.admin-list { display: grid; }
.admin-list a { display: grid; grid-template-columns: 42px 1fr 20px; align-items: center; gap: 10px; padding: 9px; border-top: 1px dashed var(--line); }
.admin-list img { width: 40px; height: 40px; object-fit: contain; }
.admin-list span { display: grid; }
.admin-list small { color: var(--ink-soft); }
.admin-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.admin-metrics div { display: grid; place-items: center; padding: 15px 8px; border-radius: 11px; background: #f7ecd4; }
.admin-metrics strong { font-size: 28px; }
.admin-metrics span { color: var(--ink-soft); font-size: 10px; text-transform: uppercase; font-weight: 900; }
.info-box { margin-top: 14px; padding: 13px; border: 1px dashed #c9aa68; border-radius: 11px; background: #fff3d2; font-size: 12px; }
.info-box code { font-weight: 900; }

.field { display: grid; gap: 5px; }
.field > span, .field-label { color: var(--ink-soft); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .04em; }
.field input, .field textarea, .field select, .upload-form input[type="text"] { width: 100%; min-height: 42px; padding: 9px 11px; border: 1px solid #cdbd98; border-radius: 9px; outline: 0; background: #fffdf8; transition: .15s; }
.field textarea { min-height: 90px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(233,103,32,.12); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.tounament-logo-preview { display: flex; align-items: center; gap: 12px; margin: 10px 0; padding: 10px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.5); }
.tounament-logo-preview img { width: 110px; height: 72px; object-fit: contain; }
.tounament-logo-preview span { color: var(--ink-soft); font-size: 11px; font-weight: 800; }
.report-target-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.report-target-picker { min-width: 0; padding: 12px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.48); }
.report-target-picker > header { display: grid; gap: 2px; margin-bottom: 9px; }
.report-target-picker > header small, .field-help { color: var(--ink-soft); font-size: 11px; }
.report-choice-list { display: grid; gap: 6px; max-height: 260px; overflow: auto; padding-right: 3px; }
.report-choice-list label { display: block; padding: 9px 10px; border: 1px solid #d8c7a1; border-radius: 10px; background: var(--paper); color: var(--green); font-size: 11px; font-weight: 800; cursor: pointer; transition: .15s ease; }
.report-choice-list label:has(input:checked) { border-color: var(--orange); background: #fff0d7; box-shadow: inset 0 0 0 1px var(--orange); }
.report-choice-list input { margin-right: 7px; accent-color: var(--orange); }
.report-choice-list--disciplines label { line-height: 1.35; }
.field--span-2 { grid-column: span 2; }
.check-row { display: flex; align-items: flex-start; gap: 8px; margin: 12px 0; font-size: 12px; font-weight: 700; }
.check-row input { width: 17px; height: 17px; accent-color: var(--orange); }
.form-error { margin-bottom: 9px; padding: 9px 11px; border-radius: 8px; background: #f5d8d1; color: #843c31; font-size: 12px; font-weight: 800; }
.modal-actions { display: flex; justify-content: flex-end; gap: 8px; margin-top: 18px; }

.modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.open { display: flex; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(20,39,40,.64); backdrop-filter: blur(6px); }
.modal__dialog { position: relative; width: min(1080px, 96vw); max-height: 92vh; overflow: auto; border: 1px solid #cfbd95; border-radius: 20px; background: var(--paper); box-shadow: 0 30px 90px rgba(12,25,25,.35); animation: modalIn .2s ease; }
.modal__close { position: sticky; z-index: 5; top: 20px; float: right; width: 36px; height: 36px; margin: 10px 10px -46px 0; display: grid; border-radius: 50%; color: var(--ink); background: rgba(255,253,245,.92); border: 1px solid var(--line); font-size: 24px; line-height:27px; }
.modal__content { min-height: 180px; }
@keyframes modalIn { from { opacity: 0; transform: translateY(12px) scale(.985); } }
.modal-loading { min-height: 220px; display: grid; place-items: center; font-weight: 900; }
.modal-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; padding: 24px 26px 18px; border-bottom: 1px solid #e8dcc0; background: linear-gradient(120deg, #fff9e9, #f7e8c7); }
.modal-heading h2 { margin: 4px 0; font-family: Impact, sans-serif; font-size: 32px; text-transform: uppercase; color: var(--green); }
.modal-heading p { color: var(--ink-soft); font-size: 12px; }
.form-modal form { display: grid; gap: 12px; padding: 22px 26px 26px; }
.form-modal--wide { width: 100%; }
.hidden-select { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
.logo-picker-wrap { position: relative; }
.logo-picker { display: grid; grid-template-columns: repeat(auto-fit, minmax(132px, 1fr)); gap: 12px; margin-top: 6px; max-height: min(58vh, 560px); overflow: auto; padding-right: 4px; }
.logo-picker button { min-height: 140px; display: grid; place-items: center; gap: 8px; padding: 12px 10px; border: 1px solid #d7c6a0; border-radius: 16px; background: #fffaf0; text-align: center; }
.logo-picker button:hover, .logo-picker button.selected { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(233,103,32,.12); }
.logo-picker img { width: 78px; height: 78px; object-fit: contain; }
.logo-picker small { font-size: 10px; font-weight: 800; line-height: 1.15; }
.logo-picker .logo-picker__empty { font-size: 11px; font-weight: 900; color: var(--green); }
.modal-report__text { padding: 22px 26px; color: var(--ink-soft); white-space: normal; }
.modal-section { padding: 20px 26px; border-top: 1px solid #e8dcc0; }
.modal-section > header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.modal-section > header span { color: var(--ink-soft); font-size: 11px; }
.photo-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 8px; }
.photo-tile { position: relative; aspect-ratio: 1/1; overflow: hidden; border-radius: 10px; background: #e7d5ae; }
.photo-tile--video { background: #173432; }
.photo-tile img { width: 100%; height: 100%; object-fit: cover; transition: .2s; }
.photo-tile:hover img { transform: scale(1.04); }
.photo-tile span { position: absolute; right: 6px; bottom: 6px; padding: 3px 6px; border-radius: 99px; background: rgba(26,55,51,.88); color: white; font-size: 10px; font-weight: 900; }
.photo-tile__placeholder { position: absolute; inset: 0; display: grid; place-items: center; gap: 6px; padding: 10px; text-align: center; background: linear-gradient(160deg, #f4e4bc, #e5c78f); color: var(--green); }
.photo-tile__placeholder span { position: static; right: auto; bottom: auto; padding: 0; border-radius: 0; background: none; color: inherit; font-size: 28px; line-height: 1; }
.photo-tile__placeholder small { position: static; color: var(--ink-soft); font-size: 11px; font-weight: 800; line-height: 1.2; }
.photo-tile__placeholder--video { background: linear-gradient(160deg, #1f4742, #16302e); color: #f8f4e8; }
.photo-tile__placeholder--video small { color: rgba(255,255,255,.78); }
.photo-tile__placeholder--pending { background: linear-gradient(160deg, #f7e7bf, #e5ca97); }
.photo-tile__placeholder--processing { background: linear-gradient(160deg, #e4ead0, #cad7a9); }
.photo-tile__placeholder--failed { background: linear-gradient(160deg, #f3d5c8, #ddb09f); }
.upload-form { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 8px; margin-top: 12px; }
.upload-drop { position: relative; min-height: 56px; display: grid; place-items: center; padding: 8px; border: 1px dashed #b7a273; border-radius: 10px; background: #fbf1db; text-align: center; }
.upload-drop input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.upload-drop span { font-weight: 900; }
.upload-drop small { color: var(--ink-soft); font-size: 9px; }
.comment-thread { display: grid; gap: 9px; }
.comment { display: flex; gap: 9px; }
.comment > img { width: 34px; height: 34px; flex: 0 0 34px; border-radius: 50%; background: #ead9b6; }
.comment__body { min-width: 0; flex: 1; }
.comment__body > header { display: flex; align-items: center; gap: 7px; }
.comment__body > header time { color: var(--ink-soft); font-size: 9px; }
.comment__body > p { margin: 3px 0; color: var(--ink-soft); font-size: 12px; }
.comment__body footer { display: flex; gap: 9px; }
.comment__body footer button { color: var(--green); font-size: 10px; font-weight: 900; }
.comment__body footer button.danger { color: var(--danger); }
.comment__children { display: grid; gap: 8px; margin-top: 9px; padding-left: 17px; border-left: 2px solid #e2d3af; }
.comment--hidden { opacity: .72; }
.comment__hidden-text { font-style: italic; }
.comment-form { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin-top: 14px; }
.comment-form textarea { min-height: 66px; padding: 10px; border: 1px solid #cdbd98; border-radius: 10px; resize: vertical; }
.reply-banner { grid-column: 1/-1; display: flex; align-items: center; gap: 5px; padding: 6px 9px; border-radius: 8px; background: #edf2df; font-size: 10px; }
.reply-banner button { margin-left: auto; }
.photo-modal { min-height: 650px; display: grid; grid-template-columns: 1.45fr .75fr; }
.photo-modal__image { position: relative; display: grid; place-items: center; min-height: 650px; padding: 20px; background: #162e2e; }
.photo-modal__image > img { width: 100%; height: 100%; max-height: 80vh; object-fit: contain; }
.photo-modal__video-center { width: 100%; height: 100%; display: grid; place-items: center; }
.photo-modal__video { width: 100%; max-width: 100%; max-height: calc(80vh - 40px); object-fit: contain; background: #000; border-radius: 14px; }
.photo-modal__placeholder { width: 100%; min-height: 650px; display: grid; place-items: center; gap: 8px; padding: 32px; text-align: center; background: linear-gradient(160deg, #1f4742, #16302e); color: #f8f4e8; }
.photo-modal__placeholder--failed { background: linear-gradient(160deg, #6f2e27, #3a1716); }
.photo-modal__placeholder span { font-size: 64px; line-height: 1; }
.photo-modal__placeholder strong { font-size: 18px; line-height: 1.2; }
.photo-modal__placeholder small { max-width: 32ch; color: rgba(255,255,255,.78); font-size: 12px; line-height: 1.45; overflow-wrap: anywhere; }
.photo-modal__caption { position: absolute; left: 14px; right: 14px; bottom: 14px; display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px; background: rgba(19,42,41,.88); color: white; font-size: 11px; }
.photo-modal__caption strong { flex: 1; }
.photo-modal__caption-actions { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.photo-modal__caption-actions form { display: inline-flex; }
.photo-modal__caption-actions button { min-height: 32px; padding: 6px 10px; border-radius: 8px; background: rgba(255,255,255,.14); color: #ffe4d7; font-weight: 900; }
.photo-modal__caption-actions .photo-delete-form button { background: rgba(255,170,144,.12); color: #ffd3c5; }
.photo-modal__caption button { color: #ffc0aa; font-weight: 900; }
.photo-modal__chat { display: flex; flex-direction: column; padding: 23px 20px; overflow: auto; }
.photo-modal__chat > header { margin-bottom: 14px; }
.photo-modal__chat > header small { color: var(--ink-soft); }
.photo-modal__chat .comment-thread { flex: 1; overflow: auto; padding-right: 4px; }
.stats-form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.stats-form-grid section { padding: 13px; border: 1px solid #dfcfaa; border-radius: 12px; background: #fbf1dd; }
.stats-form-grid section > header { display: flex; align-items: center; gap: 8px; margin-bottom: 9px; }
.stats-form-grid section > header > span { font-size: 24px; }
.stats-form-grid section > header > div { display: grid; flex: 1; }
.stats-form-grid section > header small { color: var(--ink-soft); }
.stats-form-grid section > div { display: grid; grid-template-columns: repeat(5,1fr); gap: 6px; }
.stats-form-grid .field span { font-size: 8px; }
.stats-form-grid .field input { padding: 5px; min-height: 35px; }

.toast-stack { position: fixed; z-index: 400; right: 18px; bottom: 18px; display: grid; gap: 8px; }
.toast { min-width: 260px; padding: 12px 15px; border-radius: 10px; color: white; background: var(--green); box-shadow: var(--shadow); animation: toastIn .2s ease; }
.toast.error { background: var(--danger); }
@keyframes toastIn { from { opacity: 0; transform: translateY(8px); } }
.flash { margin-bottom: 10px; padding: 12px 15px; border-radius: 10px; background: #dfead3; }
.empty-state { grid-column: 1/-1; padding: 22px; color: var(--ink-soft); text-align: center; font-size: 12px; }

.sign-page { min-height: 100vh; display: grid; overflow: hidden; background: linear-gradient(120deg, #fff6df 0 60%, #254f45 60%); }
.sign-illustration { position: relative; display: flex; align-items: flex-end; justify-content: center; padding: 40px; }
.sign-illustration > img { width: min(850px, 90%); max-height: 58vh; object-fit: contain; }
.sign-copy { position: absolute; left: 7%; top: 7%; }
.sign-brand { width: 125px; margin-bottom: 20px; }
.sign-copy h1 { max-width: 700px; color: var(--green); font-size: clamp(45px, 6vw, 88px); }
.sign-copy p { margin-top: 12px; font-size: 18px; font-weight: 800; }
.sign-panel { display: grid; place-items: center; padding: 35px; }
.sign-card { width: min(440px, 100%); padding: 32px; border: 1px solid rgba(255,255,255,.35); border-radius: 22px; background: #fffaf0; box-shadow: 0 25px 80px rgba(10,28,27,.3); }
.sign-card__badge { display: inline-block; padding: 5px 8px; border-radius: 99px; color: var(--orange-dark); background: #f9e7c0; font-size: 10px; font-weight: 900; }
.sign-card h2 { margin: 14px 0 6px; font-family: Impact, sans-serif; font-size: 38px; text-transform: uppercase; color: var(--green); }
.sign-card > p { margin-bottom: 19px; color: var(--ink-soft); font-size: 12px; }
.sign-card form { display: grid; gap: 12px; }
.demo-login { display: grid; margin-top: 20px; padding: 13px; border: 1px dashed #c9aa68; border-radius: 11px; background: #fff1ce; font-size: 11px; }
.demo-login strong { margin-bottom: 5px; }
.demo-login small { margin-top: 5px; }

.mobile-bottom-nav { display: none; }
.error-page { min-height: 100vh; display: grid; place-items: center; background: #f8edd4; }
.error-page > div { max-width: 500px; padding: 40px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); text-align: center; box-shadow: var(--shadow); }
.error-page span { font-size: 60px; }
.error-page h1 { margin: 10px 0; color: var(--green); }
.error-page a { display: inline-block; margin-top: 18px; color: var(--orange); font-weight: 900; }

@media (max-width: 1180px) {
    .topbar__inner { grid-template-columns: 100px 1fr auto; gap: 10px; }
    .main-nav a { padding: 0 9px; font-size: 12px; }
    .main-nav a span { display: none; }
    .hero-card { grid-template-columns: .9fr 1.1fr; }
    .hero-card__today { grid-column: 1/-1; display: grid; grid-template-columns: 180px 1fr auto; align-items: center; }
    .schedule-mini { grid-template-columns: repeat(4, 1fr); }
    .schedule-mini a { display: grid; grid-template-columns: 48px minmax(0, 1fr) auto; }
    .dashboard-grid { grid-template-columns: repeat(2,1fr); }
    .panel--personal { grid-column: 1/-1; }
    .day-grid { grid-template-columns: repeat(3,1fr); }
    .discipline-hero { grid-template-columns: 80px 1fr; }
    .discipline-meta { grid-column: 1/-1; }
    .rules-card, .participants-card, .matches-card, .results-card, .stats-card, .reports-card, .discipline-history-card, .tiebreak-card { grid-column: auto; }
    .discipline-detail-grid { grid-template-columns: 1fr; }
    .leaderboard-layout { grid-template-columns: 1fr; }
    .ranking-progress__chart { min-height: 380px; }
    .player-grid { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 820px) {
    body { padding-bottom: 66px; }
    .topbar__inner { min-height: 65px; grid-template-columns: 46px 1fr 48px; padding: 0 12px; }
    .brand { justify-self: center; }
    .brand img { width: 82px; height: 55px; }
    .mobile-menu-button { display: block; grid-column: 1; grid-row: 1; }
    .main-nav { position: fixed; left: 10px; right: 10px; top: 70px; height: auto; display: none; flex-direction: column; padding: 8px; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); box-shadow: var(--shadow); }
    .main-nav.open { display: flex; }
    .year-switcher--desktop { display: none; }
    .year-switcher--mobile { display: block; width: 100%; margin-bottom: 6px; }
    .year-switcher--mobile > button { width: 100%; justify-content: space-between; padding: 10px 12px; border-color: var(--line); background: #fff; }
    .year-switcher--mobile .dropdown__menu { position: static; width: 100%; min-width: 0; margin-top: 8px; padding: 0; border: 0; border-radius: 12px; box-shadow: none; opacity: 1; visibility: visible; transform: none; display: none; }
    .year-switcher--mobile.dropdown.open .dropdown__menu { display: grid; }
    .year-switcher--mobile .dropdown__menu a { justify-content: flex-start; align-items: flex-start; gap: 2px; padding: 10px 12px; }
    .year-switcher--mobile .dropdown__menu a small { display: block; }
    .main-nav a { min-height: 42px; justify-content: flex-start; }
    .main-nav a span { display: inline; }
    .main-nav a::after { display: none; }
    .topbar__actions { grid-column: 3; grid-row: 1; }
    .user-switcher > button { padding: 4px; }
    .user-switcher > button > span, .user-switcher > button > b { display: none; }
    .user-switcher > button img { width: 38px; height: 38px; }
    .page-shell { width: min(100% - 22px, var(--content)); padding-top: 15px; }
    .hero-card { min-height: auto; grid-template-columns: 1fr; padding: 22px 18px 0; }
    .hero-card__copy { padding-top: 0; }
    .hero-card__copy h1 { font-size: 48px; }
    .hero-card__team { max-height: 235px; }
    .hero-card__today { grid-column: auto; display: block; margin: 0 -18px; border-radius: 0; border-left: 0; border-right: 0; }
    .schedule-mini { grid-template-columns: 1fr; }
    .schedule-mini a { grid-template-columns: 42px minmax(0, 1fr) auto; gap: 6px; }
    .schedule-mini__weather { gap: 3px; font-size: 11px; }
    .stat-strip { width: 100%; margin: 12px 0; grid-template-columns: repeat(2,1fr); }
    .stat-strip > div { border-bottom: 1px solid var(--line); }
    .dashboard-grid, .profile-grid, .admin-grid, .two-column-layout { grid-template-columns: 1fr; }
    .panel--personal { grid-column: auto; }
    .page-heading { min-height: 120px; padding: 19px; align-items: flex-end; }
    .page-heading h1 { font-size: 43px; }
    .illustrated-heading > img { right: 0; opacity: .18; }
    .filter-bar { flex-wrap: wrap; }
    .search-box { order: 3; flex-basis: 100%; }
    .discipline-table__head { display: none; }
    .discipline-row { grid-template-columns: 48px 1fr auto; gap: 4px 10px; padding: 11px; }
    .discipline-name { grid-column: 1/3; }
    .discipline-row > span:nth-child(2) { grid-column: 2; }
    .discipline-row > span:nth-child(3) { grid-column: 2; }
    .discipline-row > span:nth-child(4), .discipline-row > span:nth-child(6) { display: none; }
    .discipline-row > span:nth-child(5) { grid-column: 3; grid-row: 1/3; }
    .discipline-row > span:nth-child(7) { grid-column: 3; }
    .discipline-hero { grid-template-columns: 62px 1fr; padding: 15px; }
    .discipline-hero > img { width: 58px; height: 58px; }
    .discipline-meta { grid-template-columns: 1fr; }
    .discipline-detail-grid { grid-template-columns: 1fr; }
    .participants-table__head { display: none; }
    .participants-table__row { grid-template-columns: 30px minmax(0, 1fr); min-height: 48px; }
    .match-row__main { align-items: flex-start; flex-wrap: wrap; }
    .match-row__main > strong { flex-basis: 100%; }
    .rules-card, .participants-card, .matches-card, .results-card, .stats-card, .reports-card, .tiebreak-card { grid-column: auto; }
    .day-grid { grid-template-columns: 1fr; }
    .day-card { min-height: 220px; }
    .report-card-grid { grid-template-columns: repeat(2,1fr); }
    .category-grid { grid-template-columns: 1fr; }
    .ranking-progress__toolbar,
    .ranking-progress__playback {
        flex-direction: column;
        align-items: stretch;
    }
    .ranking-progress__playback-controls {
        width: 100%;
        justify-content: center;
    }
    .ranking-progress__slider {
        min-width: 0;
    }
    .ranking-progress__chart {
        min-height: 340px;
    }
    .day-expectation__charts {
        grid-template-columns: 1fr;
    }
    .day-expectation__card,
    .day-expectation__table-card {
        padding: 14px;
    }
    .day-expectation__card-head {
        flex-direction: column;
    }
    .day-expectation__chart {
        min-height: 300px;
    }
    .day-expectation__summary-grid {
        grid-template-columns: 1fr 1fr;
    }
    .discipline-prediction__charts {
        grid-template-columns: 1fr;
    }
    .discipline-prediction__card,
    .discipline-prediction__table-card {
        padding: 14px;
    }
    .discipline-prediction__card-head {
        flex-direction: column;
    }
    .discipline-prediction__chart {
        min-height: 300px;
    }
    .discipline-prediction__player-grid {
        grid-template-columns: 1fr;
        max-height: 280px;
    }
    .team-discipline-prediction__charts {
        grid-template-columns: 1fr;
    }
    .team-discipline-prediction__card,
    .team-discipline-prediction__plan-card,
    .team-discipline-prediction__table-card {
        padding: 14px;
    }
    .team-discipline-prediction__card-head {
        flex-direction: column;
    }
    .team-discipline-prediction__card:not(.team-discipline-prediction__card--wide) {
        grid-column: auto;
    }
    .team-discipline-prediction__plan-grid {
        grid-template-columns: 1fr;
    }
    .team-discipline-prediction__player-grid {
        grid-template-columns: 1fr;
        max-height: 280px;
    }
    .team-discipline-prediction__chart {
        min-height: 300px;
    }
    .ranking-progress__player-grid {
        grid-template-columns: 1fr;
        max-height: 280px;
    }
    .ranking-table__head { display: none; }
    .ranking-table > a { grid-template-columns: 30px 1fr auto; }
    .participants-table__head { display: none; }
    .participants-table__row { grid-template-columns: 30px minmax(0, 1fr); padding: 11px; }
    .ranking-table > a > span:nth-child(3), .ranking-table > a > span:nth-child(4), .ranking-table > a > span:nth-child(5) { display: none; }
    .podium { padding: 10px; }
    .podium__item { padding: 12px 8px 10px; gap: 5px; }
    .podium__item--1 { min-height: 250px; }
    .podium__item--2 { min-height: 214px; }
    .podium__item--3 { min-height: 176px; }
    .podium__item .avatar-component { --avatar-size: 60px; --badge-size: 14px; margin: 6px auto 0; }
    .player-grid { grid-template-columns: repeat(2,1fr); }
    .profile-hero { grid-template-columns: 100px 1fr; padding: 18px; }
    .profile-hero > img { width: 96px; height: 96px; }
    .profile-hero__rank { grid-column: 1/-1; }
    .photo-grid { grid-template-columns: repeat(3,1fr); }
    .photo-modal { grid-template-columns: 1fr; }
    .photo-modal__image { min-height: 45vh; }
    .photo-modal__video-center { min-height: 45vh; }
    .photo-modal__placeholder { min-height: 45vh; }
    .photo-modal__chat { max-height: 50vh; }
    .photo-modal__caption { position: static; margin: 0 14px 14px; flex-direction: column; align-items: flex-start; }
    .photo-modal__caption strong { width: 100%; }
    .photo-modal__caption-actions { width: 100%; justify-content: flex-start; }
    .logo-picker { grid-template-columns: repeat(4,1fr); }
    .stats-form-grid { grid-template-columns: 1fr; }
    .mobile-bottom-nav { position: fixed; z-index: 90; left: 0; right: 0; bottom: 0; height: 62px; display: grid; grid-template-columns: repeat(5,1fr); border-top: 1px solid #d1c19a; background: rgba(255,250,235,.97); backdrop-filter: blur(14px); box-shadow: 0 -5px 18px rgba(42,49,35,.12); }
    .mobile-bottom-nav a { display: grid; place-items: center; align-content: center; gap: 1px; color: var(--ink-soft); font-size: 9px; font-weight: 800; }
    .mobile-bottom-nav a span { font-size: 19px; }
    .mobile-bottom-nav a.active { color: var(--orange); }
    .modal { padding: 7px; align-items: flex-end; }
    .modal__dialog { width: 100%; max-height: 94vh; border-radius: 20px 20px 0 0; }
}

@media (max-width: 520px) {
    .hero-card__actions { flex-direction: column; }
    .stat-strip > div { grid-template-columns: 26px auto 1fr; padding: 11px; }
    .stat-strip strong { font-size: 20px; }
    .dashboard-grid { gap: 12px; }
    .panel { padding: 15px; border-radius: 15px; }
    .personal-stat-grid { grid-template-columns: 1fr 1fr; }
    .personal-stat-grid > div { min-height: 82px; padding: 9px; }
    .report-card-grid { grid-template-columns: 1fr; }
    .player-grid { grid-template-columns: 1fr; }
    .player-card { min-height: 320px; }
    .form-grid { grid-template-columns: 1fr; }
    .report-target-grid { grid-template-columns: 1fr; }
    .field--span-2 { grid-column: auto; }
    .logo-picker { grid-template-columns: repeat(3,1fr); }
    .upload-form { grid-template-columns: 1fr; }
    .photo-grid { grid-template-columns: repeat(2,1fr); }
    .comment-form { grid-template-columns: 1fr; }
    .photo-modal__caption-actions { gap: 6px; }
    .photo-modal__caption-actions form { width: 100%; }
    .photo-modal__caption-actions button { width: 100%; justify-content: center; }
    .stats-form-grid section > div { grid-template-columns: repeat(3,1fr); }
    .day-expectation__summary-grid {
        grid-template-columns: 1fr;
    }
    .day-expectation__chart {
        min-height: 260px;
    }
    .discipline-prediction__chart {
        min-height: 260px;
    }
    .discipline-prediction__meta-inline {
        justify-content: flex-start;
    }
    .team-discipline-prediction__chart {
        min-height: 260px;
    }
    .team-discipline-prediction__meta-inline {
        justify-content: flex-start;
    }
    .sign-page { grid-template-columns: 1fr; background: #fff6df; }
    .sign-illustration { min-height: 34vh; padding: 15px; }
    .sign-illustration > img { max-height: 28vh; margin-top: 100px; }
    .sign-copy { left: 22px; top: 20px; }
    .sign-brand { width: 85px; margin-bottom: 4px; }
    .sign-copy h1 { font-size: 36px; }
    .sign-copy p { font-size: 12px; }
    .sign-panel { padding: 12px; }
    .sign-card { padding: 22px; }
}

/* Interactive admin/profile additions */
.heading-actions { display: flex; align-items: center; justify-content: flex-end; gap: 9px; flex-wrap: wrap; position: relative; z-index: 2; }
.mini-action { grid-column: 1 / -1; justify-self: center; display: block; width: max-content; max-width: 100%; margin: 7px 0 0; border: 1px solid rgba(36,74,56,.24); border-radius: 9px; background: rgba(255,255,255,.68); padding: 6px 9px; color: var(--green); font-size: 11px; font-weight: 900; cursor: pointer; text-align: center; }
.participant-picker > span { display: block; margin-bottom: 7px; color: var(--ink-soft); font-size: 12px; font-weight: 800; }
.participant-picker > div { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 7px; }
.participant-picker label { display: flex; align-items: center; gap: 7px; border: 1px solid var(--line); border-radius: 10px; background: rgba(255,255,255,.58); padding: 8px 10px; font-weight: 700; }
.team-pair-grid { border: 1px dashed #d5b873; border-radius: 14px; background: #fffaf0; padding: 12px; }
.team-pair-grid > div { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; margin-top: 8px; }
.team-pair-grid section { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; border: 1px solid var(--line); border-radius: 11px; padding: 9px; background: #fff; }
.team-pair-grid section strong { grid-column: 1/-1; font-size: 12px; color: var(--green); }
.team-pair-grid select { min-width: 0; width: 100%; }
.result-form-table { display: grid; gap: 7px; margin: 12px 0; }
.result-form-table__head, .result-form-table__row { display: grid; grid-template-columns: minmax(150px,1.2fr) 90px minmax(170px,1.4fr) 85px; gap: 8px; align-items: center; }
.result-form-table__head { padding: 0 9px; color: var(--ink-soft); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .04em; }
.result-form-table__row { border: 1px solid var(--line); border-radius: 12px; padding: 8px; background: rgba(255,255,255,.65); }
.result-form-table__row input { min-width: 0; width: 100%; }
.waning-box { border: 1px solid #e8c46b; border-radius: 13px; background: #fff4cd; padding: 14px; color: #715413; line-height: 1.5; }
.admin-users { grid-column: 1/-1; }
.admin-user-row { display: grid; grid-template-columns: 42px 1fr auto; gap: 10px; align-items: center; border-bottom: 1px solid var(--line); padding: 9px 4px; }
.admin-user-row:last-child { border-bottom: 0; }
.admin-user-row img { width: 38px; height: 38px; border-radius: 50%; background: #f0dfb7; }
.admin-user-row span { display: grid; gap: 2px; }
.admin-user-row small { color: var(--ink-soft); }
.admin-user-row b { border-radius: 999px; background: var(--cream); padding: 5px 9px; color: var(--green); font-size: 11px; }

@media (max-width: 820px) {
    .heading-actions { justify-content: flex-start; width: 100%; }
    .participant-picker > div, .team-pair-grid > div { grid-template-columns: 1fr; }
    .result-form-table__head { display: none; }
    .result-form-table__row { grid-template-columns: 72px 1fr 70px; }
    .result-form-table__row strong { grid-column: 1/-1; }
    .result-form-table__row input:nth-of-type(2) { grid-column: 2; }
}

@media (max-width: 520px) {
    .participant-picker > div { grid-template-columns: 1fr; }
    .team-pair-grid section { grid-template-columns: 1fr; }
    .team-pair-grid section strong { grid-column: auto; }
    .result-form-table__row { grid-template-columns: 1fr 1fr; }
    .result-form-table__row strong, .result-form-table__row input:nth-of-type(2) { grid-column: 1/-1; }
}
.panel-actions { display: flex; align-items: center; justify-content: flex-end; gap: 7px; flex-wrap: wrap; }
.panel-actions button, .stat-definition-grid button { border: 1px solid rgba(38,79,57,.2); border-radius: 8px; background: #fff8e8; padding: 5px 8px; color: var(--green); font-size: 10px; font-weight: 900; cursor: pointer; }
.tiebreak-form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; margin-top: 12px; }
.tiebreak-form-grid section { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.6); padding: 10px; }
.tiebreak-form-grid section strong { grid-column: 1/-1; }
.stat-values-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; }
.stat-definition-grid > div { position: relative; }
.stat-definition-grid > div button { margin-top: 6px; }
@media (max-width: 520px) {
    .tiebreak-form-grid, .stat-values-grid { grid-template-columns: 1fr; }
    .tiebreak-form-grid section { grid-template-columns: 1fr; }
    .tiebreak-form-grid section strong { grid-column: auto; }
}
.avatar-crop{display:grid;gap:.75rem;margin-top:1rem;padding:1rem;border:2px dashed rgba(28,75,61,.2);border-radius:1.25rem}.avatar-crop__preview{width:clamp(8rem,35vw,13rem);aspect-ratio:1;overflow:hidden;border:2px solid var(--green);border-radius:50%;background:#faf2df;margin:auto}.avatar-crop__preview img{display:block;width:100%;height:100%;object-fit:cover;transform-origin:center}.avatar-crop input[type=range]{width:100%}

/* Unified administration navigation */
.admin-tabs {
    display: flex;
    gap: 7px;
    overflow-x: auto;
    margin: 0 0 18px;
    padding: 5px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 248, 232, .78);
    scrollbar-width: thin;
}
.admin-tabs a {
    flex: 0 0 auto;
    border-radius: 10px;
    padding: 9px 13px;
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}
.admin-tabs a:hover { background: rgba(38, 79, 57, .1); }
.admin-tabs a.active { background: var(--green); color: #fff; }

@media (max-width: 620px) {
    .admin-tabs { margin-inline: -4px; border-radius: 12px; }
    .admin-tabs a { padding: 9px 11px; }
}

/* Shared administration table */
.admin-table { width: 100%; overflow: hidden; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.5); }
.admin-table__row { display: grid; grid-template-columns: minmax(150px,1.05fr) minmax(210px,1.45fr) minmax(92px,.55fr) minmax(220px,1.2fr); gap: 12px; align-items: center; min-height: 58px; padding: 9px 12px; border-bottom: 1px solid var(--line); }
.admin-table__row:last-child { border-bottom: 0; }
.admin-table__head { min-height: 38px; background: rgba(247,235,204,.72); color: var(--ink-soft); font-size: 10px; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.admin-table__head span:nth-child(4) {
    text-align: right;
}
.admin-table__cell { min-width: 0; display: grid; gap: 3px; overflow-wrap: anywhere; }
.admin-table__cell > span:not(.status-badge), .admin-table__cell > strong, .admin-table__cell > small { min-width: 0; }
.admin-table__cell > small { color: var(--ink-soft); }
.admin-table__identity { grid-template-columns: 36px minmax(0,1fr); align-items: center; }
.admin-table__identity img { width: 34px; height: 34px; object-fit: contain; border-radius: 9px; }
.admin-table__actions { display: flex; justify-content: flex-end; align-items: center; gap: 6px; flex-wrap: wrap; }
.admin-table__actions button, .admin-table__actions a { border: 1px solid rgba(38,79,57,.2); border-radius: 8px; background: #fff8e8; padding: 6px 8px; color: var(--green); font-size: 10px; font-weight: 900; line-height: 1.2; text-decoration: none; cursor: pointer; }
.admin-table__actions .danger, .button--danger { border-color: rgba(164,55,35,.3); background: #fff0e9; color: #9d321f; }
.status-badge { justify-self: start; border-radius: 999px; background: var(--cream); padding: 5px 9px; color: var(--green); font-size: 11px; font-weight: 900; white-space: nowrap; }

@media (max-width: 760px) {
    .admin-table { overflow: visible; border: 0; background: transparent; }
    .admin-table__head { display: none; }
    .admin-table__row { grid-template-columns: 1fr; gap: 8px; margin-bottom: 10px; padding: 13px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.65); }
    .admin-table__cell { grid-template-columns: minmax(76px,.38fr) minmax(0,1fr); align-items: start; }
    .admin-table__cell::before { content: attr(data-label); color: var(--ink-soft); font-size: 10px; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
    .admin-table__identity { grid-template-columns: 76px 34px minmax(0,1fr); }
    .admin-table__identity::before { grid-column: 1; }
    .admin-table__actions { display: flex; justify-content: flex-start; padding-top: 4px; }
    .admin-table__actions::before { flex: 0 0 76px; }
    .admin-table__row--award {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 8px;
    }
    .admin-table__row--award .admin-table__identity {
        grid-template-columns: 40px minmax(0, 1fr);
    }
    .admin-table__row--award .admin-table__cell {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        min-height: 0;
    }
    .admin-table__row--award .admin-table__cell::before {
        flex: 0 0 110px;
        line-height: 1.2;
    }
    .admin-table__row--award .admin-table__actions {
        justify-content: flex-end;
    }
    .admin-table__row--award .admin-table__actions::before {
        display: none;
    }
    .admin-table__row--award .admin-table__identity {
        grid-template-columns: 40px minmax(0, 1fr);
        align-items: center;
    }
    .admin-table__row--award .admin-table__identity > div {
        min-width: 0;
        display: grid;
        gap: 2px;
    }
    .admin-table__row--award .admin-table__identity small,
    .admin-table__row--award .admin-table__cell small {
        white-space: nowrap;
    }
    .admin-table__row--catalog {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .admin-table__row--catalog .admin-table__cell {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        min-height: 0;
    }
    .admin-table__row--catalog .admin-table__cell::before {
        flex: 0 0 110px;
        line-height: 1.2;
    }
    .admin-table__row--catalog .admin-table__actions {
        justify-content: flex-end;
    }
    .admin-table__row--catalog .admin-table__actions::before {
        display: none;
    }
}
.result-type-config { padding: 1rem; border: 1px solid rgba(30, 74, 58, .18); border-radius: 18px; background: rgba(255, 248, 231, .72); }
.result-type-config > .field-label { display: block; margin-bottom: .75rem; font-weight: 800; color: var(--green, #1e4a3a); }
.attempt-editor, .group-editor { display: grid; gap: 1rem; max-height: min(65vh, 720px); overflow: auto; padding-right: .25rem; }
.attempt-editor > section, .group-editor > section, .group-stage-grid > section, .finals-grid > section { padding: 1rem; border-radius: 18px; background: rgba(255, 248, 231, .74); border: 1px solid rgba(30, 74, 58, .14); }
.attempt-editor h3, .group-editor h3, .group-stage-grid h3, .finals-grid h3 { margin: 0 0 .8rem; }
.attempt-editor__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: .8rem; }
.attempt-editor__attempt { display: grid; gap: .55rem; padding: .8rem; border-radius: 14px; background: #fff; }
.measured-results-table { overflow-x: auto; }
.measured-results-table__row { display: flex; gap: .65rem; align-items: center; min-width: 560px; padding: .7rem .4rem; border-bottom: 1px solid rgba(30, 74, 58, .12); }
.measured-results-table__row > :first-child { flex: 1.4 0 150px; }
.measured-results-table__row > span { flex: .7 0 90px; }
.measured-results-table__row > span small { display: block; margin-top: .2rem; color: rgba(30, 74, 58, .65); font-size: .72rem; white-space: normal; }
.measured-results-table__row > :last-child { flex: 1 0 130px; }
.measured-results-table__head { font-size: .78rem; font-weight: 800; text-transform: uppercase; color: rgba(30, 74, 58, .72); }
.group-stage-grid, .finals-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: 1rem; }
.finals-grid { margin-top: 1rem; }

@media (max-width: 680px) {
    .attempt-editor__grid, .group-stage-grid, .finals-grid { grid-template-columns: 1fr; }
}
.discipline-detail-grid > .rules-card { display: none; }
.history-data-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.history-data-card { padding: 1rem; border-radius: var(--radius, 18px); background: var(--cream, #faf2df); }

/* Shared avatar component */
.avatar-component {
    --avatar-size: 44px;
    --badge-size: 18px;
    position: relative;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    line-height: 0;
    isolation: isolate;
}
.avatar-component__frame {
    position: relative;
    width: var(--avatar-size);
    height: var(--avatar-size);
    overflow: hidden;
    border: 2px solid var(--green);
    border-radius: 50%;
    background: #faf2df;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
}
.avatar-component__frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.avatar-component__badges {
    position: absolute;
    inset: -8px;
    pointer-events: none;
}
.avatar-component__badge,
.avatar-component__more {
    position: absolute;
    width: var(--badge-size);
    height: var(--badge-size);
    display: grid;
    place-items: center;
    border: 1px solid rgba(38, 79, 57, .18);
    border-radius: 50%;
    background: rgba(255, 248, 232, .98);
    box-shadow: 0 4px 10px rgba(39, 48, 37, .16);
    font-size: 10px;
    font-weight: 900;
    color: var(--green);
}
.avatar-component__badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.avatar-component__badge--1 { top: -4px; left: 10px; transform: translate(-50%, 0); }
.avatar-component__badge--2 { top: -8px; left: 50%; transform: translateX(-50%); }
.avatar-component__badge--3 { top: -4px; right: 10px; transform: translate(50%, 0); }
.avatar-component__more { right: -7px; bottom: -7px; }
.avatar-component--xs { --avatar-size: 26px; --badge-size: 12px; }
.avatar-component--sm { --avatar-size: 30px; --badge-size: 12px; }
.avatar-component--md { --avatar-size: 44px; --badge-size: 16px; }
.avatar-component--lg { --avatar-size: 84px; --badge-size: 18px; }
.avatar-component--xl { --avatar-size: 110px; --badge-size: 20px; }
.avatar-component--topbar { --avatar-size: 38px; --badge-size: 13px; }

.user-switcher .avatar-component { --avatar-size: 38px; --badge-size: 13px; }
.leaderboard-mini .avatar-component { justify-self: start; }
.player-cell .avatar-component { --avatar-size: 36px; --badge-size: 12px; }
.player-card .avatar-component { --avatar-size: 130px; --badge-size: 20px; margin: 16px 0; }
.profile-hero .avatar-component { --avatar-size: 180px; --badge-size: 22px; justify-self: start; }
.profile-summary .avatar-component { --avatar-size: 110px; --badge-size: 18px; }
.avatar-list .avatar-component { --avatar-size: 28px; --badge-size: 12px; }
.avatar-list span .avatar-component { margin-right: 0; }
.avatar-list span { display: flex; align-items: center; gap: 7px; padding: 5px 9px 5px 5px; border: 1px solid #e1d2af; border-radius: 99px; background: #fbf2de; font-size: 11px; font-weight: 800; }

/* Awards */
.award-board, .award-card, .award-result {
    overflow: hidden;
}
.award-board--desktop {
    display: grid;
    gap: 1rem;
}
.award-matrix {
    display: grid;
    gap: .55rem;
    overflow-x: auto;
    padding-bottom: .15rem;
}
.award-matrix__head,
.award-matrix__row {
    display: grid;
    gap: .55rem;
    align-items: center;
    width: 100%;
}
.award-matrix__head {
    padding: 0 .25rem;
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.award-matrix__head > span,
.award-matrix__row > span {
    min-width: 0;
}
.award-matrix__head > span {
    display: grid;
    justify-items: center;
    gap: .4rem;
    text-align: center;
}
.award-matrix__head > span:first-child {
    background: #f1e5ca;
}
.award-matrix__head img,
.award-card__meta img {
    width: 130px;
    height: 130px;
    object-fit: contain;
}
.award-matrix__row {
    padding: .6rem .7rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255,255,255,.62);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.5);
}
.award-matrix__row--none {
    background: rgba(247,235,204,.55);
}
.award-matrix__player {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .6rem;
    align-items: center;
}
.award-matrix__player strong {
    font-size: 13px;
}
.award-radio {
    display: grid;
    place-items: center;
    min-height: 44px;
    padding: 8px 0;
    border-radius: 12px;
    background: rgba(255,255,255,.55);
    border: 1px solid transparent;
    transition: background-color .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.award-radio input {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--green);
    cursor: pointer;
}
.award-radio:has(input:checked) {
    background: rgba(247,235,204,.95);
    border-color: rgba(38,79,57,.28);
    box-shadow: inset 0 0 0 1px rgba(38,79,57,.08);
}
.award-radio:has(input:disabled) {
    opacity: .5;
}
.award-radio:has(input:checked):hover {
    background: rgba(242,226,185,.98);
}
.award-radio:hover {
    background: rgba(247,235,204,.75);
}
.award-mobile { display: none; }
.award-card {
    display: grid;
    gap: .85rem;
}
.award-card__meta {
    color: var(--ink-soft);
    font-size: 12px;
}
.award-card__choices {
    display: grid;
    gap: .5rem;
}
.award-choice {
    display: grid;
}
.award-choice input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.award-choice > span {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .6rem;
    align-items: center;
    padding: .55rem .7rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255,255,255,.72);
}
.award-choice input:checked + span {
    border-color: rgba(38,79,57,.4);
    background: rgba(247,235,204,.92);
}
.award-choice--none > span {
    display: block;
    text-align: center;
    font-weight: 900;
}
.award-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}
.award-result__winner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .75rem;
    align-items: center;
}
.award-result__winner small {
    display: block;
    color: var(--ink-soft);
}

@media (max-width: 820px) {
    .award-board--desktop { display: none; }
    .award-mobile { display: grid; gap: 1rem; }
    .award-matrix__row,
    .award-matrix__head {
        grid-template-columns: minmax(160px, 1fr) repeat(auto-fit, minmax(58px, 1fr));
    }
    .award-matrix__player { grid-template-columns: auto 1fr; }
}

@media (max-width: 520px) {
    .award-choice > span { grid-template-columns: 1fr; justify-items: center; text-align: center; }
    .award-result__winner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
}
