/* GameTime Concept C — responsive, dependency-free stylesheet.
   Edit the :root tokens to customize the brand.
   Mobile layout begins at 740px; smaller breakpoints refine compact screens. */

@font-face {
  font-family:Inter;
  src:url('assets/inter-regular.ttf') format('truetype');
  font-weight:400;
  font-display:swap;
}

@font-face {
  font-family:Inter;
  src:url('assets/inter-bold.ttf') format('truetype');
  font-weight:600 700;
  font-display:swap;
}

@font-face {
  font-family:Inter;
  src:url('assets/inter-black.ttf') format('truetype');
  font-weight:800 900;
  font-display:swap;
}

:root {
  --ivory:#fcfaf6;
  --orange:#ff501a;
  --orange-hover:#e63c08;
  --ink:#12171c;
  --muted:#687081;
  --line:#dce0e5;
  --peach:#fff0e3;
  --white:#fff;
  --radius:16px;
  --font:Inter,Arial,Helvetica,sans-serif;
}

* {
  box-sizing:border-box;
}

html {
  scroll-behavior:smooth;
  scroll-padding-top:24px;
}

body {
  margin:0;
  background:var(--ivory);
  color:var(--ink);
  font-family:var(--font);
  font-size:16px;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}

button,input,a {
  -webkit-tap-highlight-color:transparent;
}

button,input {
  font:inherit;
}

button,a {
  touch-action:manipulation;
}

button {
  cursor:pointer;
}

button:disabled {
  cursor:default;
  opacity:.32;
}

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

button {
  color:inherit;
}

img,svg {
  max-width:100%;
}

img {
  display:block;
}

button:focus-visible,a:focus-visible,input:focus-visible,[tabindex]:focus-visible {
  outline:3px solid #b92b00;
  outline-offset:5px;
}

button:focus:not(:focus-visible) {
  outline:none;
}

h1,h2,h3,p {
  margin:0;
}

button svg,a svg {
  flex-shrink:0;
  pointer-events:none;
}

[hidden] {
  display:none!important;
}

.icon-library {
  position:absolute;
  width:0;
  height:0;
  overflow:hidden;
}

.icon {
  width:22px;
  height:22px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
  vertical-align:middle;
  flex-shrink:0;
}

.rotate {
  transform:rotate(180deg);
}

.container {
  width:min(1320px,calc(100% - 96px));
  margin-inline:auto;
}

.sr-only {
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.skip-link {
  position:fixed;
  top:-100px;
  left:20px;
  padding:12px 20px;
  background:var(--ink);
  color:white;
  z-index:99;
}

.skip-link:focus {
  top:12px;
}

.button {
  border:0;
  border-radius:8px;
  min-height:48px;
  padding:12px 24px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight:700;
  font-size:16px;
  line-height:1.4;
  transition:background .15s,transform .15s;
}

.button:hover {
  transform:translateY(-1px);
}

.button-orange {
  background:var(--orange);
  color:#11171b;
}

.button-orange:hover {
  background:var(--orange-hover);
  color:white;
}

.icon-button {
  border:0;
  background:transparent;
  min-width:44px;
  min-height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:6px;
}

.icon-button:hover {
  background:#ecece9;
}

.site-header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  padding-block:23px;
}

.brand {
  display:inline-flex;
  align-items:center;
  gap:14px;
  flex-shrink:0;
}

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

.brand-type {
  font-size:44px;
  font-weight:900;
  font-style:italic;
  letter-spacing:-2.6px;
  line-height:.95;
  position:relative;
  padding-bottom:14px;
}

.brand-type small {
  display:block;
  position:absolute;
  right:2px;
  bottom:0;
  font-size:12px;
  font-style:normal;
  letter-spacing:3.5px;
  color:#be320c;
  line-height:1;
}

.site-nav {
  display:flex;
  align-items:center;
  gap:32px;
  font-size:15px;
  font-weight:600;
}

.site-nav a {
  padding-block:12px;
}

.site-nav a:hover {
  color:#ba340e;
}

.menu-toggle {
  display:none;
}

