﻿    :root {
      --bg: #07111f;
      --bg-soft: #0f1d33;
      --panel: rgba(8, 18, 34, 0.72);
      --panel-strong: rgba(12, 25, 46, 0.9);
      --line: rgba(255, 255, 255, 0.12);
      --text: #f5f7fb;
      --muted: #a9b6ca;
      --gold: #f4c95d;
      --mint: #7ce0cf;
      --coral: #ff6f61;
      --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: "Segoe UI", "Noto Sans TC", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top left, rgba(124, 224, 207, 0.14), transparent 28%),
        radial-gradient(circle at top right, rgba(244, 201, 93, 0.12), transparent 32%),
        linear-gradient(180deg, #05101d 0%, #07111f 42%, #0a1628 100%);
      min-height: 100vh;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
      background-size: 64px 64px;
      mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.85));
      pointer-events: none;
    }

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

    img {
      max-width: 100%;
      display: block;
    }

    .page-shell {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .fifa-section-nav-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 24px 0 12px;
    }

    .fifa-section-brand {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
    }

    .fifa-section-brand-icon {
      width: 54px;
      height: 54px;
      border-radius: 18px;
      display: inline-grid;
      place-items: center;
      flex: 0 0 auto;
      background: linear-gradient(135deg, rgba(244, 201, 93, 0.16), rgba(255, 255, 255, 0.04));
      border: 1px solid rgba(244, 201, 93, 0.22);
      box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
    }

    .fifa-section-brand-icon svg {
      width: 34px;
      height: 34px;
      display: block;
    }

    .fifa-section-brand-text {
      display: flex;
      flex-direction: column;
      min-width: 0;
    }

    .fifa-section-brand-text strong {
      font-size: 1.08rem;
      letter-spacing: 0.08em;
      color: var(--text);
    }

    .fifa-section-brand-text small {
      color: var(--gold);
      font-size: 0.82rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .fifa-section-nav {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 22px;
      color: var(--muted);
      font-size: 0.95rem;
    }

    .fifa-section-nav a {
      color: var(--muted);
    }

    .fifa-section-nav a:hover {
      color: var(--text);
    }

    .hero {
      padding: 36px 0 56px;
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
      gap: 28px;
      align-items: stretch;
    }

    .hero-copy,
    .hero-side,
    .section-card,
    .schedule-card,
    .guide-card {
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    .hero-copy {
      padding: 42px;
      border-radius: 32px;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 35%),
        linear-gradient(160deg, rgba(7, 17, 31, 0.82), rgba(10, 22, 40, 0.96));
      position: relative;
      overflow: hidden;
    }

    .hero-copy::after {
      content: "";
      position: absolute;
      width: 280px;
      height: 280px;
      border-radius: 999px;
      right: -80px;
      top: -50px;
      background: radial-gradient(circle, rgba(255, 111, 97, 0.24), transparent 70%);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(124, 224, 207, 0.09);
      color: var(--mint);
      font-size: 0.88rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    h1 {
      margin: 20px 0 14px;
      font-size: clamp(2.8rem, 7vw, 5.6rem);
      line-height: 0.95;
      letter-spacing: -0.04em;
    }

    .hero-copy p {
      max-width: 640px;
      margin: 0 0 28px;
      color: var(--muted);
      font-size: 1.05rem;
      line-height: 1.8;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 30px;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 22px;
      border-radius: 999px;
      font-weight: 700;
      transition: transform 0.25s ease, background 0.25s ease;
    }

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

    .button-primary {
      background: linear-gradient(135deg, var(--gold), #ffe8a3);
      color: #08111f;
    }

    .button-secondary {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

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

    .hero-banner-wrap {
      margin: 0 0 28px;
    }

    .hero-banner {
      width: 100%;
      height: clamp(220px, 34vw, 320px);
      object-fit: cover;
      border-radius: 26px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
    }

    .countdown-badge {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 20px;
      border-radius: 22px;
      background: linear-gradient(180deg, rgba(18, 39, 52, 0.96), rgba(9, 22, 36, 0.96));
      border: 1px solid rgba(244, 201, 93, 0.18);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      box-shadow: 0 16px 36px rgba(0, 0, 0, 0.26);
    }

    .countdown-card {
      margin-bottom: 4px;
    }

    .countdown-badge strong {
      min-width: 56px;
      font-size: 2.25rem;
      line-height: 1;
      color: var(--gold);
      text-align: center;
    }

    .countdown-badge span {
      display: block;
      color: #e4ecf7;
      font-size: 0.98rem;
      font-weight: 700;
      line-height: 1.35;
    }

    .stat {
      padding: 18px;
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .stat strong {
      display: block;
      margin-bottom: 8px;
      font-size: 1.7rem;
      color: var(--gold);
    }

    .stat span {
      color: var(--muted);
      font-size: 0.92rem;
      line-height: 1.6;
    }

    .hero-side {
      border-radius: 32px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 40%),
        linear-gradient(180deg, rgba(13, 31, 53, 0.96), rgba(7, 17, 31, 0.95));
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .match-card {
      border-radius: 28px;
      padding: 24px;
      background:
        linear-gradient(160deg, rgba(124, 224, 207, 0.16), rgba(255, 255, 255, 0.02)),
        rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.08);
      min-height: 280px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .match-meta {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      color: var(--muted);
      font-size: 0.9rem;
    }

    .match-card h2 {
      margin: 16px 0 10px;
      font-size: 1.8rem;
      line-height: 1.2;
    }

    .match-intro {
      margin: 0;
      color: var(--muted);
      line-height: 1.8;
    }

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

    .match-row {
      display: grid;
      grid-template-columns: 86px 1fr auto;
      align-items: center;
      gap: 14px;
      padding: 14px 16px;
      border-radius: 18px;
      background: rgba(7, 17, 31, 0.46);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .match-day {
      font-size: 0.82rem;
      color: var(--mint);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .match-date {
      display: block;
      margin-top: 4px;
      color: var(--text);
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: normal;
      text-transform: none;
    }

    .match-teams b {
      display: block;
      font-size: 1rem;
      margin-bottom: 4px;
    }

    .match-teams span {
      color: var(--muted);
      font-size: 0.88rem;
    }

    .match-time {
      text-align: right;
    }

    .match-time strong {
      display: block;
      font-size: 1rem;
      color: var(--gold);
    }

    .match-time span {
      color: var(--muted);
      font-size: 0.82rem;
    }

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

    .quick-box {
      padding: 18px;
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .quick-box small {
      display: block;
      color: var(--muted);
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .quick-box strong {
      font-size: 1.15rem;
      line-height: 1.5;
    }

    .content {
      display: grid;
      gap: 22px;
      padding-bottom: 48px;
    }

    .section-card {
      border-radius: 28px;
      padding: 30px;
      background: linear-gradient(180deg, rgba(11, 24, 43, 0.9), rgba(8, 18, 34, 0.9));
    }

    .section-heading {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 22px;
    }

    .section-heading h3 {
      margin: 0;
      font-size: 1.6rem;
    }

    .section-heading p {
      margin: 8px 0 0;
      color: var(--muted);
      max-width: 620px;
      line-height: 1.7;
    }

    .highlight-grid,
    .host-grid,
    .team-grid,
    .guide-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .highlight-item,
    .host-item,
    .guide-card {
      border-radius: 22px;
      padding: 22px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.07);
    }

    .highlight-item {
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .news-media {
      position: relative;
      overflow: hidden;
      margin: -22px -22px 18px;
      border-radius: 22px 22px 0 0;
      aspect-ratio: 16 / 10;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(7, 17, 31, 0.28));
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .news-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .highlight-item strong,
    .host-item strong,
    .guide-card strong {
      display: block;
      margin-bottom: 10px;
      font-size: 1.1rem;
    }

    .news-meta {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 0 10px;
      border-radius: 999px;
      margin-bottom: 14px;
      background: rgba(244, 201, 93, 0.1);
      color: var(--gold);
      font-size: 0.8rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .news-link {
      display: inline-flex;
      align-items: center;
      margin-top: 16px;
      color: var(--mint);
      font-weight: 700;
    }

    .highlight-item p,
    .host-item p,
    .guide-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.75;
    }

    .host-item {
      min-height: 200px;
      position: relative;
      overflow: hidden;
    }

    .host-kicker {
      display: inline-flex;
      align-items: center;
      padding: 6px 10px;
      border-radius: 999px;
      margin-bottom: 12px;
      background: rgba(124, 224, 207, 0.08);
      color: var(--mint);
      font-size: 0.78rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .host-cities {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 16px 0 0;
    }

    .host-cities span {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 0 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.08);
      color: var(--text);
      font-size: 0.86rem;
    }

    .host-note {
      margin-top: 18px;
      padding-top: 16px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.7;
    }

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

    .team-card {
      border-radius: 22px;
      padding: 22px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.07);
    }

    .team-kicker {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 0 10px;
      border-radius: 999px;
      margin-bottom: 12px;
      background: rgba(255, 111, 97, 0.1);
      color: #ffb1a8;
      font-size: 0.78rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .team-card strong {
      display: block;
      margin-bottom: 10px;
      font-size: 1.08rem;
    }

    .team-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.75;
      font-size: 0.93rem;
    }

    .player-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 16px;
    }

    .player-tags span {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 0 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.08);
      color: var(--text);
      font-size: 0.84rem;
    }

    .host-item::after {
      content: "";
      position: absolute;
      inset: auto -40px -60px auto;
      width: 120px;
      height: 120px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(244, 201, 93, 0.18), transparent 70%);
    }

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

    .schedule-card {
      border-radius: 24px;
      padding: 24px;
      background: rgba(255, 255, 255, 0.04);
    }

    .video-card {
      overflow: hidden;
      display: flex;
      flex-direction: column;
      min-height: 100%;
    }

    .video-frame-shell {
      position: relative;
      overflow: hidden;
      margin: -24px -24px 18px;
      border-radius: 24px 24px 0 0;
      aspect-ratio: 16 / 9;
      background: #000;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .video-frame {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }

    .video-thumb-link {
      display: block;
      color: inherit;
      text-decoration: none;
    }

    .video-thumb-image {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: center;
      transition: transform 0.35s ease;
    }

    .video-thumb-overlay {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      background: linear-gradient(180deg, rgba(2, 6, 14, 0.08), rgba(2, 6, 14, 0.34));
      transition: background 0.25s ease;
    }

    .video-play-button {
      position: relative;
      width: 78px;
      height: 54px;
      border-radius: 18px;
      background: rgba(255, 34, 34, 0.95);
      box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
    }

    .video-play-button::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-38%, -50%);
      width: 0;
      height: 0;
      border-top: 12px solid transparent;
      border-bottom: 12px solid transparent;
      border-left: 20px solid #ffffff;
    }

    .video-thumb-link:hover .video-thumb-image {
      transform: scale(1.03);
    }

    .video-thumb-link:hover .video-thumb-overlay {
      background: linear-gradient(180deg, rgba(2, 6, 14, 0.02), rgba(2, 6, 14, 0.22));
    }

    .video-card strong {
      display: block;
      margin-bottom: 10px;
      font-size: 1.08rem;
    }

    .video-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.75;
    }

    .video-kicker {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 0 10px;
      border-radius: 999px;
      margin-bottom: 14px;
      background: rgba(124, 224, 207, 0.1);
      color: var(--mint);
      font-size: 0.8rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .guide-grid {
      grid-template-columns: 1fr;
      max-width: 760px;
      margin: 0 auto;
    }

    .faq-item {
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.07);
      overflow: hidden;
    }

    .faq-item + .faq-item {
      margin-top: 10px;
    }

    .faq-item summary {
      list-style: none;
      cursor: pointer;
      padding: 16px 18px;
      font-size: 0.98rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: "+";
      color: var(--gold);
      font-size: 1.2rem;
      line-height: 1;
      flex: 0 0 auto;
    }

    .faq-item[open] summary::after {
      content: "-";
    }

    .faq-answer {
      padding: 0 18px 16px;
      color: var(--muted);
      font-size: 0.94rem;
      line-height: 1.7;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .faq-answer p {
      margin: 12px 0 0;
    }

    .related-events {
      max-width: 980px;
      margin: 26px auto 0;
    }

    .related-events h4 {
      margin: 0 0 8px;
      font-size: 1.25rem;
    }

    .related-events p {
      margin: 0 0 16px;
      color: var(--muted);
      line-height: 1.7;
    }

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

    .event-card {
      padding: 18px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.07);
    }

    .event-date {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 0 10px;
      border-radius: 999px;
      margin-bottom: 12px;
      background: rgba(244, 201, 93, 0.1);
      color: var(--gold);
      font-size: 0.8rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .event-card strong {
      display: block;
      margin-bottom: 8px;
      font-size: 1rem;
    }

    .event-card p {
      margin: 0;
      color: var(--muted);
      font-size: 0.93rem;
      line-height: 1.7;
    }

    .site-footer {
      margin-top: 18px;
      padding: 28px 28px 24px;
      border-radius: 28px 28px 0 0;
      background:
        linear-gradient(180deg, rgba(14, 29, 50, 0.95), rgba(6, 14, 26, 0.98));
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: var(--shadow);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr 0.8fr;
      gap: 22px;
    }

    .footer-brand strong,
    .footer-links strong,
    .footer-meta strong {
      display: block;
      margin-bottom: 12px;
      font-size: 1rem;
      color: var(--text);
    }

    .footer-brand p,
    .footer-meta p {
      margin: 0;
      color: var(--muted);
      font-size: 0.93rem;
      line-height: 1.8;
    }

    .footer-links a {
      display: block;
      color: var(--muted);
      font-size: 0.93rem;
      line-height: 1.9;
    }

    .footer-bottom {
      margin-top: 20px;
      padding-top: 16px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      display: flex;
      justify-content: space-between;
      gap: 16px;
      color: var(--muted);
      font-size: 0.88rem;
    }

    @media (max-width: 980px) {
      .hero,
      .video-grid,
      .highlight-grid,
      .host-grid,
      .team-grid,
      .guide-grid {
        grid-template-columns: 1fr;
      }

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

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

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

      .footer-bottom {
        flex-direction: column;
      }
    }

    @media (max-width: 720px) {
      .page-shell {
        width: min(100% - 20px, 1180px);
      }

      .fifa-section-nav-wrap {
        flex-direction: column;
        align-items: flex-start;
      }

      .fifa-section-nav {
        flex-wrap: nowrap;
        gap: 12px;
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        width: 100%;
        padding-bottom: 4px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
      }

      .fifa-section-nav::-webkit-scrollbar {
        display: none;
      }

      .fifa-section-nav a {
        flex: 0 0 auto;
        white-space: nowrap;
      }

      .hero {
        padding-top: 20px;
      }

      .hero-copy,
      .hero-side,
      .section-card {
        padding: 22px;
        border-radius: 24px;
      }

      .hero-stats,
      .quick-grid {
        grid-template-columns: 1fr;
      }

      .countdown-badge {
        padding: 12px 16px;
        gap: 12px;
      }

      .match-row {
        grid-template-columns: 1fr;
        justify-items: start;
      }

      .match-time {
        text-align: left;
      }
    }

    @media (max-width: 560px) {
      .page-shell {
        width: min(100% - 16px, 1180px);
      }

      .fifa-section-nav-wrap {
        gap: 12px;
        padding: 16px 0 8px;
      }

      .fifa-section-brand {
        gap: 10px;
      }

      .fifa-section-brand-icon {
        width: 46px;
        height: 46px;
        border-radius: 14px;
      }

      .fifa-section-brand-icon svg {
        width: 28px;
        height: 28px;
      }

      .fifa-section-brand-text strong {
        font-size: 0.98rem;
      }

      .fifa-section-brand-text small,
      .fifa-section-nav {
        font-size: 0.76rem;
      }

      .hero {
        gap: 18px;
        padding: 14px 0 32px;
      }

      .hero-copy,
      .hero-side,
      .section-card,
      .schedule-card,
      .guide-card {
        padding: 18px;
        border-radius: 20px;
      }

      h1 {
        margin: 16px 0 12px;
        font-size: clamp(2rem, 10vw, 2.8rem);
        line-height: 1.02;
      }

      .hero-copy p,
      .section-heading p,
      .highlight-item p,
      .host-item p,
      .guide-card p,
      .team-card p,
      .match-intro {
        font-size: 0.94rem;
        line-height: 1.7;
      }

      .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        margin-bottom: 22px;
      }

      .button {
        width: 100%;
      }

      .hero-banner {
        height: 180px;
        border-radius: 18px;
      }

      .stat,
      .quick-box,
      .highlight-item,
      .host-item,
      .team-card,
      .guide-card,
      .match-card,
      .schedule-card {
        border-radius: 18px;
      }

      .hero-stats,
      .quick-grid,
      .highlight-grid,
      .host-grid,
      .team-grid,
      .guide-grid,
      .video-grid {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .countdown-badge {
        padding: 12px 14px;
        border-radius: 18px;
      }

      .countdown-badge strong {
        min-width: 48px;
        font-size: 1.9rem;
      }

      .match-card h2,
      .section-heading h3 {
        font-size: 1.35rem;
      }

      .match-row {
        padding: 12px 14px;
        border-radius: 14px;
        gap: 10px;
      }

      .match-day,
      .match-time span,
      .match-teams span,
      .host-cities span,
      .player-tags span,
      .news-meta {
        font-size: 0.78rem;
      }

      .video-frame-shell,
      .news-media {
        border-radius: 18px 18px 0 0;
      }

      .footer-grid {
        gap: 12px;
      }

      .footer-bottom {
        font-size: 0.82rem;
      }
    }
