/* ========== Reset & Base ========== */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      background: #000;
      color: #fff;
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button {
      font-family: inherit;
      cursor: pointer;
      border: none;
      background: none;
      color: inherit;
    }

    :root {
      --red: #e11d2a;
      --red-bright: #ff1f2e;
      --red-dark: #b81421;
      --bg: #000;
      --bg-card: #0e0e0e;
      --bg-card-2: #141414;
      --border: rgba(255, 255, 255, 0.08);
      --text-dim: #9aa0a6;
      --text-mute: #6b7280;
      --container: 1540px;
    }

    img.logomain {
      height: 60px;
    }

    .container {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ========== Header ========== */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(0, 0, 0, 0.85);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 90px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo-mark {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }

    .logo-mark svg {
      width: 100%;
      height: 100%;
      display: block;
    }

    .logo-text {
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      letter-spacing: 1.5px;
      color: var(--red);
      font-size: 15px;
      line-height: 1;
      text-transform: uppercase;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 36px;
    }

    .nav a {
      font-size: 14px;
      font-weight: 500;
      color: #e5e7eb;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: color .2s;
    }

    .nav a:hover {
      color: var(--red);
    }

    .nav .caret {
      width: 8px;
      height: 8px;
      border-right: 1.5px solid currentColor;
      border-bottom: 1.5px solid currentColor;
      transform: rotate(45deg) translateY(-2px);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 12px 22px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 14px;
      transition: transform .15s ease, background .2s ease, border-color .2s ease;
      white-space: nowrap;
    }

    .btn:hover {
      transform: translateY(-1px);
    }

    .btn-red {
      background: var(--red);
      color: #fff;
      border: 1px solid var(--red);
    }

    .btn-red:hover {
      background: var(--red-bright);
    }

    .btn-ghost {
      background: transparent;
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.18);
    }

    .btn-ghost:hover {
      border-color: rgba(255, 255, 255, 0.4);
      background: rgba(255, 255, 255, 0.04);
    }

    .btn-cal {
      padding: 10px 18px;
      font-size: 13px;
    }

    .mobile-toggle {
      display: none;
      background: transparent;
      padding: 8px;
    }

    .mobile-toggle span {
      display: block;
      width: 22px;
      height: 2px;
      background: #fff;
      margin: 4px 0;
    }

    /* ========== Hero ========== */
    .hero {
      position: relative;
      overflow: hidden;
      padding: 64px 0 80px;
      background:
        radial-gradient(900px 600px at 80% 30%, rgba(225, 29, 42, 0.18), transparent 60%),
        radial-gradient(700px 500px at 10% 90%, rgba(225, 29, 42, 0.08), transparent 60%),
        #000;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(115deg, transparent 55%, rgba(225, 29, 42, 0.25) 70%, transparent 90%);
      mix-blend-mode: screen;
      opacity: .55;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .hero h1 {
      font-family: 'Oswald', sans-serif;
      font-weight: 700;
      font-size: clamp(48px, 6.2vw, 88px);
      line-height: 1;
      letter-spacing: -1px;
      text-transform: uppercase;
    }

    .hero h1 .red {
      color: var(--red);
    }

    .hero p.lead {
      margin-top: 24px;
      max-width: 520px;
      color: #cbd0d6;
      font-size: 16px;
    }

    .hero-cta {
      display: flex;
      gap: 14px;
      margin-top: 32px;
      flex-wrap: wrap;
    }

    /* ========== Hero Visual (grid composite) ========== */
    .hero-visual {
      position: relative;
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      grid-template-rows: 150px 150px 100px 80px;
      gap: 10px;
      padding: 16px;
      border-radius: 14px;
      isolation: isolate;
    }

    .hero-visual::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      border-radius: 14px;
      background: #000;
    }

    .hero-visual::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      border-radius: 14px;
      background:
        linear-gradient(115deg, transparent 60%, rgba(225, 29, 42, 0.35) 75%, transparent 95%),
        radial-gradient(420px 240px at 75% 95%, rgba(225, 29, 42, 0.4), transparent 70%),
        radial-gradient(380px 200px at 25% 5%, rgba(225, 29, 42, 0.25), transparent 65%);
      mix-blend-mode: screen;
    }

    /* generic card style */
    .hv-card {
      position: relative;
      background: #0d0d0d;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 8px;
      box-shadow: 0 14px 36px rgba(0, 0, 0, 0.7);
      overflow: hidden;
    }

    /* Grid placement */
    .hv-live {
      grid-column: 1 / 5;
      grid-row: 1 / 3;
    }

    .hv-player {
      grid-column: 5 / 7;
      grid-row: 1 / 3;
    }

    .hv-board {
      grid-column: 1 / 3;
      grid-row: 3 / 5;
    }

    .hv-sponsors {
      grid-column: 3 / 5;
      grid-row: 3;
    }

    .hv-court {
      grid-column: 3 / 5;
      grid-row: 4;
    }

    .hv-score {
      grid-column: 5 / 7;
      grid-row: 3;
    }

    .hv-go {
      grid-column: 5 / 7;
      grid-row: 4;
    }

    /* LIVE stream */
    .hv-live .feed {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 65%, rgba(0, 0, 0, 0.65) 100%),
        url('../images/hero-live-feed.png') center/cover, #1a1a1a;
    }

    .hv-live .live-tag {
      position: absolute;
      top: 14px;
      left: 14px;
      background: var(--red);
      color: #fff;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 1.5px;
      padding: 6px 12px;
      border-radius: 3px;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      z-index: 2;
    }

    .hv-live .live-tag::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #fff;
      animation: blink 1.4s infinite;
    }

    @keyframes blink {
      50% {
        opacity: .3
      }
    }

    .hv-live .player-bar {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 10px 14px 12px;
      display: flex;
      align-items: center;
      gap: 12px;
      background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.92));
      font-size: 11px;
      color: #e5e7eb;
      z-index: 2;
    }

    .pb-progress {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 38px;
      height: 3px;
      background: rgba(255, 255, 255, 0.18);
    }

    .pb-progress::after {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 35%;
      background: linear-gradient(90deg, #ff6a00, var(--red));
      border-radius: 0 2px 2px 0;
    }

    .pb-progress::before {
      content: "";
      position: absolute;
      left: 35%;
      top: 50%;
      width: 10px;
      height: 10px;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      background: var(--red);
      box-shadow: 0 0 0 2px rgba(225, 29, 42, 0.3);
    }

    .pb-ctrls {
      display: flex;
      align-items: center;
      gap: 10px;
      flex: 1;
    }

    .pb-ctrls .ic {
      color: #fff;
      opacity: 0.9;
      display: inline-flex;
      cursor: pointer;
    }

    .pb-ctrls .ic svg {
      width: 14px;
      height: 14px;
    }

    .pb-time {
      font-family: 'Inter', sans-serif;
      font-size: 10px;
      color: #cfd3d8;
      letter-spacing: 0.5px;
    }

    .pb-right {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .pb-right .ic svg {
      width: 13px;
      height: 13px;
    }

    .play-btn-lg {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: #fff;
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }

    .play-btn-lg svg {
      width: 10px;
      height: 10px;
    }

    /* Player Highlight - image contains its own header, name, and stats */
    .hv-player {
      padding: 0;
      position: relative;
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0.85) 100%),
        url('../images/hero-player-highlight.png') center/cover, #0a0a0a;
    }

    .hv-player .watch-btn {
      position: absolute;
      left: 10px;
      right: 10px;
      bottom: 10px;
      background: var(--red);
      color: #fff;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 1.2px;
      padding: 8px;
      text-align: center;
      border-radius: 4px;
      text-transform: uppercase;
      z-index: 2;
    }

    /* Leaderboard */
    .hv-board {
      padding: 10px 12px;
      display: flex;
      flex-direction: column;
    }

    .hv-board .title {
      font-size: 10px;
      color: #9aa0a6;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      margin-bottom: 4px;
      display: flex;
      justify-content: space-between;
      font-weight: 700;
    }

    .hv-board ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      flex: 1;
      justify-content: space-around;
    }

    .hv-board li {
      display: grid;
      grid-template-columns: 14px 22px 1fr auto;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      color: #e5e7eb;
      padding: 2px 0;
    }

    .hv-board .rank {
      font-family: 'Oswald', sans-serif;
      font-weight: 700;
      color: #e5e7eb;
      font-size: 12px;
    }

    .hv-board li:first-child .rank {
      color: var(--red);
    }

    .hv-board .av {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: #444;
      background-size: cover;
      background-position: center;
    }

    .hv-board .pts {
      font-family: 'Oswald', sans-serif;
      font-weight: 700;
      font-size: 12px;
    }

    .hv-board .pts .big {
      color: var(--red);
    }

    .hv-board .pts .small {
      color: #cbd0d6;
      font-size: 9px;
      margin-left: 1px;
    }

    /* Sponsors strip */
    .hv-sponsors {
      padding: 8px 12px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 8px;
    }

    .hv-sponsors .tag {
      font-size: 9px;
      color: #cbd0d6;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      text-align: center;
      font-weight: 700;
    }

    .hv-sponsors .row {
      display: flex;
      align-items: center;
      justify-content: space-around;
      gap: 8px;
    }

    .hv-sponsors .row .logo-item {
      display: flex;
      align-items: center;
      gap: 6px;
      color: #fff;
      font-weight: 700;
    }

    .hv-sponsors .row .logo-item svg {
      width: 16px;
      height: 16px;
    }

    .hv-sponsors .row .logo-item .nm {
      font-size: 12px;
      letter-spacing: 0.5px;
    }

    /* Court mini */
    .hv-court {
      background: url('../images/hero-court-mini.svg') center/cover, #2a1810;
    }

    /* Scoreboard */
    .hv-score {
      padding: 8px 12px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .scoreboard-grid {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 8px;
    }

    .scoreboard-grid .side {
      text-align: center;
    }

    .scoreboard-grid .side .lbl {
      font-size: 9px;
      letter-spacing: 1.4px;
      color: #9aa0a6;
      font-weight: 700;
    }

    .scoreboard-grid .side .num {
      font-family: 'Oswald', sans-serif;
      font-weight: 700;
      font-size: 30px;
      line-height: 1;
      color: #fff;
      margin-top: 2px;
    }

    .scoreboard-grid .clock {
      color: #fbbf24;
      font-family: 'Oswald', sans-serif;
      font-weight: 700;
      background: #000;
      padding: 5px 10px;
      border-radius: 3px;
      font-size: 14px;
      text-align: center;
      line-height: 1;
      border: 1px solid rgba(251, 191, 36, 0.3);
    }

    .scoreboard-grid .clock small {
      display: block;
      font-size: 7px;
      letter-spacing: 1.2px;
      color: #fcd34d;
      margin-top: 3px;
    }

    .extra-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      margin-top: 8px;
      font-size: 8px;
      color: #9aa0a6;
      letter-spacing: 1px;
      gap: 4px;
      padding-top: 6px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .extra-row span {
      text-align: center;
      font-weight: 600;
    }

    .extra-row span b {
      color: var(--red);
      font-family: 'Oswald', sans-serif;
      font-size: 13px;
      display: block;
      font-weight: 700;
      margin-top: 1px;
    }

    /* LET'S GO button */
    .hv-go {
      display: grid;
      place-items: center;
      background: #060606;
      border: 1.5px solid var(--red);
      box-shadow: 0 0 22px rgba(225, 29, 42, 0.55), inset 0 0 22px rgba(225, 29, 42, 0.35);
    }

    .hv-go span {
      font-family: 'Oswald', sans-serif;
      font-weight: 700;
      font-size: 26px;
      letter-spacing: 2px;
      color: var(--red);
      text-shadow: 0 0 10px rgba(225, 29, 42, 0.9), 0 0 22px rgba(225, 29, 42, 0.45);
    }

    /* ========== Section general ========== */
    .section {
      padding: 90px 0;
      position: relative;
    }

    .section-title {
      text-align: center;
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: clamp(28px, 3vw, 38px);
      margin-bottom: 40px;
    }

    /* ========== What We Do ========== */
    .grid-4 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .feat-card {
      background: linear-gradient(180deg, #0f0f0f, #060606);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 28px 22px 30px;
      position: relative;
      transition: transform .2s, border-color .2s;
    }

    .feat-card::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--red), transparent);
    }

    .feat-card:hover {
      transform: translateY(-3px);
      border-color: rgba(225, 29, 42, 0.4);
    }

    .feat-icon {
      width: 44px;
      height: 44px;
      border-radius: 6px;
      background: rgba(225, 29, 42, 0.1);
      display: grid;
      place-items: center;
      margin-bottom: 18px;
      color: var(--red);
    }

    .feat-icon svg {
      width: 24px;
      height: 24px;
    }

    .feat-card h3 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .feat-card p {
      font-size: 13.5px;
      color: #b9bec5;
      line-height: 1.55;
    }

    /* ========== Who We Help ========== */
    .who-card {
      position: relative;
      border-radius: 8px;
      overflow: hidden;
      aspect-ratio: 5/4;
      transition: transform .25s ease;
    }

    .who-card:hover {
      transform: translateY(-3px);
    }

    .who-card .photo {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
    }

    .who-card .photo::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.55) 50%, rgba(0, 0, 0, 0.95) 100%);
    }

    .who-card .content {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 20px;
    }

    .who-card .play-icon {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 1.5px solid var(--red);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 10px;
      color: var(--red);
    }

    .who-card .play-icon::after {
      content: "";
      width: 0;
      height: 0;
      border-left: 7px solid var(--red);
      border-top: 5px solid transparent;
      border-bottom: 5px solid transparent;
      margin-left: 2px;
    }

    .who-card h3 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .who-card p {
      font-size: 13px;
      color: #d1d5db;
      line-height: 1.55;
    }

    /* ========== Featured Services ========== */
    .grid-6 {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 14px;
    }

    .svc-card {
      background: #0c0c0c;
      border: 1px solid var(--border);
      border-radius: 6px;
      overflow: hidden;
      transition: transform .2s, border-color .2s;
    }

    .svc-card:hover {
      transform: translateY(-3px);
      border-color: rgba(225, 29, 42, 0.5);
    }

    .svc-card .thumb {
      aspect-ratio: 4/3;
      background-size: cover;
      background-position: center;
    }

    .svc-card .body {
      padding: 12px 14px 16px;
    }

    .svc-card h4 {
      font-size: 13.5px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
    }

    .svc-card h4 .arrow {
      color: var(--red);
      font-size: 14px;
    }

    /* ========== Built for the modern sports experience ========== */
    .modern-wrap {
      display: grid;
      grid-template-columns: 0.85fr 1.4fr;
      gap: 40px;
      align-items: center;
    }

    .modern-wrap h2 {
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: clamp(28px, 3vw, 40px);
      line-height: 1.15;
      margin-bottom: 18px;
    }

    .modern-wrap p {
      color: #c5cad1;
      max-width: 380px;
    }

    .modern-visual {
      position: relative;
      height: 320px;
    }

    .mv-tablet {
      position: absolute;
      border-radius: 14px;
      overflow: hidden;
      border: 4px solid #1a1a1a;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
      background: #000;
    }

    .mv-tablet.scoreboard {
      left: 0;
      top: 30px;
      width: 28%;
      aspect-ratio: 5/4;
      padding: 16px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background: #0d0d0d;
    }

    .mv-tablet.scoreboard .head {
      font-size: 10px;
      letter-spacing: 1.5px;
      color: #c5cad1;
      text-align: center;
    }

    .mv-tablet.scoreboard .scores {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 8px;
      align-items: center;
    }

    .mv-tablet.scoreboard .scores .side .lbl {
      font-size: 9px;
      color: #9aa0a6;
      letter-spacing: 1px;
      text-align: center;
    }

    .mv-tablet.scoreboard .scores .side .num {
      font-family: 'Oswald', sans-serif;
      font-weight: 700;
      font-size: 38px;
      line-height: 1;
      text-align: center;
    }

    .mv-tablet.scoreboard .scores .clock {
      background: #000;
      color: #fbbf24;
      font-family: 'Oswald', sans-serif;
      font-weight: 700;
      font-size: 16px;
      padding: 6px 10px;
      border-radius: 4px;
      text-align: center;
    }

    .mv-tablet.scoreboard .scores .clock small {
      display: block;
      font-size: 8px;
      letter-spacing: 1px;
      color: #fcd34d;
    }

    .mv-tablet.scoreboard .btn-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 4px;
    }

    .mv-tablet.scoreboard .btn-row span {
      background: #1a1a1a;
      padding: 6px 0;
      text-align: center;
      border-radius: 3px;
      font-size: 10px;
      color: #fff;
      font-family: 'Oswald', sans-serif;
    }

    .mv-tablet.scoreboard .btn-row.bot span {
      background: #1a1a1a;
      color: #9aa0a6;
      font-size: 9px;
    }

    .mv-tablet.scoreboard .reset {
      font-size: 9px;
      color: #9aa0a6;
      letter-spacing: 1.5px;
      text-align: center;
      margin-top: 4px;
    }

    .mv-tablet.video {
      left: 26%;
      top: 0;
      width: 30%;
      aspect-ratio: 4/5;
      background:
        linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.65) 100%),
        url('../images/hero-live-feed.png') center/cover, #0a0a0a;
    }

    .mv-tablet.video .live-tag {
      position: absolute;
      top: 12px;
      left: 12px;
      background: var(--red);
      color: #fff;
      padding: 3px 7px;
      font-size: 9px;
      font-weight: 800;
      letter-spacing: 1px;
      border-radius: 2px;
    }

    .mv-tablet.video .scorestrip {
      position: absolute;
      bottom: 12px;
      left: 12px;
      right: 12px;
      background: rgba(0, 0, 0, 0.7);
      border-radius: 4px;
      padding: 6px 8px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-family: 'Oswald', sans-serif;
      font-size: 12px;
    }

    .mv-tablet.video .scorestrip .clock {
      color: #fbbf24;
      font-size: 11px;
    }

    /* Leaderboard tablet (uses full image with built-in frame) */
    .mv-tablet.leaderboard {
      left: 58%;
      top: 30px;
      width: 22%;
      aspect-ratio: 5/6;
      background: url('../images/tablet-leaderboard.png') center/contain no-repeat;
      border: none;
      box-shadow: none;
    }

    /* Team Site tablet (uses full image with built-in frame) */
    .mv-tablet.teamsite {
      left: 82%;
      top: 30px;
      width: 18%;
      aspect-ratio: 5/8;
      background: url('../images/tablet-teamsite.png') center/contain no-repeat;
      border: none;
      box-shadow: none;
    }

    /* ========== Final CTA ========== */
    .cta-band {
      padding: 70px 0 80px;
      text-align: center;
      background:
        linear-gradient(180deg, rgba(225, 29, 42, 0.06), rgba(0, 0, 0, 0));
    }

    .cta-band h2 {
      font-size: clamp(24px, 2.5vw, 32px);
      font-weight: 700;
      margin-bottom: 28px;
    }

    .cta-band .row {
      display: inline-flex;
      gap: 14px;
      flex-wrap: wrap;
      justify-content: center;
    }

    /* ========== Footer ========== */
    .footer {
      background: #050505;
      border-top: 1px solid var(--border);
      padding: 60px 0 26px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr;
      gap: 36px;
    }

    .footer h5 {
      font-size: 11px;
      letter-spacing: 2px;
      color: #fff;
      text-transform: uppercase;
      margin-bottom: 16px;
      font-weight: 700;
    }

    .footer ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer a {
      font-size: 13px;
      color: #b9bec5;
      transition: color .2s;
    }

    .footer a:hover {
      color: var(--red);
    }

    .footer .brand p {
      color: #9aa0a6;
      font-size: 13px;
      max-width: 260px;
      margin-top: 14px;
      line-height: 1.6;
    }

    .socials {
      display: flex;
      gap: 10px;
      margin-top: 22px;
    }

    .socials a {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.15);
      display: inline-grid;
      place-items: center;
      transition: border-color .2s, background .2s;
    }

    .socials a:hover {
      border-color: var(--red);
      background: rgba(225, 29, 42, 0.1);
    }

    .socials svg {
      width: 13px;
      height: 13px;
      color: #b9bec5;
    }

    .footer .contact p {
      font-size: 13px;
      color: #b9bec5;
      margin-bottom: 6px;
    }

    .footer .contact .email {
      margin-top: 16px;
      font-size: 13px;
      color: #b9bec5;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .footer-bottom {
      margin-top: 40px;
      padding-top: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      color: #6b7280;
      border-top: 1px solid var(--border);
    }

    .footer-bottom .legal {
      display: flex;
      gap: 22px;
    }

    /* ========== Responsive ========== */
    @media (max-width: 1024px) {
      .grid-6 {
        grid-template-columns: repeat(3, 1fr);
      }

      .grid-4 {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
      }

      .footer .brand {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 860px) {
      .nav {
        display: none;
      }

      .mobile-toggle {
        display: block;
      }

      .header-actions .btn-cal {
        display: none;
      }

      .hero {
        padding: 40px 0 60px;
      }

      .hero-grid {
        grid-template-columns: 1fr;
      }

      .modern-wrap {
        grid-template-columns: 1fr;
      }

      .modern-visual {
        height: 260px;
      }

      .section {
        padding: 60px 0;
      }
    }

    @media (max-width: 640px) {
      .grid-6 {
        grid-template-columns: repeat(2, 1fr);
      }

      .grid-4 {
        grid-template-columns: 1fr 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 12px;
      }

      .hero h1 {
        font-size: 48px;
      }

      .hero-visual {
        grid-template-rows: 110px 110px 78px 62px;
        gap: 8px;
        padding: 10px;
      }

      .hv-go span {
        font-size: 18px;
      }

      .scoreboard-grid .side .num {
        font-size: 22px;
      }

      .hv-player .name-tag {
        font-size: 12px;
        bottom: 58px;
      }

      .modern-visual {
        height: 220px;
      }

      .mv-tablet.scoreboard .scores .side .num {
        font-size: 26px;
      }
    }

    @media (max-width: 480px) {
      .grid-4 {
        grid-template-columns: 1fr;
      }

      .hero-visual {
        grid-template-rows: 90px 90px 70px 56px;
      }

      .hv-board li {
        font-size: 9px;
      }

      .hv-player .name-tag {
        font-size: 11px;
        bottom: 52px;
      }

      .hv-player .stats .num {
        font-size: 13px;
      }

      .scoreboard-grid .side .num {
        font-size: 20px;
      }

      .hv-go span {
        font-size: 15px;
      }
    }