.intro {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:40px;
  padding-top:18px;
  margin-bottom:25px;
}

.eyebrow {
  text-transform:uppercase;
  color:#ba340e;
  font-size:13px;
  font-weight:700;
  letter-spacing:2.5px;
  line-height:1.5;
  margin-bottom:8px;
}

h1 {
  font-size:clamp(48px,5.4vw,76px);
  font-weight:900;
  letter-spacing:-3.8px;
  line-height:1.1;
}

.intro-subtitle {
  font-size:23px;
  letter-spacing:-.7px;
  color:#5c6373;
  margin-top:7px;
}

.search {
  width:350px;
  max-width:38%;
  position:relative;
  flex-shrink:0;
  margin-bottom:9px;
}

.search>.icon {
  position:absolute;
  left:16px;
  top:16px;
  color:var(--muted);
}

.search input {
  width:100%;
  height:54px;
  background:#fff;
  border:1px solid #cdd1d8;
  border-radius:9px;
  padding:12px 16px 12px 47px;
  min-width:0;
  font-size:15px;
  color:var(--ink);
}

.search input::placeholder {
  color:#747c8b;
}

.toolbar {
  display:flex;
  align-items:stretch;
  justify-content:space-between;
  border:1px solid var(--line);
  border-radius:10px;
  background:white;
  margin-bottom:16px;
  min-height:55px;
}

.tabs {
  display:flex;
  padding:4px;
  gap:4px;
  flex:1;
  max-width:610px;
}

.tabs button {
  flex:1;
  border:0;
  background:transparent;
  border-radius:6px;
  min-height:45px;
  padding:9px 20px;
  font-weight:700;
  font-size:15px;
  color:#667082;
  white-space:nowrap;
}

.tabs button[aria-selected=true] {
  background:var(--ink);
  color:white;
  box-shadow:0 2px 3px #0000000d;
}

.tabs button:not([aria-selected=true]):hover {
  background:#f4f4f2;
  color:var(--ink);
}

.date-selector {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  min-width:295px;
  border-left:1px solid var(--line);
  padding-inline:7px;
}

.date-selector>span {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  font-weight:600;
  font-size:15px;
}

.content-grid {
  display:grid;
  grid-template-columns:minmax(0,1.72fr) minmax(0,1fr);
  gap:18px;
  align-items:start;
}

.results-column {
  min-width:0;
}

.live-card {
  background:var(--ink);
  border-radius:var(--radius);
  padding:24px;
  color:white;
  overflow:hidden;
}

.match-meta {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:26px;
  font-size:15px;
  font-weight:600;
  color:#b8c0cc;
}

.live-label {
  display:inline-flex;
  align-items:center;
  gap:9px;
  color:#ff713e;
  font-size:17px;
  font-weight:700;
  letter-spacing:.5px;
}

.live-label::before {
  content:'';
  width:11px;
  height:11px;
  background:currentColor;
  border-radius:50%;
}

.match-main {
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(160px,1.25fr) minmax(0,1fr);
  gap:14px;
  align-items:center;
  text-align:center;
}

.team {
  display:flex;
  align-items:center;
  flex-direction:column;
  gap:8px;
  min-width:0;
}

