/* ═══════════════════════════════════════════════
       CSS VARIABLES — Design Tokens
    ═══════════════════════════════════════════════ */
    :root {
      --color-green-primary: #006847;
      --color-green-dark: #004d34;
      --color-green-deeper: #0a1a0f;
      --color-green-glow: rgba(0, 104, 71, 0.4);
      --color-red: #CE1126;
      --color-red-dark: #a50e1f;
      --color-gold: #FFD700;
      --color-gold-dim: rgba(255, 215, 0, 0.15);
      --color-white: #FFFFFF;
      --color-off-white: #f5f7f5;
      --color-text-dark: #1a1a1a;
      --color-text-muted: #6b7280;
      --color-text-light: #e5e7eb;
      --color-bg-card: rgba(255,255,255,0.05);
      --color-bg-card-light: #ffffff;
      --color-border: rgba(0, 104, 71, 0.3);
      --color-border-light: #e5e7eb;

      --font-display: 'Bebas Neue', sans-serif;
      --font-body: 'Inter', sans-serif;

      --space-xs: 0.5rem;
      --space-sm: 1rem;
      --space-md: 1.5rem;
      --space-lg: 2rem;
      --space-xl: 3rem;
      --space-2xl: 5rem;

      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 16px;
      --radius-xl: 24px;

      --shadow-sm: 0 2px 8px rgba(0,0,0,0.15);
      --shadow-md: 0 8px 24px rgba(0,0,0,0.25);
      --shadow-lg: 0 16px 48px rgba(0,0,0,0.35);
      --shadow-glow: 0 0 30px rgba(0, 104, 71, 0.5);
      --shadow-glow-gold: 0 0 20px rgba(255, 215, 0, 0.3);

      --transition-fast: 0.2s ease;
      --transition-medium: 0.35s ease;
      --transition-slow: 0.5s ease;
    }

    /* ═══════════════════════════════════════════════
       RESET & BASE
    ═══════════════════════════════════════════════ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      background: var(--color-green-deeper);
      color: var(--color-white);
      line-height: 1.6;
      overflow-x: hidden;
    }
    img { max-width: 100%; height: auto; }
    a { color: inherit; text-decoration: none; }

    /* ═══════════════════════════════════════════════
       SCROLLBAR
    ═══════════════════════════════════════════════ */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--color-green-deeper); }
    ::-webkit-scrollbar-thumb { background: var(--color-green-primary); border-radius: 3px; }

    /* ═══════════════════════════════════════════════
       NAVIGATION
    ═══════════════════════════════════════════════ */
    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: rgba(10, 26, 15, 0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--color-border);
      padding: var(--space-sm) var(--space-lg);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: var(--space-xs);
      font-family: var(--font-display);
      font-size: 1.4rem;
      letter-spacing: 1px;
      color: var(--color-white);
    }
    .nav-logo .ball { font-size: 1.2rem; }
    .nav-logo span { color: var(--color-gold); }
    .nav-links { display: flex; gap: var(--space-md); align-items: center; }
    .nav-links a {
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--color-text-light);
      transition: color var(--transition-fast);
      padding: var(--space-xs);
    }
    .nav-links a:hover { color: var(--color-gold); }
    @media (max-width: 600px) { .nav-links { display: none; } }

    /* ═══════════════════════════════════════════════
       BACKGROUND PARTICLES (CSS only)
    ═══════════════════════════════════════════════ */
    .particles {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
    }
    .particle {
      position: absolute;
      width: 4px; height: 4px;
      border-radius: 50%;
      background: var(--color-gold);
      opacity: 0;
      animation: float-particle linear infinite;
    }
    .particle:nth-child(1)  { left: 10%; animation-duration: 8s;  animation-delay: 0s;   width: 3px; height: 3px; }
    .particle:nth-child(2)  { left: 20%; animation-duration: 12s; animation-delay: 1s;   width: 5px; height: 5px; opacity: 0.4; }
    .particle:nth-child(3)  { left: 30%; animation-duration: 9s;  animation-delay: 2s;   }
    .particle:nth-child(4)  { left: 40%; animation-duration: 15s; animation-delay: 0.5s; width: 2px; height: 2px; }
    .particle:nth-child(5)  { left: 50%; animation-duration: 11s; animation-delay: 3s;   }
    .particle:nth-child(6)  { left: 60%; animation-duration: 7s;  animation-delay: 1.5s; width: 6px; height: 6px; }
    .particle:nth-child(7)  { left: 70%; animation-duration: 13s; animation-delay: 4s;   width: 3px; height: 3px; }
    .particle:nth-child(8)  { left: 80%; animation-duration: 10s; animation-delay: 2.5s; }
    .particle:nth-child(9)  { left: 90%; animation-duration: 14s; animation-delay: 0.8s; width: 2px; height: 2px; }
    .particle:nth-child(10) { left: 15%; animation-duration: 9s;  animation-delay: 5s;   }
    .particle:nth-child(11) { left: 45%; animation-duration: 16s; animation-delay: 1.2s; background: var(--color-green-primary); }
    .particle:nth-child(12) { left: 75%; animation-duration: 11s; animation-delay: 3.5s; background: #fff; width: 2px; height: 2px; }

    @keyframes float-particle {
      0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
      5%   { opacity: 0.6; }
      95%  { opacity: 0.3; }
      100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
    }

    /* ═══════════════════════════════════════════════
       HERO SECTION
    ═══════════════════════════════════════════════ */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 5rem var(--space-md) var(--space-2xl);
      overflow: hidden;
      background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,104,71,0.35) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(206,17,38,0.1) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 20% 50%, rgba(0,77,52,0.25) 0%, transparent 70%),
        var(--color-green-deeper);
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23006847' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      pointer-events: none;
    }
    .hero-stadium-lines {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 200px;
      background: repeating-linear-gradient(
        90deg,
        transparent 0px,
        transparent 38px,
        rgba(0,104,71,0.08) 38px,
        rgba(0,104,71,0.08) 40px
      );
      mask-image: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
      -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: var(--space-xs);
      background: var(--color-gold-dim);
      border: 1px solid rgba(255,215,0,0.4);
      color: var(--color-gold);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 0.4rem 1rem;
      border-radius: 50px;
      margin-bottom: var(--space-md);
      animation: pulse-badge 2s ease-in-out infinite;
    }
    @keyframes pulse-badge {
      0%, 100% { box-shadow: 0 0 0 0 rgba(255,215,0,0.3); }
      50% { box-shadow: 0 0 0 8px rgba(255,215,0,0); }
    }

    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(2.8rem, 8vw, 6.5rem);
      line-height: 1;
      text-align: center;
      letter-spacing: 2px;
      margin-bottom: var(--space-sm);
      position: relative;
    }
    .hero-title .line1 { color: var(--color-white); display: block; }
    .hero-title .line2 {
      color: var(--color-gold);
      display: block;
      text-shadow: 0 0 40px rgba(255,215,0,0.4);
    }
    .hero-title .line3 { color: var(--color-green-primary); display: block; font-size: 0.6em; letter-spacing: 6px; }

    .hero-subtitle {
      font-size: clamp(0.85rem, 2vw, 1.1rem);
      color: var(--color-text-light);
      text-align: center;
      margin-bottom: var(--space-xl);
      font-weight: 400;
      opacity: 0.85;
    }

    /* ═══════════════════════════════════════════════
       MAIN COUNTDOWN
    ═══════════════════════════════════════════════ */
    .countdown-main {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      gap: 0;
      margin-bottom: var(--space-md);
      position: relative;
    }

    .countdown-unit {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 0 clamp(0.6rem, 2vw, 1.4rem);
      position: relative;
    }
    .countdown-unit:not(:last-child)::after {
      content: ':';
      position: absolute;
      right: -10px;
      top: 0;
      font-family: var(--font-display);
      font-size: clamp(3.5rem, 10vw, 8rem);
      line-height: 1;
      color: var(--color-green-primary);
      opacity: 0.7;
    }

    .countdown-number {
      font-family: var(--font-display);
      font-size: clamp(4.5rem, 14vw, 10rem);
      line-height: 1;
      color: var(--color-white);
      text-shadow:
        0 0 30px rgba(0,104,71,0.6),
        0 0 60px rgba(0,104,71,0.3),
        0 2px 4px rgba(0,0,0,0.5);
      transition: transform 0.1s;
      min-width: clamp(3.5rem, 10vw, 7rem);
      text-align: center;
      display: block;
      animation: subtle-pulse 3s ease-in-out infinite;
    }
    @keyframes subtle-pulse {
      0%, 100% { text-shadow: 0 0 30px rgba(0,104,71,0.6), 0 0 60px rgba(0,104,71,0.3), 0 2px 4px rgba(0,0,0,0.5); }
      50% { text-shadow: 0 0 50px rgba(0,104,71,0.9), 0 0 80px rgba(0,104,71,0.5), 0 2px 4px rgba(0,0,0,0.5); }
    }

    .countdown-number.flip {
      animation: flip-anim 0.4s ease;
    }
    @keyframes flip-anim {
      0%   { transform: rotateX(0deg) scale(1); }
      30%  { transform: rotateX(-90deg) scale(0.95); color: var(--color-gold); }
      70%  { transform: rotateX(30deg) scale(1.05); }
      100% { transform: rotateX(0deg) scale(1); }
    }

    .countdown-label {
      font-size: clamp(0.55rem, 1.5vw, 0.75rem);
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--color-green-primary);
      margin-top: 0.35rem;
      text-align: center;
    }

    .hero-match-info {
      display: flex;
      align-items: center;
      gap: var(--space-sm);
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: var(--radius-xl);
      padding: var(--space-sm) var(--space-lg);
      font-size: 0.9rem;
      color: var(--color-text-light);
      backdrop-filter: blur(8px);
      flex-wrap: wrap;
      justify-content: center;
      text-align: center;
    }
    .hero-match-info strong { color: var(--color-white); }
    .hero-match-info .divider { color: var(--color-green-primary); opacity: 0.5; }

    .scroll-hint {
      position: absolute;
      bottom: var(--space-lg);
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.7rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      animation: bounce 2s ease-in-out infinite;
    }
    .scroll-hint::after {
      content: '↓';
      font-size: 1rem;
    }
    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(8px); }
    }

    /* ═══════════════════════════════════════════════
       ADSENSE PLACEHOLDER
    ═══════════════════════════════════════════════ */
    .adsense-container {
      width: 100%;
      max-width: 800px;
      margin: 0 auto;
      padding: var(--space-sm) var(--space-md);
    }
    .adsense-banner {
      width: 100%;
      min-height: 90px;
      border: 2px dashed rgba(0,104,71,0.35);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0,104,71,0.05);
      color: var(--color-text-muted);
      font-size: 0.8rem;
      letter-spacing: 1px;
      text-transform: uppercase;
    }
    .adsense-square {
      width: 100%;
      max-width: 340px;
      min-height: 250px;
      border: 2px dashed rgba(0,104,71,0.35);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0,104,71,0.05);
      color: var(--color-text-muted);
      font-size: 0.8rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin: 0 auto;
    }

    /* ═══════════════════════════════════════════════
       SECTIONS GENERAL
    ═══════════════════════════════════════════════ */
    section {
      padding: var(--space-2xl) var(--space-md);
      position: relative;
    }
    .section-dark  { background: var(--color-green-deeper); }
    .section-mid   { background: #0d221a; }
    .section-light {
      background: var(--color-off-white);
      color: var(--color-text-dark);
    }

    .section-header {
      text-align: center;
      margin-bottom: var(--space-xl);
    }
    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--color-green-primary);
      margin-bottom: var(--space-xs);
    }
    .section-light .section-tag { color: var(--color-green-dark); }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 5vw, 3.5rem);
      letter-spacing: 2px;
      line-height: 1.1;
      margin-bottom: var(--space-xs);
    }
    .section-light .section-title { color: var(--color-text-dark); }
    .section-subtitle {
      font-size: 0.95rem;
      color: var(--color-text-muted);
      max-width: 600px;
      margin: 0 auto;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    /* ═══════════════════════════════════════════════
       SCROLL REVEAL
    ═══════════════════════════════════════════════ */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ═══════════════════════════════════════════════
       PRÓXIMO PARTIDO — BIG CARD
    ═══════════════════════════════════════════════ */
    .next-match-card {
      max-width: 760px;
      margin: 0 auto;
      background: linear-gradient(135deg, rgba(0,104,71,0.15) 0%, rgba(0,77,52,0.1) 100%);
      border: 1px solid rgba(0,104,71,0.4);
      border-radius: var(--radius-xl);
      padding: var(--space-xl);
      position: relative;
      overflow: hidden;
    }
    .next-match-card::before {
      content: '';
      position: absolute;
      top: -2px; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--color-green-primary), var(--color-gold), var(--color-red));
    }
    .next-match-card-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 0%, rgba(0,104,71,0.2) 0%, transparent 70%);
      pointer-events: none;
    }

    .match-badge-inaugural {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: linear-gradient(90deg, var(--color-gold), #e6b800);
      color: #000;
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 0.3rem 0.8rem;
      border-radius: 50px;
      margin-bottom: var(--space-md);
    }
    .match-badge-next {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(0,104,71,0.3);
      border: 1px solid var(--color-green-primary);
      color: #4ade80;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 0.3rem 0.8rem;
      border-radius: 50px;
      margin-bottom: var(--space-md);
    }

    .match-teams {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: var(--space-md);
      margin-bottom: var(--space-lg);
      flex-wrap: wrap;
    }
    .match-team {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: var(--space-xs);
    }
    .match-team-flag {
      font-size: clamp(2.5rem, 8vw, 4.5rem);
      line-height: 1;
    }
    .match-team-name {
      font-family: var(--font-display);
      font-size: clamp(1.4rem, 4vw, 2.2rem);
      letter-spacing: 2px;
    }
    .match-vs {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 5vw, 2.5rem);
      color: var(--color-gold);
      text-shadow: var(--shadow-glow-gold);
    }

    .match-meta {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-sm);
      justify-content: center;
      margin-bottom: var(--space-lg);
    }
    .match-meta-item {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.85rem;
      color: var(--color-text-light);
      background: rgba(255,255,255,0.06);
      padding: 0.4rem 0.8rem;
      border-radius: 50px;
      border: 1px solid rgba(255,255,255,0.1);
    }
    .match-meta-item .icon { font-size: 0.9rem; }

    /* Mini countdown inside card */
    .card-mini-countdown {
      display: flex;
      justify-content: center;
      gap: var(--space-sm);
      flex-wrap: wrap;
    }
    .card-mini-unit {
      display: flex;
      flex-direction: column;
      align-items: center;
      background: rgba(0,0,0,0.3);
      border: 1px solid rgba(0,104,71,0.3);
      border-radius: var(--radius-md);
      padding: var(--space-sm) var(--space-md);
      min-width: 80px;
    }
    .card-mini-number {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 5vw, 2.8rem);
      color: var(--color-gold);
      text-shadow: var(--shadow-glow-gold);
      line-height: 1;
      display: block;
    }
    .card-mini-label {
      font-size: 0.6rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--color-text-muted);
      margin-top: 4px;
    }

    /* ═══════════════════════════════════════════════
       CALENDARIO GRUPO A
    ═══════════════════════════════════════════════ */
    

    .calendar-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(0,104,71,0.25);
      border-radius: var(--radius-lg);
      padding: var(--space-lg);
      transition: transform var(--transition-medium), box-shadow var(--transition-medium), border-color var(--transition-medium);
      position: relative;
      overflow: hidden;
    }
    .calendar-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, var(--color-green-primary), transparent);
      transition: background var(--transition-medium);
    }
    .calendar-card:hover::before { background: linear-gradient(90deg, var(--color-gold), var(--color-green-primary)); }
    .calendar-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg), var(--shadow-glow);
      border-color: rgba(0,104,71,0.6);
    }

    .calendar-card-num {
      font-family: var(--font-display);
      font-size: 4rem;
      line-height: 1;
      color: rgba(255,255,255,0.05);
      position: absolute;
      top: var(--space-sm);
      right: var(--space-md);
      letter-spacing: -2px;
    }

    .calendar-status {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 0.3rem 0.7rem;
      border-radius: 50px;
      margin-bottom: var(--space-md);
    }
    .status-next {
      background: rgba(74, 222, 128, 0.15);
      border: 1px solid rgba(74, 222, 128, 0.4);
      color: #4ade80;
    }
    .status-next::before { content: '●'; animation: blink 1.2s ease-in-out infinite; }
    @keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0.2; } }
    .status-upcoming  { background: rgba(0,104,71,0.15); border: 1px solid rgba(0,104,71,0.4); color: #86efac; }
    .status-finished  { background: rgba(107,114,128,0.15); border: 1px solid rgba(107,114,128,0.4); color: var(--color-text-muted); }
    .status-live      { background: rgba(206,17,38,0.15); border: 1px solid rgba(206,17,38,0.5); color: #f87171; }
    .status-live::before { content: '⬤ '; animation: blink 0.8s ease-in-out infinite; }

    .cal-matchup {
      display: flex;
      align-items: center;
      gap: var(--space-sm);
      margin-bottom: var(--space-md);
    }
    .cal-flag { font-size: 2.5rem; }
    .cal-vs   { font-family: var(--font-display); font-size: 1.2rem; color: var(--color-gold); flex: 1; text-align: center; }
    .cal-team-name {
      font-weight: 700;
      font-size: 0.85rem;
      display: block;
      color: var(--color-text-light);
    }
    .cal-meta {
      font-size: 0.78rem;
      color: var(--color-text-muted);
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .cal-meta span { display: flex; align-items: center; gap: 6px; }
    .cal-badge-inaugural {
      background: linear-gradient(90deg, var(--color-gold), #e6b800);
      color: #000;
      font-size: 0.55rem;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 0.25rem 0.6rem;
      border-radius: 50px;
      margin-top: var(--space-xs);
      display: inline-block;
    }

    /* ═══════════════════════════════════════════════
       MULTI-COUNTDOWNS GRID
    ═══════════════════════════════════════════════ */
    .multi-countdown-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: var(--space-md);
      max-width: 1100px;
      margin: 0 auto;
    }
    .mini-countdown-card {
      background: linear-gradient(135deg, rgba(0,104,71,0.12) 0%, rgba(0,0,0,0.2) 100%);
      border: 1px solid rgba(0,104,71,0.25);
      border-radius: var(--radius-lg);
      padding: var(--space-lg);
      text-align: center;
      transition: transform var(--transition-medium), box-shadow var(--transition-medium);
      position: relative;
      overflow: hidden;
    }
    .mini-countdown-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md), var(--shadow-glow);
    }
    .mini-card-icon { font-size: 2rem; margin-bottom: var(--space-sm); display: block; }
    .mini-card-title {
      font-weight: 600;
      font-size: 0.85rem;
      color: var(--color-text-light);
      margin-bottom: var(--space-md);
      letter-spacing: 0.5px;
    }
    .mini-card-number {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 6vw, 4rem);
      color: var(--color-gold);
      text-shadow: var(--shadow-glow-gold);
      line-height: 1;
      display: block;
      margin-bottom: 4px;
    }
    .mini-card-sub {
      font-size: 0.65rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--color-text-muted);
    }
    .mini-card-days-grid {
      display: flex;
      justify-content: center;
      gap: 6px;
      flex-wrap: wrap;
    }
    .mini-day-unit { display: flex; flex-direction: column; align-items: center; }
    .mini-day-val {
      font-family: var(--font-display);
      font-size: clamp(1.6rem, 4vw, 2.4rem);
      color: var(--color-white);
      line-height: 1;
      display: block;
    }
    .mini-day-lbl {
      font-size: 0.5rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--color-text-muted);
    }
    .mini-day-sep {
      font-family: var(--font-display);
      font-size: 1.8rem;
      color: var(--color-green-primary);
      opacity: 0.5;
      padding-top: 2px;
    }

    /* ═══════════════════════════════════════════════
       CURIOSIDADES CARDS
    ═══════════════════════════════════════════════ */
    .curiosities-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: var(--space-md);
      max-width: 1100px;
      margin: 0 auto;
    }
    .curiosity-card {
      background: var(--color-bg-card-light);
      border: 1px solid var(--color-border-light);
      border-radius: var(--radius-lg);
      padding: var(--space-lg);
      transition: transform var(--transition-medium), box-shadow var(--transition-medium);
      display: flex;
      flex-direction: column;
      gap: var(--space-sm);
      position: relative;
      overflow: hidden;
    }
    .curiosity-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--color-green-primary), var(--color-gold));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform var(--transition-medium);
    }
    .curiosity-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,104,71,0.15); }
    .curiosity-card:hover::after { transform: scaleX(1); }
    .curiosity-icon {
      font-size: 2.5rem;
      width: 56px; height: 56px;
      display: flex; align-items: center; justify-content: center;
      background: linear-gradient(135deg, rgba(0,104,71,0.1), rgba(0,104,71,0.05));
      border-radius: var(--radius-md);
    }
    .curiosity-title {
      font-weight: 700;
      font-size: 1rem;
      color: var(--color-text-dark);
      line-height: 1.3;
    }
    .curiosity-text {
      font-size: 0.85rem;
      color: var(--color-text-muted);
      line-height: 1.6;
    }
    .curiosity-highlight {
      font-family: var(--font-display);
      font-size: 2.5rem;
      color: var(--color-green-primary);
      line-height: 1;
      letter-spacing: 1px;
    }

    /* ═══════════════════════════════════════════════
       SEDES
    ═══════════════════════════════════════════════ */
    .sedes-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: var(--space-md);
      max-width: 1100px;
      margin: 0 auto;
    }
    .sede-card {
      border-radius: var(--radius-xl);
      overflow: hidden;
      transition: transform var(--transition-medium), box-shadow var(--transition-medium);
      position: relative;
    }
    .sede-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg), var(--shadow-glow); }

    .sede-visual {
      height: 180px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    /* Azteca */
    .sede-azteca .sede-visual {
      background:
        radial-gradient(ellipse 80% 50% at 50% 100%, rgba(0,104,71,0.6) 0%, transparent 70%),
        radial-gradient(circle at 30% 20%, rgba(206,17,38,0.2) 0%, transparent 50%),
        linear-gradient(180deg, #0d1a0e 0%, #1a3320 50%, #0d1a0e 100%);
    }
    /* Akron */
    .sede-akron .sede-visual {
      background:
        radial-gradient(ellipse 80% 50% at 50% 100%, rgba(0,60,120,0.4) 0%, transparent 70%),
        radial-gradient(circle at 70% 20%, rgba(0,104,71,0.3) 0%, transparent 50%),
        linear-gradient(180deg, #0a0f1a 0%, #141e30 50%, #0a0f1a 100%);
    }
    /* BBVA */
    .sede-bbva .sede-visual {
      background:
        radial-gradient(ellipse 80% 50% at 50% 100%, rgba(0,100,180,0.4) 0%, transparent 70%),
        radial-gradient(circle at 20% 30%, rgba(255,215,0,0.15) 0%, transparent 50%),
        linear-gradient(180deg, #0a0e1a 0%, #131827 50%, #0a0e1a 100%);
    }

    /* CSS Stadium art */
    .stadium-art {
      width: 200px;
      height: 100px;
      position: relative;
    }
    .stadium-oval {
      position: absolute;
      bottom: 0; left: 50%;
      transform: translateX(-50%);
      width: 180px; height: 80px;
      border: 2px solid rgba(255,255,255,0.15);
      border-radius: 50% 50% 0 0;
    }
    .stadium-inner {
      position: absolute;
      bottom: 10px; left: 50%;
      transform: translateX(-50%);
      width: 120px; height: 55px;
      border: 2px solid rgba(0,104,71,0.5);
      border-radius: 50% 50% 0 0;
      background: rgba(0,104,71,0.1);
    }
    .stadium-field {
      position: absolute;
      bottom: 20px; left: 50%;
      transform: translateX(-50%);
      width: 60px; height: 30px;
      background: rgba(0,104,71,0.4);
      border-radius: 4px;
    }
    .stadium-lights {
      position: absolute;
      top: 0; left: 0; right: 0;
      display: flex;
      justify-content: space-between;
      padding: 0 10px;
    }
    .light-pole {
      width: 3px; height: 40px;
      background: rgba(255,255,255,0.2);
      border-radius: 2px;
      position: relative;
    }
    .light-pole::after {
      content: '';
      position: absolute;
      top: -4px; left: -4px;
      width: 11px; height: 6px;
      background: rgba(255,215,0,0.8);
      border-radius: 50%;
      box-shadow: 0 0 10px rgba(255,215,0,0.6);
    }

    .sede-icon {
      font-size: 4rem;
      opacity: 0.4;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .sede-body {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(0,104,71,0.2);
      border-top: none;
      padding: var(--space-lg);
    }
    .sede-name {
      font-family: var(--font-display);
      font-size: 1.6rem;
      letter-spacing: 2px;
      margin-bottom: 4px;
    }
    .sede-city {
      font-size: 0.8rem;
      color: var(--color-green-primary);
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: var(--space-sm);
    }
    .sede-cap {
      font-size: 0.8rem;
      color: var(--color-text-muted);
      margin-bottom: var(--space-md);
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .sede-matches { display: flex; flex-direction: column; gap: 6px; }
    .sede-match-pill {
      font-size: 0.75rem;
      background: rgba(0,104,71,0.15);
      border: 1px solid rgba(0,104,71,0.3);
      color: var(--color-text-light);
      padding: 0.3rem 0.7rem;
      border-radius: 50px;
      display: inline-block;
    }

    /* ═══════════════════════════════════════════════
       GRUPO A TABLE
    ═══════════════════════════════════════════════ */
    .grupo-section { padding-top: var(--space-xl); }
    .grupo-table-wrap {
      max-width: 700px;
      margin: 0 auto;
      overflow-x: auto;
    }
    .grupo-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.9rem;
    }
    .grupo-table th {
      padding: var(--space-sm);
      text-align: left;
      font-size: 0.7rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--color-text-muted);
      border-bottom: 1px solid rgba(0,104,71,0.3);
    }
    .grupo-table td {
      padding: var(--space-sm);
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .grupo-table tr:last-child td { border-bottom: none; }
    .grupo-table tr.mexico-row td { background: rgba(0,104,71,0.1); color: var(--color-gold); }
    .grupo-table .team-cell { display: flex; align-items: center; gap: 10px; }
    .grupo-table .team-flag { font-size: 1.3rem; }

    /* ═══════════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════════ */
    footer {
      background: #060e09;
      border-top: 1px solid rgba(0,104,71,0.2);
      padding: var(--space-xl) var(--space-md);
    }
    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: var(--space-lg);
      align-items: start;
    }
    @media (max-width: 600px) { .footer-inner { grid-template-columns: 1fr; } }
    .footer-logo {
      font-family: var(--font-display);
      font-size: 2rem;
      letter-spacing: 2px;
      margin-bottom: var(--space-xs);
    }
    .footer-logo span { color: var(--color-gold); }
    .footer-tagline {
      font-size: 0.8rem;
      color: var(--color-text-muted);
      margin-bottom: var(--space-md);
    }
    .footer-disclaimer {
      font-size: 0.72rem;
      color: rgba(107,114,128,0.7);
      max-width: 500px;
      line-height: 1.5;
    }
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: var(--space-xs);
      align-items: flex-end;
    }
    @media (max-width: 600px) { .footer-links { align-items: flex-start; } }
    .footer-links a {
      font-size: 0.8rem;
      color: var(--color-text-muted);
      transition: color var(--transition-fast);
      min-height: 44px;
      display: flex;
      align-items: center;
    }
    .footer-links a:hover { color: var(--color-green-primary); }
    .footer-bottom {
      max-width: 1200px;
      margin: var(--space-lg) auto 0;
      padding-top: var(--space-md);
      border-top: 1px solid rgba(255,255,255,0.04);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: var(--space-sm);
      font-size: 0.72rem;
      color: rgba(107,114,128,0.6);
    }
    .tri-stripe {
      height: 4px;
      background: linear-gradient(90deg, var(--color-green-primary) 33.3%, var(--color-white) 33.3%, var(--color-white) 66.6%, var(--color-red) 66.6%);
      width: 100%;
    }

    /* ═══════════════════════════════════════════════
       DIVIDER WAVE
    ═══════════════════════════════════════════════ */
    .wave-divider { line-height: 0; overflow: hidden; }
    .wave-divider svg { display: block; width: 100%; }

    /* ═══════════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════════ */
    @media (max-width: 480px) {
      .countdown-unit:not(:last-child)::after { right: -6px; font-size: 2.5rem; }
      .countdown-unit { padding: 0 clamp(0.3rem, 1.5vw, 0.6rem); }
      .match-teams { gap: var(--space-sm); }
      .card-mini-unit { min-width: 60px; padding: var(--space-xs) var(--space-sm); }
      .next-match-card { padding: var(--space-md); }
      section { padding: var(--space-xl) var(--space-sm); }

      .multicard-row {
        grid-template-columns: 1fr 1fr;
      }
    }
    @media (max-width: 375px) {
      .hero { padding: 6rem var(--space-sm) var(--space-xl); }
    }

    /* ═══════════════════════════════════════════════
       TOOLTIP
    ═══════════════════════════════════════════════ */
    .tooltip {
      position: relative;
      cursor: default;
    }
    .tooltip::after {
      content: attr(data-tip);
      position: absolute;
      bottom: calc(100% + 8px);
      left: 50%;
      transform: translateX(-50%);
      background: rgba(0,0,0,0.9);
      color: var(--color-white);
      font-size: 0.7rem;
      padding: 0.3rem 0.7rem;
      border-radius: 6px;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--transition-fast);
    }
    .tooltip:hover::after { opacity: 1; }

    /* ═══════════════════════════════════════════════
       ACCESSIBILITY
    ═══════════════════════════════════════════════ */
    .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;
    }

    /* ═══════════════════════════════════════════════
       PROMO BAR
    ═══════════════════════════════════════════════ */
    .promo-bar {
      background: linear-gradient(90deg, var(--color-green-primary), var(--color-green-dark), var(--color-green-primary));
      background-size: 200% 100%;
      animation: shimmer-bar 3s linear infinite;
      padding: 0.6rem var(--space-md);
      text-align: center;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 1px;
    }
    @keyframes shimmer-bar {
      0% { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }

    /* ═══════════════════════════════════════════════
       PROGRESS BAR (days left)
    ═══════════════════════════════════════════════ */
    .progress-section {
      max-width: 760px;
      margin: var(--space-lg) auto 0;
    }
    .progress-label {
      display: flex;
      justify-content: space-between;
      font-size: 0.75rem;
      color: var(--color-text-muted);
      margin-bottom: 8px;
    }
    .progress-bar-wrap {
      height: 6px;
      background: rgba(255,255,255,0.08);
      border-radius: 3px;
      overflow: hidden;
    }
    .progress-bar-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--color-green-primary), var(--color-gold));
      border-radius: 3px;
      transition: width 1s ease;
    }
