/* World Cup IPTV 2026 — Main Stylesheet */

/* ═══════════ RESET & BASE ═══════════ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --usa: #B22234;
      --can: #FF0000;
      --mex: #006847;
      --gold: #D4AF37;
      --gold-light: #FFD700;
      --dark: #0a0a0f;
      --dark2: #12121a;
      --dark3: #1a1a28;
      --card: #1e1e2e;
      --border: rgba(255,255,255,0.08);
      --text: #e8e8f0;
      --muted: #8888a8;
      --white: #ffffff;
      --radius: 14px;
      --shadow: 0 20px 60px rgba(0,0,0,0.5);
    }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', sans-serif;
      background: var(--dark);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    /* ═══════════ UTILITY ═══════════ */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
    .section { padding: 90px 0; }
    .section-sm { padding: 60px 0; }
    .badge {
      display: inline-block;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--dark);
      font-size: 11px; font-weight: 700;
      padding: 4px 10px; border-radius: 20px;
      text-transform: uppercase; letter-spacing: 0.5px;
    }
    .section-title {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(28px, 5vw, 42px);
      font-weight: 700; line-height: 1.15;
      color: var(--white); margin-bottom: 16px;
    }
    .section-subtitle {
      font-size: 17px; color: var(--muted);
      max-width: 600px; margin: 0 auto 50px;
    }
    .text-center { text-align: center; }
    .highlight { color: var(--gold-light); }

    /* ═══════════ TRICOLOR ACCENT ═══════════ */
    .tricolor-bar {
      height: 4px;
      background: linear-gradient(90deg, var(--usa) 33.33%, var(--white) 33.33%, var(--white) 66.66%, var(--mex) 66.66%);
    }
    .tricolor-bar-can {
      height: 4px;
      background: linear-gradient(90deg, var(--can) 33.33%, var(--white) 33.33%, var(--white) 66.66%, var(--can) 66.66%);
    }

    /* ═══════════ FLOATING NAV ═══════════ */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: rgba(10,10,15,0.92);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      transition: all 0.3s ease;
    }
    .nav-inner {
      display: flex; align-items: center;
      justify-content: space-between;
      height: 64px; padding: 0 24px;
      max-width: 1200px; margin: 0 auto;
    }
    .nav-logo {
      display: flex; align-items: center; gap: 10px;
      font-family: 'Oswald', sans-serif;
      font-size: 22px; font-weight: 700; color: var(--white);
    }
    .logo-icon {
      width: 38px; height: 38px; border-radius: 8px;
      background: linear-gradient(135deg, var(--usa) 0%, var(--gold) 50%, var(--mex) 100%);
      display: flex; align-items: center; justify-content: center;
      font-size: 20px;
    }
    .nav-links {
      display: flex; align-items: center; gap: 28px;
      list-style: none;
    }
    .nav-links a {
      font-size: 14px; font-weight: 500; color: var(--muted);
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--white); }
    .nav-cta {
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--dark) !important;
      font-weight: 700 !important;
      padding: 9px 20px;
      border-radius: 8px;
      font-size: 13px !important;
    }
    .hamburger {
      display: none; flex-direction: column;
      gap: 5px; cursor: pointer;
      background: none; border: none; padding: 8px;
    }
    .hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; display: block; }
    .mobile-menu {
      display: none;
      position: fixed; top: 64px; left: 0; right: 0;
      background: var(--dark2);
      border-bottom: 1px solid var(--border);
      padding: 20px; z-index: 999;
    }
    .mobile-menu a {
      display: block; padding: 12px 0;
      border-bottom: 1px solid var(--border);
      font-weight: 500; color: var(--text);
    }
    .mobile-menu a:last-child { border-bottom: none; }
    .mobile-menu.open { display: block; }

    /* ═══════════ HERO ═══════════ */
    #hero {
      min-height: 100vh;
      position: relative;
      display: flex; flex-direction: column;
      justify-content: center; align-items: center;
      text-align: center;
      overflow: hidden;
      padding: 100px 20px 60px;
    }
    .hero-bg {
      position: absolute; inset: 0; z-index: 0;
      background:
        radial-gradient(ellipse 80% 60% at 20% 30%, rgba(178,34,52,0.25) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 60%, rgba(0,104,71,0.2) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 50% 80%, rgba(212,175,55,0.15) 0%, transparent 60%),
        var(--dark);
    }
    .hero-grid {
      position: absolute; inset: 0; z-index: 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: 50px 50px;
    }
    .hero-content { position: relative; z-index: 1; max-width: 900px; }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      padding: 6px 16px; border-radius: 30px;
      font-size: 13px; font-weight: 600;
      margin-bottom: 24px; color: var(--gold-light);
    }
    .hero-title {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(38px, 7vw, 80px);
      font-weight: 700; line-height: 1.05;
      color: var(--white); margin-bottom: 20px;
    }
    .hero-title .line2 {
      background: linear-gradient(90deg, var(--usa), var(--gold-light), var(--mex));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-subtitle {
      font-size: clamp(16px, 2.5vw, 20px);
      color: var(--muted); max-width: 640px;
      margin: 0 auto 36px; line-height: 1.7;
    }
    .hero-badges {
      display: flex; flex-wrap: wrap; gap: 10px;
      justify-content: center; margin-bottom: 36px;
    }
    .hero-badge {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      padding: 6px 14px; border-radius: 30px;
      font-size: 13px; font-weight: 500;
      display: flex; align-items: center; gap: 6px;
    }
    .hero-cta-row {
      display: flex; flex-wrap: wrap; gap: 14px;
      justify-content: center; margin-bottom: 56px;
    }
    .btn-primary {
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
      color: var(--dark);
      font-weight: 800; font-size: 15px;
      padding: 15px 32px; border-radius: 10px;
      border: none; cursor: pointer;
      transition: all 0.25s ease;
      display: inline-flex; align-items: center; gap: 8px;
      box-shadow: 0 0 40px rgba(212,175,55,0.4);
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 60px rgba(212,175,55,0.6); }
    .btn-secondary {
      background: transparent;
      color: var(--white);
      font-weight: 600; font-size: 15px;
      padding: 14px 28px; border-radius: 10px;
      border: 1px solid rgba(255,255,255,0.2);
      cursor: pointer;
      transition: all 0.25s ease;
      display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-secondary:hover { border-color: var(--gold); color: var(--gold-light); }
    .btn-wa {
      background: #25D366;
      color: white;
      font-weight: 700; font-size: 15px;
      padding: 14px 28px; border-radius: 10px;
      border: none; cursor: pointer;
      display: inline-flex; align-items: center; gap: 8px;
      transition: all 0.25s ease;
    }
    .btn-wa:hover { background: #1ebe5d; transform: translateY(-2px); }

    /* STATS ROW */
    .hero-stats {
      display: flex; flex-wrap: wrap; gap: 0;
      justify-content: center;
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--border);
      border-radius: 16px; overflow: hidden;
    }
    .stat-item {
      flex: 1; min-width: 120px;
      padding: 20px 24px; text-align: center;
      border-right: 1px solid var(--border);
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-family: 'Oswald', sans-serif;
      font-size: 26px; font-weight: 700;
      color: var(--gold-light); line-height: 1;
    }
    .stat-label { font-size: 12px; color: var(--muted); margin-top: 4px; }

    /* HOST FLAGS */
    .host-flags {
      display: flex; align-items: center; justify-content: center;
      gap: 20px; margin: 48px 0 0;
    }
    .flag-pill {
      display: flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,0.05);
      border: 1px solid var(--border);
      padding: 10px 18px; border-radius: 30px;
      font-size: 14px; font-weight: 600;
    }

    /* ═══════════ COUNTDOWN ═══════════ */
    #countdown { padding: 0 0 80px; }
    .countdown-wrapper {
      background: linear-gradient(135deg, var(--dark3), var(--dark2));
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 40px 30px;
      text-align: center;
    }
    .countdown-label {
      font-size: 13px; font-weight: 600;
      color: var(--gold); text-transform: uppercase;
      letter-spacing: 2px; margin-bottom: 12px;
    }
    .countdown-title {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(20px, 3vw, 28px);
      color: var(--white); margin-bottom: 30px;
    }
    .countdown-grid {
      display: flex; gap: 16px;
      justify-content: center; flex-wrap: wrap;
    }
    .cd-block {
      background: var(--dark);
      border: 1px solid rgba(212,175,55,0.3);
      border-radius: 14px; padding: 20px 24px;
      min-width: 90px; text-align: center;
      position: relative; overflow: hidden;
    }
    .cd-block::before {
      content: ''; position: absolute;
      top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
    }
    .cd-num {
      font-family: 'Oswald', sans-serif;
      font-size: 44px; font-weight: 700;
      color: var(--gold-light); line-height: 1;
      display: block;
    }
    .cd-unit { font-size: 12px; color: var(--muted); margin-top: 6px; text-transform: uppercase; letter-spacing: 1px; }
    .cd-sep { font-family: 'Oswald', sans-serif; font-size: 40px; color: var(--gold); align-self: center; margin-top: -10px; }
    .match-next {
      margin-top: 24px;
      background: rgba(212,175,55,0.08);
      border: 1px solid rgba(212,175,55,0.2);
      border-radius: 10px; padding: 14px 20px;
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 14px;
    }
    .live-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: #ff4444;
      box-shadow: 0 0 8px #ff4444;
      animation: pulse 1.5s infinite;
    }
    @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }

    /* ═══════════ LIVE SCHEDULE ═══════════ */
    #schedule { background: var(--dark2); }
    .schedule-tabs {
      display: flex; flex-wrap: wrap; gap: 8px;
      margin-bottom: 30px;
    }
    .tab-btn {
      background: var(--dark3); border: 1px solid var(--border);
      color: var(--muted); font-size: 13px; font-weight: 600;
      padding: 8px 18px; border-radius: 8px;
      cursor: pointer; transition: all 0.2s;
    }
    .tab-btn.active, .tab-btn:hover {
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--dark); border-color: transparent;
    }
    .matches-grid { display: flex; flex-direction: column; gap: 10px; }
    .match-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px; padding: 16px 20px;
      display: flex; align-items: center;
      gap: 16px; transition: border-color 0.2s;
    }
    .match-card:hover { border-color: rgba(212,175,55,0.4); }
    .match-card.live-now { border-color: #ff4444; }
    .match-date {
      min-width: 80px; text-align: center;
      font-size: 12px; color: var(--muted);
      line-height: 1.4;
    }
    .match-date strong { display: block; font-size: 14px; color: var(--text); }
    .match-teams {
      flex: 1;
      display: flex; align-items: center; gap: 14px;
      flex-wrap: wrap;
    }
    .team { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; }
    .team-flag { font-size: 22px; }
    .vs { font-size: 12px; color: var(--muted); font-weight: 500; white-space: nowrap; }
    .match-meta { text-align: right; }
    .match-group { font-size: 11px; color: var(--muted); }
    .match-venue { font-size: 11px; color: var(--muted); }
    .match-stage-badge {
      font-size: 10px; font-weight: 700;
      padding: 3px 8px; border-radius: 4px;
      background: rgba(212,175,55,0.15);
      color: var(--gold-light);
      display: inline-block; margin-bottom: 4px;
    }
    .live-badge {
      background: rgba(255,68,68,0.15);
      color: #ff6666;
      font-size: 10px; font-weight: 700;
      padding: 3px 8px; border-radius: 4px;
      display: inline-flex; align-items: center; gap: 4px;
      animation: pulse 1.5s infinite;
    }
    .hidden { display: none; }

    /* GROUPS TABLE */
    .groups-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 16px; margin-top: 40px;
    }
    .group-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
    }
    .group-header {
      background: linear-gradient(135deg, var(--dark3), var(--dark2));
      padding: 10px 16px;
      display: flex; justify-content: space-between; align-items: center;
    }
    .group-name { font-family: 'Oswald', sans-serif; font-size: 16px; font-weight: 700; color: var(--gold-light); }
    .group-teams { padding: 4px 0; }
    .group-team {
      display: flex; align-items: center; gap: 10px;
      padding: 9px 16px;
      border-bottom: 1px solid var(--border);
      font-size: 14px; font-weight: 500;
    }
    .group-team:last-child { border-bottom: none; }

    /* ═══════════ CHANNELS / BROADCASTERS ═══════════ */
    #channels { background: var(--dark); }
    .broadcaster-grid {
      display: flex; flex-wrap: wrap;
      gap: 12px; justify-content: center;
      margin-bottom: 40px;
    }
    .broadcaster-pill {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 30px;
      padding: 8px 18px;
      font-size: 13px; font-weight: 600;
      color: var(--text);
      display: flex; align-items: center; gap: 6px;
    }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 20px;
    }
    .feature-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px;
      transition: border-color 0.2s, transform 0.2s;
    }
    .feature-card:hover { border-color: rgba(212,175,55,0.4); transform: translateY(-3px); }
    .feat-icon { font-size: 32px; margin-bottom: 14px; }
    .feat-title { font-weight: 700; font-size: 16px; margin-bottom: 8px; color: var(--white); }
    .feat-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

    /* ═══════════ PRICING ═══════════ */
    #pricing { background: var(--dark2); }
    .pricing-tabs {
      display: flex; gap: 8px; justify-content: center;
      margin-bottom: 40px; flex-wrap: wrap;
    }
    .ptab {
      background: var(--dark3); border: 1px solid var(--border);
      color: var(--muted); font-size: 13px; font-weight: 600;
      padding: 9px 22px; border-radius: 8px; cursor: pointer;
      transition: all 0.2s;
    }
    .ptab.active {
      background: var(--dark3); border-color: var(--gold);
      color: var(--gold-light);
    }
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 24px; align-items: start;
    }
    .price-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 18px; overflow: hidden;
      position: relative;
      transition: transform 0.25s;
    }
    .price-card:hover { transform: translateY(-4px); }
    .price-card.popular {
      border-color: var(--gold);
      box-shadow: 0 0 40px rgba(212,175,55,0.2);
    }
    .popular-ribbon {
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--dark);
      font-size: 11px; font-weight: 800;
      text-transform: uppercase; letter-spacing: 0.5px;
      text-align: center; padding: 6px;
    }
    .price-header { padding: 28px 28px 20px; }
    .price-devices { font-size: 14px; color: var(--muted); margin-bottom: 4px; }
    .price-plan { font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 16px; }
    .price-amount {
      display: flex; align-items: baseline; gap: 4px;
      margin-bottom: 6px;
    }
    .price-currency { font-size: 18px; color: var(--muted); }
    .price-num { font-family: 'Oswald', sans-serif; font-size: 52px; font-weight: 700; color: var(--gold-light); line-height: 1; }
    .price-period { font-size: 14px; color: var(--muted); }
    .price-saving { font-size: 12px; color: #4ade80; font-weight: 600; }
    .price-divider { height: 1px; background: var(--border); margin: 0 28px; }
    .price-features { padding: 20px 28px 28px; }
    .price-feat {
      display: flex; align-items: center; gap: 10px;
      font-size: 14px; padding: 7px 0;
      border-bottom: 1px solid var(--border);
    }
    .price-feat:last-child { border-bottom: none; }
    .check { color: #4ade80; font-size: 16px; flex-shrink: 0; }
    .price-cta {
      margin: 0 28px 28px;
      display: block; text-align: center;
      padding: 14px; border-radius: 10px;
      font-weight: 700; font-size: 15px;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--dark); cursor: pointer;
      border: none; width: calc(100% - 56px);
      transition: all 0.2s;
    }
    .price-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,175,55,0.4); }

    /* Free Trial Banner */
    .trial-banner {
      background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(0,104,71,0.1));
      border: 1px solid rgba(212,175,55,0.3);
      border-radius: 16px;
      padding: 40px;
      text-align: center;
      margin-top: 48px;
    }
    .trial-banner h3 { font-family: 'Oswald', sans-serif; font-size: 28px; color: var(--white); margin-bottom: 10px; }
    .trial-banner p { color: var(--muted); margin-bottom: 24px; }
    .trial-list {
      display: flex; flex-wrap: wrap; gap: 10px;
      justify-content: center; margin-bottom: 28px;
    }
    .trial-item {
      background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.2);
      padding: 6px 14px; border-radius: 20px; font-size: 13px; color: #4ade80;
    }

    /* ═══════════ DEVICES ═══════════ */
    #devices { background: var(--dark); }
    .devices-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      gap: 16px;
    }
    .device-card {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 12px; padding: 24px 16px;
      text-align: center; transition: all 0.2s;
    }
    .device-card:hover { border-color: rgba(212,175,55,0.4); transform: translateY(-2px); }
    .device-icon { font-size: 36px; margin-bottom: 10px; }
    .device-name { font-size: 13px; font-weight: 600; color: var(--text); }

    /* ═══════════ REVIEWS ═══════════ */
    #reviews { background: var(--dark2); overflow: hidden; }
    .reviews-track-outer { overflow: hidden; position: relative; }
    .reviews-track {
      display: flex; gap: 20px;
      animation: scroll-reviews 40s linear infinite;
      width: max-content;
    }
    .reviews-track:hover { animation-play-state: paused; }
    @keyframes scroll-reviews { from{transform:translateX(0)} to{transform:translateX(-50%)} }
    .review-card {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 14px; padding: 24px; min-width: 300px; max-width: 320px;
    }
    .review-stars { color: var(--gold-light); margin-bottom: 10px; font-size: 15px; }
    .review-text { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
    .reviewer { display: flex; align-items: center; gap: 10px; }
    .reviewer-avatar {
      width: 36px; height: 36px; border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), var(--mex));
      display: flex; align-items: center; justify-content: center;
      font-weight: 700; font-size: 14px; color: white; flex-shrink: 0;
    }
    .reviewer-name { font-size: 14px; font-weight: 600; }
    .reviewer-loc { font-size: 12px; color: var(--muted); }

    /* ═══════════ HOW IT WORKS ═══════════ */
    #how { background: var(--dark); }
    .steps-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 24px;
    }
    .step-card {
      background: var(--card); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 28px;
      position: relative;
    }
    .step-num {
      width: 44px; height: 44px; border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      display: flex; align-items: center; justify-content: center;
      font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 700;
      color: var(--dark); margin-bottom: 16px; flex-shrink: 0;
    }
    .step-title { font-weight: 700; font-size: 16px; margin-bottom: 8px; color: var(--white); }
    .step-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

    /* ═══════════ FAQ ═══════════ */
    #faq { background: var(--dark2); }
    .faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
    .faq-item {
      background: var(--card); border: 1px solid var(--border);
      border-radius: 12px; overflow: hidden;
    }
    .faq-q {
      padding: 18px 22px; font-weight: 600; font-size: 15px;
      cursor: pointer; display: flex; justify-content: space-between; align-items: center;
      color: var(--white); gap: 12px;
    }
    .faq-q:hover { color: var(--gold-light); }
    .faq-arrow { flex-shrink: 0; transition: transform 0.3s; font-size: 12px; color: var(--gold); }
    .faq-a {
      max-height: 0; overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
      font-size: 14px; color: var(--muted); line-height: 1.7;
      padding: 0 22px;
    }
    .faq-item.open .faq-a { max-height: 300px; padding: 0 22px 18px; }
    .faq-item.open .faq-arrow { transform: rotate(180deg); }

    /* ═══════════ SEO CONTENT SECTION ═══════════ */
    #seo-content { background: var(--dark); }
    .seo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
    .seo-article h2 {
      font-family: 'Oswald', sans-serif; font-size: 22px;
      font-weight: 700; color: var(--white); margin-bottom: 14px;
    }
    .seo-article h3 {
      font-size: 16px; font-weight: 700; color: var(--gold-light);
      margin: 20px 0 8px;
    }
    .seo-article p { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 12px; }
    .seo-article ul { padding-left: 18px; }
    .seo-article li { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 4px; }

    /* ═══════════ FOOTER ═══════════ */
    footer {
      background: var(--dark2);
      border-top: 1px solid var(--border);
      padding: 60px 0 30px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px; margin-bottom: 50px;
    }
    .footer-brand-desc { font-size: 14px; color: var(--muted); line-height: 1.7; margin: 12px 0 20px; }
    .footer-social { display: flex; gap: 10px; }
    .social-btn {
      width: 36px; height: 36px; border-radius: 8px;
      background: var(--card); border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; cursor: pointer;
      transition: all 0.2s;
    }
    .social-btn:hover { border-color: var(--gold); }
    .footer-col h4 { font-weight: 700; font-size: 14px; margin-bottom: 16px; color: var(--white); }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a { font-size: 14px; color: var(--muted); transition: color 0.2s; }
    .footer-links a:hover { color: var(--gold-light); }
    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 24px;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 12px;
    }
    .footer-bottom-text { font-size: 13px; color: var(--muted); }
    .payment-row { display: flex; gap: 8px; flex-wrap: wrap; }
    .pay-badge {
      background: var(--card); border: 1px solid var(--border);
      padding: 5px 10px; border-radius: 6px; font-size: 11px;
      font-weight: 600; color: var(--muted);
    }

    /* WHATSAPP FLOAT */
    .wa-float {
      position: fixed; bottom: 24px; right: 24px; z-index: 999;
      width: 56px; height: 56px; border-radius: 50%;
      background: #25D366;
      display: flex; align-items: center; justify-content: center;
      font-size: 28px; cursor: pointer;
      box-shadow: 0 8px 24px rgba(37,211,102,0.5);
      animation: float-bounce 3s ease-in-out infinite;
      transition: transform 0.2s;
    }
    .wa-float:hover { transform: scale(1.1); }
    @keyframes float-bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

    /* ═══════════ RESPONSIVE ═══════════ */
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .hero-stats { flex-direction: column; }
      .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
      .stat-item:last-child { border-bottom: none; }
      .host-flags { flex-direction: column; gap: 10px; }
      .seo-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .match-card { flex-direction: column; align-items: flex-start; }
      .match-meta { text-align: left; }
      .countdown-grid { gap: 10px; }
      .cd-block { min-width: 70px; padding: 14px 16px; }
      .cd-num { font-size: 32px; }
      .cd-sep { font-size: 28px; }
    }
    @media (max-width: 480px) {
      .footer-grid { grid-template-columns: 1fr; }
      .cd-sep { display: none; }
      .countdown-grid { gap: 8px; }
    }