.team-badge {
  width:70px;
  height:70px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:white;
  color:var(--team-color,#f65a24);
  font:italic 900 46px Georgia,serif;
  border:1px solid #e4e5e8;
  flex-shrink:0;
}

.team strong {
  font-size:17px;
  line-height:1.25;
  max-width:160px;
}

.record {
  font-size:13px;
  color:#a4afbc;
  letter-spacing:.3px;
}

.score {
  font-size:76px;
  line-height:1;
  font-weight:800;
  letter-spacing:-3px;
  white-space:nowrap;
  font-variant-numeric:tabular-nums;
}

.score .dash {
  color:#d8dde1;
  font-weight:400;
  font-size:.7em;
  vertical-align:12%;
}

.periods {
  letter-spacing:normal;
  line-height:1.4;
  margin-top:15px;
  width:100%;
  border-collapse:collapse;
  font-size:12px;
  font-weight:400;
  color:#e7eaed;
}

.periods th {
  font-weight:400;
  color:#b7c0ca;
}

.periods th,.periods td {
  padding:5px 7px;
  text-align:center;
  border-bottom:1px solid #ffffff1f;
}

.periods th:first-child,.periods td:first-child {
  text-align:left;
  padding-left:0;
}

.live-card>.button {
  width:100%;
  margin-top:26px;
}

.final-list {
  display:grid;
  gap:12px;
  margin-top:12px;
}

.final-game {
  width:100%;
  display:grid;
  grid-template-columns:60px minmax(0,1fr) auto minmax(0,1fr);
  align-items:center;
  gap:18px;
  padding:21px 22px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:white;
  text-align:left;
  min-height:88px;
  transition:border-color .15s;
}

.final-game:hover {
  border-color:#f68d6b;
}

.status-tag {
  font-size:12px;
  font-weight:700;
  letter-spacing:1px;
  background:#eceef1;
  padding:5px 8px;
  border-radius:5px;
  text-align:center;
  color:#424955;
}

.mini-team {
  display:flex;
  align-items:center;
  gap:12px;
  color:#515b6d;
  font-size:14px;
  line-height:1.3;
  min-width:0;
}

.mini-team.away {
  flex-direction:row-reverse;
  text-align:right;
}

.mini-team .team-badge {
  width:46px;
  height:46px;
  font-size:29px;
}

.final-score {
  font-size:25px;
  font-weight:700;
  letter-spacing:1px;
  white-space:nowrap;
  font-variant-numeric:tabular-nums;
}

.final-score .dash {
  padding-inline:5px;
  color:#596272;
}

.app-promo {
  border-radius:var(--radius);
  background:var(--peach);
  overflow:hidden;
  position:relative;
  min-width:0;
}

.promo-copy {
  position:relative;
  z-index:1;
  padding:23px 24px 0;
}

.app-promo .eyebrow {
  font-size:12px;
  letter-spacing:2px;
  margin-bottom:6px;
}

.app-promo h2 {
  font-size:clamp(30px,3.1vw,44px);
  font-weight:900;
  line-height:1.03;
  letter-spacing:-2px;
}

.promo-copy>p:not(.eyebrow) {
  color:#5c6371;
  font-size:17px;
  letter-spacing:-.3px;
  margin:10px 0 16px;
}

.promo-download {
  min-width:230px;
  max-width:100%;
}

.store-links {
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:9px;
  margin-top:10px;
  position:relative;
  z-index:2;
}

.store-badge {
  background:#090a0c;
  border:1px solid #676767;
  border-radius:6px;
  color:white;
  display:flex;
  align-items:center;
  gap:7px;
  padding:6px 9px;
  min-height:45px;
  transition:opacity .15s;
}

.store-badge:hover {
  opacity:.82;
}

.store-icon {
  width:23px;
  height:28px;
  fill:white;
  flex-shrink:0;
}

.store-badge span {
  display:flex;
  flex-direction:column;
}

.store-badge small {
  font-size:8px;
  line-height:1.2;
  letter-spacing:.1px;
}

.store-badge strong {
  font-size:17px;
  font-weight:500;
  line-height:1.15;
  letter-spacing:-.5px;
  white-space:nowrap;
}

.promo-photo {
  width:100%;
  height:245px;
  object-fit:cover;
  object-position:50% 50%;
  margin-top:0;
  mask-image:linear-gradient(to bottom,transparent 0,#000 20%);
  -webkit-mask-image:linear-gradient(to bottom,transparent 0,#000 20%);
}

.league-callout {
  display:flex;
  align-items:center;
  gap:20px;
  background:white;
  border:1px solid var(--line);
  border-radius:12px;
  width:100%;
  margin-top:20px;
  padding:16px 24px;
  text-align:left;
}

.league-callout>.icon {
  width:33px;
  height:33px;
  flex-shrink:0;
}

.league-callout>span:first-of-type {
  border-left:1px solid var(--line);
  padding-left:22px;
  display:flex;
  flex-direction:column;
  font-size:15px;
  line-height:1.4;
  gap:4px;
}

.league-callout>span:first-of-type>span {
  color:#b5320a;
}

.league-callout .icon {
  width:20px;
  height:20px;
}

.callout-note {
  margin-left:auto;
  color:#747a85;
  font-size:13px;
}

.league-callout:hover {
  border-color:#f68d6b;
}

.site-footer {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:15px;
  padding-block:20px 26px;
  color:#737b87;
  font-size:12px;
}

.site-footer>span {
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:10px;
  font-weight:700;
}

.site-footer p span {
  padding-inline:7px;
}

.site-footer a:hover {
  color:var(--ink);
}

.data-panel {
  padding:26px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:white;
  min-height:460px;
}

.data-panel h2 {
  font-size:26px;
  font-weight:800;
  letter-spacing:-1px;
}

.table-caption {
  font-size:14px;
  color:var(--muted);
  margin-top:5px;
  margin-bottom:22px;
}

.table-wrap {
  max-width:100%;
  overflow:auto;
  overscroll-behavior-inline:contain;
}

.stats-table {
  width:100%;
  border-collapse:collapse;
  text-align:left;
  font-size:14px;
}

.stats-table thead th {
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.5px;
  color:#737b87;
  font-weight:600;
}

.stats-table th,.stats-table td {
  padding:14px 8px;
  border-bottom:1px solid #e9eaed;
}

.stats-table td:first-child {
  color:#737b87;
  width:30px;
}

.stats-table tbody tr:first-child {
  background:#fff1e8;
}

.stats-table td:last-child {
  font-weight:700;
}

.stats-table tbody th {
  font-size:inherit;
  font-weight:600;
  text-transform:none;
  letter-spacing:normal;
  color:var(--ink);
}

.stats-table th:first-child {
  padding-left:8px;
}

.empty-state {
  padding:46px 28px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:white;
  text-align:center;
}

.empty-state h2 {
  font-size:24px;
  margin-bottom:8px;
}

.empty-state p {
  color:var(--muted);
}

.empty-state button {
  margin-top:20px;
}

.result-note {
  color:var(--muted);
  font-size:13px;
  margin:10px 0;
}

.icon-button[disabled]:hover {
  background:transparent;
}

dialog {
  border:1px solid var(--line);
  border-radius:20px;
  background:var(--ivory);
  color:var(--ink);
  padding:28px;
  width:min(600px,calc(100% - 32px));
  max-height:85dvh;
  overflow:auto;
  box-shadow:0 24px 80px #0003;
}

dialog::backdrop {
  background:#11171bcc;
  backdrop-filter:blur(5px);
}

.dialog-heading {
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
  margin-bottom:24px;
}

.dialog-heading h2 {
  font-size:30px;
  line-height:1.1;
  letter-spacing:-1px;
}

.dialog-heading .icon-button {
  background:#eeeae4;
  flex-shrink:0;
}

.dialog-heading .eyebrow {
  font-size:11px;
}

.dialog-score {
  background:var(--ink);
  color:white;
  border-radius:12px;
  text-align:center;
  padding:20px;
  margin-bottom:20px;
}

.dialog-score strong {
  display:block;
  font-size:44px;
  line-height:1.3;
}

.dialog-score p {
  font-size:15px;
}

.dialog-score .status-tag {
  display:inline-block;
  margin-bottom:10px;
}

.dialog-note {
  color:var(--muted);
  font-size:14px;
  margin-top:20px;
}

.download-options {
  display:grid;
  gap:12px;
  margin-top:24px;
}

.download-options a {
  background:var(--orange);
  padding:14px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-radius:8px;
  font-weight:700;
  color:#11171b;
}

.download-options .unavailable {
  border:1px solid var(--line);
  border-radius:8px;
  padding:14px 18px;
  background:white;
}

.download-options .unavailable p {
  font-size:14px;
  color:var(--muted);
  margin-top:3px;
}

@media(min-width:1500px) {
  .intro {
    padding-top:28px;
    margin-bottom:30px;
  }
  .content-grid {
    grid-template-columns:minmax(0,1.72fr) minmax(0,1fr);
  }
}

@media(max-width:1150px) {
  .container {
    width:calc(100% - 56px);
  }
  .site-header {
    gap:20px;
  }
  .brand-type {
    font-size:35px;
  }
  .brand img {
    width:48px;
    height:48px;
  }
  .site-nav {
    gap:22px;
    font-size:14px;
  }
  .header-download {
    font-size:14px;
    padding-inline:16px;
  }
  .intro {
    gap:24px;
  }
  h1 {
    font-size:60px;
  }
  .intro-subtitle {
    font-size:20px;
  }
  .content-grid {
    grid-template-columns:minmax(0,1.65fr) minmax(0,1fr);
  }
  .live-card {
    padding:20px;
  }
  .match-main {
    gap:10px;
    grid-template-columns:minmax(0,1fr) minmax(130px,1.1fr) minmax(0,1fr);
  }
  .score {
    font-size:64px;
  }
  .team strong {
    font-size:15px;
  }
  .team-badge {
    width:60px;
    height:60px;
    font-size:40px;
  }
  .periods {
    font-size:10px;
  }
  .periods th,.periods td {
    padding:5px 4px;
  }
  .final-game {
    gap:10px;
    padding:19px 15px;
    grid-template-columns:52px minmax(0,1fr) auto minmax(0,1fr);
  }
  .mini-team {
    gap:8px;
    font-size:13px;
  }
  .mini-team .team-badge {
    width:36px;
    height:36px;
    font-size:25px;
  }
  .final-score {
    font-size:22px;
    letter-spacing:0;
  }
  .promo-copy {
    padding:22px 20px 0;
  }
  .promo-copy>p:not(.eyebrow) {
    font-size:16px;
  }
  .app-promo h2 {
    font-size:34px;
    letter-spacing:-1.5px;
  }
  .promo-download {
    min-width:0;
    width:100%;
  }
  .store-links {
    gap:7px;
  }
  .store-badge {
    padding:5px 7px;
    gap:5px;
  }
  .store-icon {
    width:20px;
  }
  .store-badge strong {
    font-size:15px;
  }
  .promo-photo {
    height:235px;
  }
  .tabs {
    max-width:520px;
  }
  .tabs button {
    padding-inline:14px;
  }
  .date-selector {
    min-width:250px;
    gap:2px;
  }
  .callout-note {
    display:none;
  }
}

@media(max-width:900px) {
  .header-download {
    display:none;
  }
  .site-nav {
    margin-left:auto;
  }
  .content-grid {
    grid-template-columns:minmax(0,1.5fr) minmax(0,1fr);
  }
  .intro h1 {
    font-size:52px;
  }
  .intro-subtitle {
    font-size:18px;
  }
  .search {
    width:280px;
  }
  .live-card {
    padding:18px;
  }
  .match-main {
    grid-template-columns:minmax(0,1fr) minmax(100px,1fr) minmax(0,1fr);
    gap:8px;
  }
  .score {
    font-size:55px;
  }
  .periods {
    display:none;
  }
  .team-badge {
    width:55px;
    height:55px;
    font-size:36px;
  }
  .team strong {
    font-size:14px;
  }
  .record {
    font-size:12px;
  }
  .match-meta {
    font-size:13px;
    margin-bottom:20px;
  }
  .live-label {
    font-size:14px;
  }
  .final-game {
    gap:9px;
    padding:18px 14px;
    grid-template-columns:45px minmax(0,1fr) auto minmax(0,1fr);
  }
  .mini-team .team-badge {
    display:none;
  }
  .final-score {
    font-size:21px;
  }
  .status-tag {
    padding:5px;
    font-size:12px;
  }
  .app-promo h2 {
    font-size:32px;
  }
  .promo-photo {
    height:210px;
  }
  .store-badge strong {
    font-size:14px;
  }
  .store-icon {
    width:18px;
  }
  .promo-copy {
    padding:20px 17px 0;
  }
  .app-promo .eyebrow {
    font-size:11px;
    letter-spacing:1.3px;
  }
  .tabs button {
    padding-inline:12px;
    font-size:14px;
  }
  .date-selector {
    min-width:224px;
  }
  .date-selector>span {
    gap:7px;
    font-size:14px;
  }
}

@media(max-width:740px) {
  .container {
    width:calc(100% - 40px);
  }
  .site-header {
    padding-block:20px 18px;
    position:relative;
    flex-wrap:wrap;
    gap:0;
  }
  .brand {
    gap:10px;
  }
  .brand img {
    width:45px;
    height:45px;
  }
  .brand-type {
    font-size:35px;
    padding-bottom:12px;
    letter-spacing:-2px;
  }
  .brand-type small {
    font-size:9px;
    letter-spacing:3px;
  }
  .menu-toggle {
    display:flex;
    width:44px;
    height:44px;
    background:transparent;
    border:0;
    padding:9px 6px;
    flex-direction:column;
    justify-content:space-between;
    border-radius:4px;
  }
  .menu-toggle span {
    height:3px;
    width:30px;
    border-radius:2px;
    background:var(--ink);
  }
  .site-nav {
    display:none;
    flex-basis:100%;
    order:3;
    gap:0;
    margin:18px 0 0;
    padding:8px 0;
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
    grid-template-columns:1fr 1fr;
  }
  .site-nav.is-open {
    display:grid;
  }
  .site-nav a {
    padding:12px;
    font-size:15px;
  }
  .intro {
    display:block;
    padding-top:18px;
    margin-bottom:20px;
  }
  .eyebrow {
    font-size:12px;
    letter-spacing:2px;
    margin-bottom:8px;
  }
  .intro h1 {
    font-size:clamp(36px,9.6vw,62px);
    letter-spacing:-2px;
    line-height:1.08;
  }
  .intro-subtitle {
    font-size:clamp(15px,3.8vw,20px);
    letter-spacing:-.35px;
    margin-top:8px;
  }
  .search {
    width:100%;
    max-width:none;
    margin:17px 0 0;
  }
  .search input {
    height:46px;
    font-size:16px;
    padding-left:42px;
  }
  .search>.icon {
    top:12px;
    left:13px;
    width:20px;
  }
  .toolbar {
    display:block;
    background:none;
    border:0;
    margin-bottom:12px;
  }
  .tabs {
    max-width:none;
    padding:3px;
    border:1px solid var(--line);
    background:#fff;
    border-radius:10px;
    gap:2px;
    margin-bottom:12px;
  }
  .tabs button {
    min-height:45px;
    padding:10px 8px;
    font-size:14px;
  }
  .date-selector {
    min-height:49px;
    width:100%;
    border:1px solid var(--line);
    background:white;
    border-radius:10px;
    padding-inline:5px;
  }
  .date-selector>span {
    font-size:15px;
    gap:11px;
  }
  .content-grid {
    grid-template-columns:minmax(0,1fr);
    gap:16px;
  }
  .live-card {
    border-radius:13px;
    padding:18px 14px 14px;
  }
  .match-meta {
    font-size:13px;
    margin-bottom:20px;
    padding-inline:3px;
  }
  .live-label {
    font-size:15px;
    gap:7px;
  }
  .live-label::before {
    width:9px;
    height:9px;
  }
  .match-main {
    grid-template-columns:minmax(0,1fr) minmax(90px,1.25fr) minmax(0,1fr);
    gap:7px;
  }
  .team-badge {
    width:52px;
    height:52px;
    font-size:36px;
  }
  .team strong {
    font-size:14px;
    line-height:1.2;
    max-width:112px;
  }
  .team {
    gap:6px;
  }
  .record {
    font-size:12px;
  }
  .score {
    font-size:clamp(44px,12vw,70px);
    letter-spacing:-1.5px;
    align-self:start;
    margin-top:15px;
  }
  .periods {
    display:none;
  }
  .live-card>.button {
    margin-top:17px;
    font-size:15px;
    min-height:47px;
  }
  .final-list {
    gap:10px;
    margin-top:10px;
  }
  .final-game {
    min-height:74px;
    padding:15px 12px;
    grid-template-columns:44px minmax(0,1fr) auto minmax(0,1fr);
    gap:10px;
    border-radius:12px;
  }
  .status-tag {
    font-size:12px;
    padding:5px;
  }
  .mini-team {
    font-size:14px;
    line-height:1.3;
    gap:6px;
  }
  .mini-team .team-badge {
    display:none;
  }
  .final-score {
    font-size:21px;
    letter-spacing:0;
  }
  .final-score .dash {
    padding-inline:2px;
  }
  .app-promo {
    border-radius:15px;
  }
  .promo-copy {
    padding:24px 23px 0;
  }
  .app-promo .eyebrow {
    font-size:11px;
    letter-spacing:2px;
  }
  .app-promo h2 {
    font-size:clamp(32px,9vw,50px);
    letter-spacing:-1.7px;
    line-height:1.04;
  }
  .promo-copy>p:not(.eyebrow) {
    font-size:16px;
    margin:9px 0 16px;
  }
  .promo-download {
    width:auto;
    min-width:220px;
    font-size:15px;
  }
  .store-links {
    gap:9px;
    margin-top:10px;
  }
  .store-badge {
    min-height:44px;
    gap:6px;
    padding:6px 9px;
  }
  .store-badge strong {
    font-size:17px;
  }
  .store-badge small {
    font-size:8px;
  }
  .store-icon {
    width:22px;
    height:26px;
  }
  .promo-photo {
    height:245px;
    object-position:50% 45%;
    margin-top:-4px;
    mask-image:linear-gradient(to bottom,transparent 0,#000 19%);
    -webkit-mask-image:linear-gradient(to bottom,transparent 0,#000 19%);
  }
  .league-callout {
    margin-top:14px;
    padding:14px 18px;
    gap:15px;
    border-radius:11px;
  }
  .league-callout>span:first-of-type {
    font-size:14px;
    padding-left:15px;
  }
  .league-callout>.icon {
    width:27px;
    height:27px;
  }
  .league-callout .icon {
    width:19px;
  }
  .site-footer {
    justify-content:center;
    padding-block:16px 23px;
    font-size:11px;
  }
  .site-footer>span,.site-footer>a {
    display:none;
  }
  .site-footer p span {
    padding-inline:3px;
  }
  .data-panel {
    padding:21px 15px;
    min-height:0;
  }
  .data-panel h2 {
    font-size:24px;
  }
  .table-caption {
    font-size:13px;
    margin-bottom:16px;
  }
  .stats-table {
    font-size:13px;
  }
  .stats-table thead th {
    font-size:11px;
  }
  .stats-table td,.stats-table th {
    padding:12px 6px;
  }
  .stats-table .optional-column {
    display:none;
  }
  .empty-state {
    padding:30px 18px;
  }
  .dialog-heading h2 {
    font-size:26px;
  }
  dialog {
    padding:23px 20px;
    border-radius:16px;
  }
  .dialog-score p {
    font-size:14px;
  }
  .dialog-score strong {
    font-size:40px;
  }
}

@media(max-width:360px) {
  .container {
    width:calc(100% - 28px);
  }
  .brand-type {
    font-size:31px;
  }
  .brand img {
    width:40px;
    height:40px;
  }
  .tabs button {
    font-size:13px;
    padding-inline:4px;
  }
  .final-game {
    gap:7px;
    padding-inline:10px;
    grid-template-columns:39px minmax(0,1fr) auto minmax(0,1fr);
  }
  .final-score {
    font-size:19px;
  }
  .mini-team {
    font-size:11px;
  }
  .promo-copy {
    padding-inline:19px;
  }
  .store-links {
    gap:7px;
  }
  .store-badge {
    padding-inline:7px;
  }
  .store-badge strong {
    font-size:16px;
  }
}

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

@media print {
  .site-header,.toolbar,.app-promo,.league-callout,.site-footer,dialog,.search {
    display:none;
  }
  .container {
    width:100%;
  }
  .content-grid {
    display:block;
  }
  .live-card {
    border:1px solid #aaa;
    print-color-adjust:exact;
  }
  body {
    background:white;
  }
}