/* ══ ESTILOS NUEVOS FASE 1: CALENDARIO DEL TRI ══ */
.calendar-card {
  position: relative;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  color: white;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.calendar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}
.calendar-card-num {
  position: absolute;
  top: -10px;
  right: 10px;
  font-size: 8rem;
  font-weight: 800;
  color: rgba(255,255,255,0.03);
  font-family: var(--font-heading);
  z-index: 0;
  pointer-events: none;
}
.cal-matchup {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.cal-flag {
  font-size: 4rem;
  display: block;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}
.cal-team-name {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cal-vs {
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}
.cal-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #d1d5db;
  position: relative;
  z-index: 1;
  background: rgba(0,0,0,0.3);
  padding: 1rem;
  border-radius: 8px;
}
.cal-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.card-mini-countdown {
  display: flex;
  justify-content: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.card-mini-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.1);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  min-width: 60px;
}
.card-mini-number {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-gold);
}
.card-mini-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #9ca3af;
}
.cal-badge-inaugural {
  display: inline-block;
  background: var(--color-gold);
  color: #000;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 15px rgba(255,215,0,0.4);
}

/* ══ ESTILOS NUEVOS FASE 1: FAQ Y NOTICIAS ══ */
.section-dark {
  background: #0a1a0f;
  padding: 4rem 1rem;
}
.section-light {
  background: #f3f4f6;
  padding: 4rem 1rem;
}

.calendar-grid {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 5%;
  gap: 1.5rem;
  padding: 1rem 0 2.5rem 0;
  max-width: 100%;
  scrollbar-width: none;
}
.calendar-grid::-webkit-scrollbar {
  display: none;
}
.calendar-card {
  scroll-snap-align: center;
  flex: 0 0 85%;
  max-width: 350px;
  margin-bottom: 0;
}
.calendar-ad-wrapper {
  scroll-snap-align: center;
  flex: 0 0 85%;
  max-width: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.02);
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 1rem;
}
/* Indicadores de swipe */
.swipe-indicator {
  text-align: center;
  color: var(--color-gold);
  font-size: 0.85rem;
  margin-top: -1rem;
  margin-bottom: 1.5rem;
  animation: bounceX 2s infinite;
}
@keyframes bounceX {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}


/* ═══════════════════════════════════════════════
   CARRUSEL DE PARTIDOS DEL TRI
   ═══════════════════════════════════════════════ */
.carousel-wrapper {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
  overflow: hidden;
  user-select: none;
}

.carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  min-width: 100%;
  padding: 0 0.5rem;
  box-sizing: border-box;
}

/* Flechas */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 104, 71, 0.85);
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.carousel-arrow:hover {
  background: var(--color-green-primary);
  transform: translateY(-50%) scale(1.1);
}
.carousel-prev { left: 4px; }
.carousel-next { right: 4px; }
.carousel-arrow:disabled {
  opacity: 0.35;
  cursor: default;
  transform: translateY(-50%);
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.3);
  border: 1.5px solid var(--color-gold);
  cursor: pointer;
  transition: all 0.25s;
  padding: 0;
}
.dot.active {
  background: var(--color-gold);
  transform: scale(1.3);
}

/* Label "Partido X de 3" */
.carousel-label {
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
}

/* Ajuste de las tarjetas dentro del carrusel (quitar margen bottom, ya lo controla el slide) */
.carousel-slide .calendar-card {
  margin-bottom: 0;
}
