        /* CSS Reset */
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        :root {
            /* Fonts */
            --font-display: 'Barlow Condensed', 'Impact', 'Arial Narrow', sans-serif;
            --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

            /* Colors — primary */
            --primary: #2d7ff9;
            --primary-hover: #1a6de0;
            --primary-glow: rgba(45, 127, 249, 0.12);

            /* Colors — accents */
            --accent-orange: #ff6b2c;
            --accent-purple: #8b5cf6;
            --accent-gold: #f5a623;
            --accent-gold-light: #fcd779;

            /* Surfaces */
            --bg-dark: #120b17;
            --bg-darker: #08050d;
            --card-bg: rgba(255, 255, 255, 0.07);
            --card-bg-elevated: rgba(255, 255, 255, 0.11);
            --card-border: rgba(255, 255, 255, 0.1);

            /* Text */
            --text-white: #f1f3f5;
            --text-gray: #b0b8c4;
            --text-muted: #8b95a3;

            /* Predictions — branded */
            --pred-home: #34d399;
            --pred-draw: #fbbf24;
            --pred-away: #f87171;

            /* Spacing */
            --space-1: 4px;
            --space-2: 8px;
            --space-3: 12px;
            --space-4: 16px;
            --space-6: 24px;
            --space-8: 32px;
            --space-12: 48px;
            --space-16: 64px;

            /* Radius */
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--bg-dark);
            background-image:
                radial-gradient(circle at 20% 30%, rgba(45, 127, 249, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(61, 31, 71, 0.1) 0%, transparent 40%),
                linear-gradient(rgba(18, 11, 23, 0.97), rgba(18, 11, 23, 0.97)),
                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='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2v-4h4v-2H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            color: var(--text-white);
            min-height: 100vh;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Glassmorphism utility */
        .glass-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
        }

        a { color: var(--primary); text-decoration: none; transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
        a:hover { color: var(--text-white); }
        .content-body a:hover, .nav a:hover { filter: drop-shadow(0 0 8px var(--primary)); }

        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

        /* Header */
        .header {
            background: rgba(13, 8, 17, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 10px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: none;
            transition: box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
        }
        .header::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #22c55e 0%, var(--primary) 50%, #22c55e 100%); opacity: 0.85; }
        .header-scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.5); background: rgba(13, 8, 17, 0.95); border-bottom: 1px solid rgba(45, 127, 249, 0.3); }
        .header .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: nowrap; gap: 15px; }
        .logo {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-white);
            display: flex;
            align-items: center;
            gap: 10px;
            letter-spacing: 0.02em;
            text-transform: uppercase;
            min-width: 0;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .logo-icon { width: auto; height: 40px; flex-shrink: 0; }
        .nav { display: flex; gap: var(--space-1); flex-wrap: wrap; }
        .nav a {
            color: var(--text-gray);
            padding: 10px 22px;
            border-radius: var(--radius-md);
            font-size: 0.9rem;
            font-weight: 600;
            position: relative;
        }
        .nav a::after { content: ''; position: absolute; bottom: 0; left: 20%; width: 60%; height: 2px; background: var(--primary); border-radius: 1px; transform: scaleX(0); transform-origin: center; transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1); }
        .nav a:hover::after { transform: scaleX(1); }
        .nav a:hover { color: var(--text-white); background: rgba(255, 255, 255, 0.06); }
        .nav a.active, .nav a[aria-current="page"] { color: #ffffff; font-weight: 700; }
        .nav a.active::after, .nav a[aria-current="page"]::after { width: 80%; left: 10%; transform: scaleX(1); box-shadow: 0 0 8px rgba(45, 127, 249, 0.5); }

        /* Hero */
        .hero {
            position: relative;
            padding: 40px 0 30px;
            text-align: center;
        }
        .hero-container {
            position: relative;
            max-width: 1100px;
            margin: 0 auto;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
        }
        .hero-banner { width: 100%; height: auto; display: block; filter: brightness(0.8); }

        .hero-content-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 60%);
            padding: 40px;
            z-index: 2;
        }

        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 10px;
            line-height: 1.1;
            text-transform: uppercase;
            letter-spacing: 0.02em;
            text-shadow: 0 1px 2px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.3);
            overflow-wrap: break-word;
            word-break: break-word;
        }
        .hero h1 img { width: clamp(24px, 5vw, 40px); height: clamp(24px, 5vw, 40px); vertical-align: middle; }
        .hero p {
            color: var(--text-white);
            font-size: clamp(1rem, 2vw, 1.25rem);
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.95;
            text-shadow: 0 2px 5px rgba(0,0,0,0.5);
        }

        .btn-play-hero {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--primary);
            color: var(--text-white) !important;
            padding: 18px 45px;
            border-radius: var(--radius-md);
            font-weight: 800;
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 10px 30px rgba(45, 127, 249, 0.4);
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .btn-play-hero:hover {
            transform: scale(1.08) translateY(-3px);
            background: var(--primary-hover);
            box-shadow: 0 15px 40px rgba(45, 127, 249, 0.6);
        }
        .btn-play-hero:active { transform: scale(0.97) translateY(0); }


        /* Info Table */
        .info-table-wrapper {
            margin: -30px auto 40px;
            position: relative;
            z-index: 5;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid var(--card-border);
            border-radius: 20px;
            padding: 20px;
            max-width: 900px;
        }
        .info-table {
            width: 100%;
            border-collapse: collapse;
        }
        .info-table tr { display: inline-block; margin: 10px 20px; }
        .info-table td { display: block; text-align: center; }
        .info-table td:first-child { font-size: 0.75rem; color: var(--text-gray); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
        .info-table td:last-child { font-weight: 800; color: var(--text-white); font-size: 1.1rem; }

        /* Sections */
        .section { padding: var(--space-12) 0; }
        .section + .section { border-top: none; position: relative; margin-top: var(--space-4); }
        .section + .section::before { content: ""; position: absolute; top: 0; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15) 30%, rgba(255,255,255,0.15) 70%, transparent); }
        .section-title {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: var(--space-6);
            text-align: center;
            text-transform: none;
            position: relative;
            padding-bottom: var(--space-4);
        }
        .section-title::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), rgba(45,127,249,0.3));
            border-radius: 2px;
        }

        /* Casino Card */
        .casino-grid { display: flex; flex-direction: column; gap: 20px; }
        .casino-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: var(--radius-lg);
            padding: var(--space-6);
            display: flex;
            align-items: center;
            gap: var(--space-6);
            flex-wrap: wrap;
            transition: background 0.4s, border-color 0.4s, transform 0.4s;
        }
        .casino-card:hover {
            background: var(--card-bg-elevated);
            border-color: var(--primary);
            transform: translateY(-2px);
        }
        .casino-rank {
            font-family: var(--font-display);
            font-size: 1.6rem;
            font-weight: 700;
            color: #fff;
            width: 52px;
            height: 52px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .casino-info { flex: 1; min-width: 0; }
        .casino-name { font-size: 1.4rem; font-weight: 800; color: var(--text-white); margin-bottom: 5px; }
        .casino-desc { color: var(--text-gray); font-size: 0.95rem; }
        .casino-rating {
            background: linear-gradient(135deg, var(--accent-gold), #e8941a);
            color: #000;
            font-weight: 700;
            padding: 12px 20px;
            border-radius: 14px;
            font-size: 1.3rem;
            font-family: var(--font-display);
            min-width: 70px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(245, 166, 35, 0.25);
        }
        .casino-cta {
            background: var(--primary);
            color: var(--text-white) !important;
            padding: 15px 30px;
            border-radius: var(--radius-md);
            font-weight: 800;
            font-size: 1rem;
            text-transform: uppercase;
            box-shadow: 0 5px 15px rgba(45, 127, 249, 0.2);
        }

        /* Bonus Card */
        .bonus-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr)); gap: 20px; }
        .bonus-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: var(--radius-lg);
            padding: var(--space-6);
            position: relative;
            overflow: hidden;
        }
        .bonus-card::before {
            content: "";
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 4px;
            background: var(--primary);
        }
        .bonus-name { font-size: 1.2rem; font-weight: 700; color: var(--text-white); margin-bottom: 15px; }
        .bonus-amount { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
        .bonus-code {
            display: block;
            background: rgba(45, 127, 249, 0.1);
            border: 1px dashed var(--primary);
            color: var(--primary);
            padding: 10px;
            text-align: center;
            border-radius: 12px;
            font-weight: 700;
            margin: 15px 0;
        }

        /* FAQ */
        .faq-item { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-sm); margin-bottom: 15px; overflow: hidden; }
        .faq-item summary { padding: var(--space-4) var(--space-6); font-weight: 700; color: var(--text-white); display: flex; justify-content: space-between; align-items: center; cursor: pointer; list-style: none; }
        .faq-item summary::-webkit-details-marker { display: none; }
        .faq-item summary::after { content: '+'; color: var(--primary); font-weight: 900; font-size: 1.4rem; min-width: 24px; text-align: center; transition: transform 0.3s; }
        .faq-item[open] summary::after { content: ''; transform: rotate(45deg); }
        .faq-answer { padding: 0 var(--space-6) var(--space-4); color: var(--text-gray); max-width: 720px; }

        /* Footer */
        .footer { margin-top: var(--space-16); padding: var(--space-12) 0 var(--space-8); background: var(--bg-darker); text-align: center; border-top: none; position: relative; }
        .footer::before { content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, transparent, var(--primary) 30%, var(--accent-purple) 70%, transparent); border-radius: 1px; }
        .badge-18 {
            display: inline-block;
            border: 2px solid var(--primary);
            color: var(--primary);
            font-weight: 900;
            width: 45px; height: 45px;
            line-height: 41px;
            border-radius: 50%;
            margin-bottom: 25px;
        }
        .footer p { color: var(--text-gray); font-size: 0.85rem; max-width: 800px; margin: 0 auto 15px; }
        .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--space-8); padding-bottom: var(--space-8); border-bottom: 1px solid rgba(255,255,255,0.06); text-align: left; }
        .footer-brand p { color: var(--text-gray); font-size: 0.82rem; line-height: 1.6; margin-top: var(--space-3); }
        .footer-logo { font-size: 1.2rem; font-weight: 700; color: var(--text-white); display: flex; align-items: center; gap: var(--space-2); }
        .footer-logo span { color: var(--primary); }
        .footer-col h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-gray); margin-bottom: var(--space-4); }
        .footer-col ul { list-style: none; padding: 0; margin: 0; }
        .footer-col li + li { margin-top: var(--space-2); }
        .footer-col a { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
        .footer-col a:hover { color: var(--primary); filter: none; }
        .footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--space-4); margin-top: var(--space-6); }
        .footer-copyright { font-size: 0.75rem; color: rgba(255,255,255,0.25); margin: 0; }
        .footer a { color: var(--text-gray); }
        .footer a:hover { color: var(--text-white); filter: none; }

        /* Screen-reader only */
        .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

        /* Skip Link */
        .skip-link {
            position: absolute;
            top: -100%;
            left: 0;
            padding: 10px 20px;
            background: var(--primary);
            color: var(--text-white) !important;
            z-index: 9999;
            font-weight: 700;
        }
        .skip-link:focus { top: 0; }

        /* Focus styles */
        a:focus-visible, button:focus-visible, summary:focus-visible, select:focus-visible, input:focus-visible, textarea:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 3px;
        }

        /* Casino CTA hover */
        .casino-cta:hover {
            background: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(45, 127, 249, 0.4);
            color: var(--text-white) !important;
        }
        .casino-cta:active { transform: scale(0.97) translateY(0); }

        /* Author Box */
        .author-box {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px 25px;
            margin: 20px 0;
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 16px;
        }
        .author-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: var(--primary);
            color: var(--text-white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        /* Content Body */
        .content-body {
            max-width: 850px;
            margin: 30px auto;
            color: rgba(255, 255, 255, 0.85);
            font-size: 1.05rem;
            line-height: 1.8;
            text-align: left;
            overflow-wrap: break-word;
        }
        .content-body img, .content-body iframe, .content-body table { max-width: 100%; height: auto; }
        .content-body p { margin-bottom: 1.2em; }
        .content-body h2 { color: var(--text-white); margin: 1.5em 0 0.75em; font-size: 1.6rem; font-weight: 800; }
        .content-body h3 { color: var(--text-white); margin: 1.2em 0 0.5em; font-size: 1.3rem; font-weight: 700; }
        .content-body ul, .content-body ol { margin: 1em 0 1.5em 1.5em; color: var(--text-gray); }
        .content-body li { margin-bottom: 0.5em; }
        .content-body a { color: var(--primary); }

        /* Bonus Wagering */
        .bonus-wagering { color: var(--text-gray); font-size: 0.9rem; margin-top: 5px; }

        /* Breadcrumbs */
        .breadcrumbs {
            padding: 15px 0;
            font-size: 0.85rem;
            color: var(--text-gray);
        }
        .breadcrumbs a { color: var(--text-gray); }
        .breadcrumbs a:hover { color: var(--primary); }
        .breadcrumbs span { margin: 0 8px; opacity: 0.5; }

        /* Hamburger */
        .hamburger {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 12px;
            min-width: 44px;
            min-height: 44px;
            flex-direction: column;
            gap: 5px;
            justify-content: center;
            align-items: center;
        }
        .hamburger:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }
        .hamburger span {
            display: block;
            width: 24px;
            height: 2.5px;
            background: var(--text-white);
            border-radius: 2px;
            transition: transform 0.3s ease, opacity 0.2s ease;
            transform-origin: center;
        }
        .hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
        .hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
        .hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

        /* Reduced motion */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            body:has(.nav.open) { overflow: hidden; }
            .header .container { flex-wrap: wrap; }
            .hamburger { display: flex; }
            .nav { display: none; }
            .nav.open {
                display: flex; flex-direction: column; position: fixed; inset: 0; top: 0; left: 0;
                width: 100vw; height: 100vh; height: 100dvh;
                background: rgba(13, 8, 17, 0.98); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
                z-index: 9999; padding: 80px 24px 40px; gap: 0;
                align-items: center; justify-content: center; overflow-y: auto;
            }
            .nav.open a {
                width: 100%; max-width: 320px; text-align: center;
                font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
                padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
                color: var(--text-white);
            }
            .nav.open a:last-child { border-bottom: none; }
            .nav.open a:hover, .nav.open a:active { color: var(--primary); }
            .hamburger[aria-expanded="true"] { position: fixed; top: 16px; right: 16px; z-index: 10000; }
            .hero { padding: 15px 0 20px; }
            .hero-container { border-radius: 0; min-height: 350px; }
            .hero-banner { border-radius: 0; filter: brightness(0.6); height: 100%; object-fit: cover; position: absolute; inset: 0; }
            .hero-content-overlay { position: relative; background: none; padding: 25px 20px; justify-content: flex-end; min-height: 350px; }
            .hero h1 { font-size: 1.8rem; }
            .hero p { font-size: 0.95rem; }
            .btn-play-hero { padding: 14px 35px; font-size: 1rem; }
            .info-table tr { display: block; margin: 15px 0; border-bottom: 1px solid var(--card-border); padding-bottom: 10px; }
            .info-table tr:last-child { border-bottom: none; }
            .info-table-wrapper { margin-top: 20px; backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(20, 20, 30, 0.95); }
            .casino-card { flex-direction: column; text-align: center; padding: 20px 15px; }
            .casino-cta { width: 100%; }
            .section { padding: var(--space-8) 0; }
            .section-title { font-size: 1.5rem; margin-bottom: var(--space-4); }
            .footer { margin-top: var(--space-12); padding: var(--space-8) var(--space-4); }
            .link-card { max-width: 100%; }
            .match-state .match-score { font-size: 1.4rem; gap: 12px; flex-direction: column; }
            .prediction-score { flex-direction: column; text-align: center; gap: 8px; }
            .sponsored-links { padding: 16px; }
            .sponsored-links li a { min-height: 44px; display: inline-flex; align-items: center; padding: 10px 16px; }
            .faq-item summary { padding: 16px 18px; }
            .faq-answer { padding: 0 18px 16px; }
            .footer-grid { grid-template-columns: 1fr; text-align: center; gap: var(--space-6); }
            .footer-bottom { flex-direction: column; text-align: center; }
        }

        @media print {
            * { background: white !important; color: black !important; box-shadow: none !important; text-shadow: none !important; }
            body { font-size: 12pt; line-height: 1.5; }
            .header, .hamburger, .skip-link, footer, .nav, .btn-play-hero, .casino-cta, .bonus-cta { display: none !important; }
            a[href]::after { content: " (" attr(href) ")"; font-size: 0.8em; color: #666; }
            a[rel*="sponsored"]::after { content: " [Sponsored: " attr(href) "]"; }
            img { max-width: 100% !important; }
            .casino-card, .bonus-card, .glass-card { break-inside: avoid; border: 1px solid #ccc; padding: 10px; margin-bottom: 10px; }
            .hero-container { padding: 20px 0; min-height: auto; }
            .content-body { max-width: 100%; }
            table { border-collapse: collapse; }
            th, td { border: 1px solid #ccc; padding: 6px; }
        }
        /* Prediction Section */
        .prediction-section { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-lg); padding: var(--space-6); margin: var(--space-12) 0; }
        .prediction-score { display: flex; align-items: center; justify-content: center; gap: var(--space-4); margin-bottom: 20px; font-size: 1.2rem; flex-wrap: wrap; }
        .prediction-result { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--accent-gold-light); font-variant-numeric: tabular-nums; letter-spacing: 0.05em; padding: 4px 16px; border-radius: var(--radius-sm); background: rgba(252,215,121,0.08); border: 1px solid rgba(252,215,121,0.15); text-shadow: 0 1px 3px rgba(0,0,0,0.4); }
        .prediction-bar { display: flex; height: 40px; border-radius: var(--radius-md); overflow: hidden; margin-bottom: 8px; gap: 2px; background: rgba(255,255,255,0.05); box-shadow: inset 0 2px 4px rgba(0,0,0,0.3); }
        .bar-segment:first-child { border-radius: var(--radius-md) 0 0 var(--radius-md); }
        .bar-segment:last-child { border-radius: 0 var(--radius-md) var(--radius-md) 0; }
        .bar-segment { display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; color: #fff; min-width: 0; padding: 0 4px; overflow: hidden; text-shadow: 0 1px 2px rgba(0,0,0,0.4); }
        .bar-home { background: linear-gradient(180deg, color-mix(in srgb, var(--pred-home) 80%, #fff), var(--pred-home)); }
        .bar-draw { background: linear-gradient(180deg, color-mix(in srgb, var(--pred-draw) 80%, #fff), var(--pred-draw)); color: #1a1a1a; text-shadow: none; }
        .bar-away { background: linear-gradient(180deg, color-mix(in srgb, var(--pred-away) 80%, #fff), var(--pred-away)); }
        .prediction-labels { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--text-gray); margin-bottom: 15px; }
        .prediction-stats { display: flex; gap: var(--space-4); flex-wrap: wrap; margin-bottom: 15px; }
        .stat-item { flex: 1; min-width: 120px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-md); padding: 14px 10px; text-align: center; transition: border-color 0.2s; }
        .stat-item:has(.confidence-high) { border-color: rgba(34,197,94,0.6); background: rgba(34,197,94,0.08); }
        .stat-item:has(.confidence-medium) { border-color: rgba(234,179,8,0.6); background: rgba(234,179,8,0.08); }
        .stat-item:has(.confidence-low) { border-color: rgba(239,68,68,0.6); background: rgba(239,68,68,0.08); }
        .stat-label { display: block; font-size: 0.75rem; color: var(--text-gray); margin-bottom: 4px; }
        .stat-value { font-weight: 800; font-size: 1.4rem; }
        .confidence-high { color: #22c55e; }
        .confidence-medium { color: #eab308; }
        .confidence-low { color: #ef4444; }
        .prediction-reasoning { margin-bottom: 15px; max-width: 720px; margin-left: auto; margin-right: auto; }
        .prediction-reasoning h3 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-gray); margin-bottom: 10px; }
        .prediction-tip { background: linear-gradient(135deg, rgba(45,127,249,0.12) 0%, rgba(45,127,249,0.04) 100%); border: 1px solid rgba(45,127,249,0.2); border-left: 4px solid var(--primary); border-radius: 0 var(--radius-md) var(--radius-md) 0; padding: 16px 20px; font-size: 1rem; line-height: 1.6; box-shadow: 0 4px 16px rgba(0,0,0,0.2); margin-top: var(--space-4); max-width: 720px; margin-left: auto; margin-right: auto; }
        .risk-badge { display: inline-block; padding: 2px 8px; border-radius: 4px; font-size: 0.75rem; font-weight: 700; margin-left: 8px; }
        .risk-low { background: rgba(34,197,94,0.2); color: #22c55e; }
        .risk-medium { background: rgba(234,179,8,0.2); color: #eab308; }
        .risk-high { background: rgba(239,68,68,0.2); color: #ef4444; }

        /* Voting */
        .prediction-vote { display: flex; align-items: center; gap: 10px; margin-top: 15px; padding-top: 15px; border-top: 1px solid var(--card-border); flex-wrap: wrap; }
        .vote-label { font-size: 0.85rem; color: var(--text-gray); }
        .vote-btn { border: 1px solid var(--card-border); background: rgba(255,255,255,0.05); color: var(--text-white); padding: 10px 16px; border-radius: 8px; cursor: pointer; font-weight: 600; font-size: 0.85rem; transition: background 0.2s, border-color 0.2s, color 0.2s; min-height: 44px; display: inline-flex; align-items: center; }
        .vote-btn:disabled { opacity: 0.5; pointer-events: none; cursor: not-allowed; }
        .vote-agree { border-color: rgba(34, 197, 94, 0.25); }
        .vote-agree::before { content: "\1F44D"; margin-right: 6px; font-size: 1em; }
        .vote-disagree { border-color: rgba(239, 68, 68, 0.25); }
        .vote-disagree::before { content: "\1F44E"; margin-right: 6px; font-size: 1em; }
        .vote-btn:hover { background: var(--card-bg-elevated); }
        .vote-agree:hover { background: rgba(34, 197, 94, 0.15); border-color: rgba(34, 197, 94, 0.5); color: #22c55e; transform: translateY(-1px); box-shadow: 0 3px 8px rgba(34,197,94,0.15); }
        .vote-disagree:hover { background: rgba(239, 68, 68, 0.15); border-color: rgba(239, 68, 68, 0.5); color: #ef4444; transform: translateY(-1px); box-shadow: 0 3px 8px rgba(239,68,68,0.15); }
        .vote-btn:active:not(:disabled) { transform: scale(0.97); }
        .vote-agree.voted { background: rgba(34,197,94,0.2); border-color: #22c55e; color: #22c55e; }
        .vote-disagree.voted { background: rgba(239,68,68,0.2); border-color: #ef4444; color: #ef4444; }
        .vote-btn .count { margin-left: 4px; opacity: 0.7; }

        /* User Poll */
        .user-poll-section { text-align: center; }
        .poll-buttons { display: flex; gap: 10px; justify-content: center; margin-bottom: 15px; }
        .poll-btn { border: 1px solid var(--card-border); background: rgba(255,255,255,0.05); color: var(--text-white); padding: 12px 24px; border-radius: 10px; cursor: pointer; font-weight: 700; font-size: 0.95rem; transition: background 0.2s, border-color 0.2s, color 0.2s; min-width: 100px; min-height: 44px; }
        .poll-btn:disabled { opacity: 0.5; pointer-events: none; cursor: not-allowed; }
        .poll-home:hover { background: rgba(34, 197, 94, 0.1); border-color: rgba(34, 197, 94, 0.5); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(34, 197, 94, 0.12); }
        .poll-draw:hover { background: rgba(234, 179, 8, 0.1); border-color: rgba(234, 179, 8, 0.5); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(234, 179, 8, 0.12); }
        .poll-away:hover { background: rgba(239, 68, 68, 0.1); border-color: rgba(239, 68, 68, 0.5); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(239, 68, 68, 0.12); }
        .poll-btn:active { transform: scale(0.97); }
        .poll-voted { background: rgba(45,127,249,0.2) !important; border-color: #2d7ff9 !important; color: #2d7ff9 !important; }
        .poll-bar { display: flex; height: 28px; border-radius: 6px; overflow: hidden; margin-bottom: 8px; background: rgba(255,255,255,0.08); }
        .poll-segment { min-width: 0; }
        .poll-home-bar { background: #22c55e; }
        .poll-draw-bar { background: #eab308; }
        .poll-away-bar { background: #ef4444; }
        .poll-labels { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--text-gray); }

        /* Match list */
        .match-list { display: flex; flex-direction: column; gap: var(--space-3); }
        .match-row { display: flex; align-items: center; gap: var(--space-3); padding: var(--space-3) var(--space-4); background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-sm); text-decoration: none; color: inherit; transition: background 0.2s, border-color 0.2s; }
        .match-row:hover { background: var(--card-bg-elevated); }
        .match-date { font-size: 0.8rem; color: var(--text-gray); min-width: 110px; white-space: nowrap; }
        .match-teams { flex: 1; font-weight: 600; }
        .match-venue { font-size: 0.8rem; color: var(--text-gray); }
        .match-score { font-weight: 800; color: var(--primary); white-space: nowrap; }

        /* Predictions page */
        .league-group { margin-bottom: 10px; }
        .league-group-header a { color: inherit; text-decoration: none; }
        .league-group-header a:hover { text-decoration: underline; }
        .prediction-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr)); gap: 16px; }
        .prediction-card { display: block; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-md); padding: var(--space-6); text-decoration: none; color: inherit; transition: border-color 0.2s, transform 0.2s; }
        @media (hover: hover) { .prediction-card:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(45,127,249,0.15), 0 0 0 1px rgba(45,127,249,0.1); background: var(--card-bg-elevated); } }
        @media (hover: none) { .prediction-card:active { border-color: var(--primary); } }
        .prediction-card-teams { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 10px; font-weight: 600; font-size: 0.9rem; min-width: 0; }
        .prediction-card-teams img { vertical-align: middle; }
        .prediction-card-teams > *:first-child,
        .prediction-card-teams > *:last-child { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; flex: 1; }
        .prediction-card-teams > *:last-child { text-align: right; }
        .prediction-card-vs { color: var(--text-gray); font-weight: 400; font-size: 0.8rem; }
        .prediction-card-score { text-align: center; font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--accent-gold-light); margin-bottom: 12px; font-variant-numeric: tabular-nums; letter-spacing: 0.05em; }
        .prediction-card .prediction-bar { height: 24px; margin-bottom: 4px; }
        .prediction-card .prediction-labels { margin-bottom: 10px; }
        .prediction-card-meta { display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; color: var(--text-gray); margin-bottom: 6px; }
        .confidence-badge { display: inline-flex; align-items: center; gap: 4px; padding: 4px 12px; border-radius: 20px; font-size: 0.85rem; font-weight: 700; text-transform: capitalize; }
        .confidence-badge.confidence-high { background: rgba(34,197,94,0.15); color: #22c55e; }
        .confidence-badge.confidence-medium { background: rgba(234,179,8,0.15); color: #eab308; }
        .confidence-badge.confidence-low { background: rgba(239,68,68,0.15); color: #ef4444; }
        .prediction-card-tip { font-size: 0.8rem; color: var(--text-gray); line-height: 1.4; border-top: 1px solid var(--card-border); padding-top: 8px; margin-top: 4px; }

        /* League grid */
        .league-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr)); gap: 16px; }
        .league-card { display: block; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-md); padding: var(--space-6); text-align: center; text-decoration: none; color: inherit; transition: border-color 0.2s; }
        .league-card:hover { border-color: var(--primary); }
        .league-card h3 { margin: 8px 0 4px; }
        .league-card p { font-size: 0.85rem; color: var(--text-gray); margin: 0; }
        .league-logo { display: block; margin: 0 auto; background: #fff; border-radius: 8px; padding: 6px; box-shadow: 0 2px 8px rgba(0,0,0,0.15); object-fit: contain; }

        /* Auth nav */
        .auth-nav-link { background: transparent; border: 1.5px solid rgba(45, 127, 249, 0.6); padding: 8px 20px !important; border-radius: var(--radius-md) !important; color: var(--primary) !important; font-weight: 700; font-size: 0.8rem !important; transition: all 0.25s ease; margin-left: var(--space-2); }
        .auth-nav-link:hover { background: var(--primary) !important; color: #fff !important; border-color: var(--primary); }
        .auth-nav-link:active { transform: scale(0.97); }

        /* ── Match Status Badges ─────────────────────────── */
        .match-state {
            background: var(--card-bg-elevated);
            border: 1px solid var(--card-border);
            border-top: 3px solid var(--primary);
            border-radius: var(--radius-lg);
            padding: var(--space-6);
            margin: var(--space-12) 0;
            text-align: center;
        }
        .match-upcoming { border-color: rgba(45, 127, 249, 0.3); }
        .match-live { border-color: rgba(239, 68, 68, 0.4); box-shadow: 0 0 20px rgba(239, 68, 68, 0.1); }
        .match-past { border-color: rgba(255, 255, 255, 0.08); }
        .match-status-badge {
            display: inline-block;
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-gray);
            margin-bottom: 12px;
        }
        .match-status-badge.live {
            background: rgba(255, 107, 44, 0.2);
            color: var(--accent-orange);
            animation: pulse-live 2s infinite;
        }
        @keyframes pulse-live {
            0% { box-shadow: 0 0 0 0 rgba(255, 107, 44, 0.5); }
            70% { box-shadow: 0 0 0 10px rgba(255, 107, 44, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 107, 44, 0); }
        }
        .match-status-badge.finished {
            background: rgba(34, 197, 94, 0.15);
            color: #22c55e;
        }
        .match-state .match-score {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent-gold-light);
            white-space: normal;
            margin: 12px 0;
            font-variant-numeric: tabular-nums;
        }
        .match-datetime { font-size: 0.9rem; color: var(--text-gray); margin: 8px 0; }
        .match-round { font-size: 0.85rem; color: var(--text-gray); opacity: 0.8; }
        .match-state .content-body { text-align: left; margin: 16px auto; line-height: 1.6; max-width: 720px; }
        .match-state .section-title { padding-bottom: 0; margin-bottom: var(--space-4); }
        .match-state .section-title::after { display: none; }
        .match-score span img { width: 28px; height: 28px; object-fit: contain; vertical-align: middle; margin: 0 6px; }

        /* Prediction team names */
        .prediction-team { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }
        .prediction-team img { width: 24px; height: 24px; object-fit: contain; flex-shrink: 0; }

        /* Hero content for pages without hero image */
        .hero-content {
            padding: var(--space-16) var(--space-8) var(--space-12);
            text-align: center;
            background: linear-gradient(135deg, rgba(45,127,249,0.12) 0%, rgba(61,31,71,0.20) 50%, rgba(45,127,249,0.06) 100%);
            border-radius: var(--radius-lg);
            border: 1px solid rgba(45,127,249,0.15);
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }
        .hero-content::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--primary), transparent); }
        .hero-content::after { content: ""; position: absolute; top: -120px; left: 50%; transform: translateX(-50%); width: 500px; height: 400px; background: radial-gradient(ellipse, rgba(45,127,249,0.10) 0%, transparent 70%); pointer-events: none; z-index: 0; }
        .hero-content > * { position: relative; z-index: 1; }
        .hero-sub {
            color: var(--text-gray);
            max-width: 700px;
            margin: 10px auto 0;
            line-height: 1.7;
            font-size: 0.95rem;
        }
        .hero .match-round,
        .hero .match-venue {
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.9rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
            margin-top: 6px;
        }

        /* ── Ad Slots ────────────────────────────────────── */
        .ad-slot {
            position: relative;
            margin: 24px 0;
            text-align: center;
            overflow: hidden;
            border-radius: 12px;
        }
        .ad-slot::before {
            content: "Advertisement";
            display: block;
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: rgba(255, 255, 255, 0.45);
            margin-bottom: 6px;
        }
        .ad-slot img, .ad-slot iframe, .ad-slot video { max-width: 100%; height: auto; }
        .ad-header {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.07);
            padding: 16px;
        }
        .ad-inline {
            padding: 12px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        /* ── Promo Cards ─────────────────────────────────── */
        .promo-section { padding: 20px 0; }
        .promo-card {
            background: rgba(45, 127, 249, 0.06);
            border: 1px solid rgba(45, 127, 249, 0.2);
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 16px;
            overflow: hidden;
            overflow-wrap: break-word;
        }
        .promo-card img, .promo-card iframe, .promo-card video { max-width: 100%; height: auto; }

        /* ── Sponsored Links ─────────────────────────────── */
        .sponsored-links {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 16px;
            padding: 20px 24px;
            margin: 24px 0;
        }
        .sponsored-links h3 {
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: rgba(255, 255, 255, 0.55);
            margin-bottom: 12px;
        }
        .sponsored-links ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .sponsored-links li a {
            display: inline-block;
            padding: 7px 14px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 8px;
            color: var(--text-gray);
            font-size: 0.85rem;
            font-weight: 600;
        }
        .sponsored-links li a:hover {
            border-color: var(--primary);
            color: var(--text-white);
        }

        /* ── Data Table (shared casino/bonus) ────────────── */
        .data-table-wrap {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            margin-bottom: 40px;
            border-radius: 20px;
            border: 1px solid var(--card-border);
            background: var(--card-bg);
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 600px;
        }
        .data-table thead { background: rgba(255, 255, 255, 0.03); }
        .data-table th {
            padding: 16px 20px;
            text-align: left;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--text-gray);
            font-weight: 700;
            border-bottom: 1px solid var(--card-border);
        }
        .data-table td {
            padding: 16px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            vertical-align: middle;
            font-size: 0.95rem;
        }
        .data-table tbody tr:last-child td { border-bottom: none; }
        .data-table tbody tr:hover { background: rgba(45, 127, 249, 0.03); }
        .data-table .table-name { font-weight: 700; color: var(--text-white); }
        .data-table .table-highlight { font-weight: 900; color: var(--primary); font-size: 1.1rem; }
        .data-table .table-highlight span { font-size: 0.7em; font-weight: 600; opacity: 0.6; color: var(--text-gray); }
        .data-table .table-code {
            font-family: monospace;
            padding: 4px 12px;
            background: rgba(45, 127, 249, 0.1);
            border: 1px dashed var(--primary);
            border-radius: 8px;
            color: var(--primary);
            font-weight: 700;
            font-size: 0.85rem;
            display: inline-block;
        }
        .data-table .table-cta {
            display: inline-block;
            padding: 10px 24px;
            background: transparent;
            color: var(--primary);
            border: 1.5px solid var(--primary);
            border-radius: var(--radius-sm);
            font-weight: 800;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
            transition: background 0.2s, color 0.2s, transform 0.2s;
            white-space: nowrap;
        }
        .data-table .table-cta:hover {
            background: var(--primary);
            color: #fff;
            transform: translateY(-2px);
        }
        .data-table .table-cta:active { transform: scale(0.97); }
        .data-table .table-muted { color: var(--text-gray); font-size: 0.85rem; }

        /* ── Link Card (shared for "more items" grids) ──── */
        .link-card {
            flex: 1;
            min-width: 220px;
            max-width: 33%;
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 16px;
            padding: 24px;
            text-decoration: none;
            color: #fff;
            transition: transform 0.2s, border-color 0.2s;
        }
        @media (hover: hover) {
            .link-card:hover {
                transform: translateY(-4px);
                border-color: rgba(45, 127, 249, 0.4);
                filter: none;
                color: #fff;
            }
        }
        .link-card-title { font-weight: 700; font-size: 1.1rem; margin-bottom: 8px; }
        .link-card-sub { color: var(--text-gray); font-size: 0.85rem; }
        .link-card-accent { color: var(--accent-gold); font-weight: 600; }

        /* ── Casino Logo ─────────────────────────────────── */
        .casino-logo { object-fit: contain; display: block; border-radius: 8px; }

        /* ── Scroll Reveal ─────────────────────────────── */
        .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
        .reveal.visible { opacity: 1; transform: translateY(0); }

        /* ── Hero Entry Animation ──────────────────────── */
        .hero-content { animation: hero-enter 0.6s ease both; }
        @keyframes hero-enter { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

        /* ── Featured Prediction Card ──────────────────── */
        .prediction-grid > .prediction-card:first-child { grid-column: 1 / -1; background: linear-gradient(135deg, rgba(45,127,249,0.08), rgba(139,92,246,0.08)); border: 1px solid rgba(45,127,249,0.3); padding: var(--space-8); position: relative; }
        .prediction-grid > .prediction-card:first-child::before { content: 'FEATURED'; position: absolute; top: var(--space-3); right: var(--space-4); font-size: 0.6rem; font-weight: 800; letter-spacing: 2px; color: var(--accent-gold); background: rgba(245,166,35,0.12); padding: 3px 10px; border-radius: 4px; }
        .prediction-grid > .prediction-card:first-child .prediction-card-score { font-size: 2.4rem; }

        /* ── Confidence-Tiered Card Borders ─────────────── */
        .prediction-card:has(.confidence-high) { border-left: 4px solid var(--pred-home); }
        .prediction-card:has(.confidence-medium) { border-left: 4px solid var(--pred-draw); }
        .prediction-card:has(.confidence-low) { border-left: 4px solid var(--pred-away); opacity: 0.85; }

        /* ── Prediction Labels Color-Coded ─────────────── */
        .prediction-labels span:first-child { color: var(--pred-home); }
        .prediction-labels span:nth-child(2) { color: var(--pred-draw); }
        .prediction-labels span:last-child { color: var(--pred-away); }

        /* ── Content Body Display Font on Headings ──────── */
        .content-body h2 { font-family: var(--font-display); }
        .content-body h3 { font-family: var(--font-display); }
        .stat-value { font-family: var(--font-display); font-variant-numeric: tabular-nums; }

        /* ── Countdown Timer ───────────────────────────── */
        .countdown { display: flex; gap: var(--space-2); justify-content: center; margin: var(--space-3) 0; }
        .countdown-unit { background: rgba(255,255,255,0.06); border: 1px solid rgba(45,127,249,0.25); border-radius: var(--radius-md); padding: var(--space-2) var(--space-3); text-align: center; min-width: 56px; }
        .countdown-num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--primary); font-variant-numeric: tabular-nums; }
        .countdown-label { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-gray); }
        /* Prevent flash: above-fold sections stay visible immediately */
        .hero + .match-state.reveal, .hero + .match-state + .section.reveal { opacity: 1; transform: none; }

        /* ── Footer Disclaimer ─────────────────────────── */
        .footer-disclaimer { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: var(--space-6); padding: var(--space-4) var(--space-6); background: rgba(220, 38, 38, 0.12); border: 1px solid rgba(220, 38, 38, 0.3); border-radius: var(--radius-sm); max-width: 700px; margin-left: auto; margin-right: auto; }
        .footer-disclaimer .badge-18 { flex-shrink: 0; width: 40px; height: 40px; line-height: 40px; text-align: center; font-weight: 800; font-size: 1rem; color: #fff; background: rgba(220, 38, 38, 0.8); border-radius: 50%; border: none; margin-bottom: 0; }
        .footer-disclaimer p { margin: 0; text-align: left; font-size: 0.8rem; }

        /* ── Match Header Versus ───────────────────────── */
        .match-header-versus { display: flex; align-items: center; justify-content: center; gap: var(--space-8); margin-bottom: var(--space-4); }
        .versus-team { display: flex; flex-direction: column; align-items: center; gap: 10px; min-width: 0; flex: 1; max-width: 200px; }
        .versus-team img { width: 72px; height: 72px; object-fit: contain; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5)); background: #fff; border-radius: 50%; padding: 6px; }
        .versus-team-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; text-align: center; text-transform: uppercase; line-height: 1.2; overflow-wrap: break-word; }
        .versus-divider { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: rgba(255,255,255,0.35); opacity: 1; letter-spacing: 2px; flex-shrink: 0; text-shadow: 0 0 20px rgba(45,127,249,0.25); }

        /* ── CTA Hero Button (cleaned) ─────────────────── */
        .btn-hero-cta { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg, var(--primary), #1a6de0); color: #fff !important; padding: 14px 36px; border-radius: var(--radius-md); font-weight: 800; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.5px; margin: 20px 0 10px; box-shadow: 0 4px 20px rgba(45,127,249,0.3); transition: transform 0.2s, box-shadow 0.2s; }
        .btn-hero-cta::after { content: " \2192"; font-size: 1.2em; transition: transform 0.25s ease; }
        .btn-hero-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(45,127,249,0.5); color: #fff !important; }
        .btn-hero-cta:hover::after { transform: translateX(4px); }
        .btn-hero-cta:active { transform: scale(0.97) translateY(0); }

        /* ── Match Row Link Hover ──────────────────────── */
        .match-row { position: relative; border-left: 3px solid transparent; transition: background 0.2s, border-color 0.2s, transform 0.15s; }
        .match-row:hover { background: var(--card-bg-elevated); border-left-color: var(--primary); }
        .match-hidden { display: none; }
        .btn-show-more { display: block; margin: var(--space-4) auto 0; padding: var(--space-3) var(--space-8); background: transparent; border: 1px solid var(--card-border); color: var(--text-gray); border-radius: var(--radius-md); font-weight: 600; font-size: 0.9rem; cursor: pointer; transition: border-color 0.2s, color 0.2s; }
        .btn-show-more:hover { border-color: var(--primary); color: var(--text-white); }
        .btn-outline { display:inline-block; padding:10px 24px; border:1.5px solid var(--primary); border-radius:var(--radius-md); color:var(--primary); font-weight:700; background:transparent; cursor:pointer; transition:all 0.2s; text-decoration:none; }
        .btn-outline:hover { background:var(--primary); color:#fff; }
        .btn-premium { display:inline-block; padding:12px 28px; border:none; border-radius:var(--radius-md); background:linear-gradient(135deg, var(--accent-purple), var(--primary)); color:#fff; font-weight:700; cursor:pointer; font-size:1rem; transition:transform 0.2s, box-shadow 0.2s; }
        .btn-premium:hover { transform:translateY(-2px); box-shadow:0 6px 20px rgba(139,92,246,0.3); }
        .premium-cta { text-align:center; padding:var(--space-6); margin-top:var(--space-4); background:linear-gradient(135deg, rgba(139,92,246,0.1), rgba(45,127,249,0.1)); border:1px solid rgba(139,92,246,0.2); border-radius:var(--radius-md); }
        .premium-cta-inner h3 { margin-bottom:8px; }
        .premium-cta-inner p { color:var(--text-gray); margin-bottom:16px; font-size:0.9rem; }
        .btn-show-more:active { transform: scale(0.97); }

        /* ── Differentiated FAQ Sections ───────────────── */
        .section-pred-faq .faq-item { border-color: rgba(45,127,249,0.12); }
        .section-pred-faq .faq-item summary::after { color: var(--accent-gold); }
        .section-pred-faq .section-title::after { background: linear-gradient(90deg, var(--accent-gold), rgba(245,166,35,0.3)); }
        .section-general-faq .section-title::after { background: linear-gradient(90deg, var(--accent-purple), rgba(139,92,246,0.3)); }

        /* ── Prediction Card Tip Label ─────────────────── */
        .prediction-card-tip::before { content: "TIP"; display: inline-block; font-size: 0.65rem; font-weight: 800; letter-spacing: 1px; color: var(--accent-gold); background: rgba(245,166,35,0.12); padding: 2px 6px; border-radius: 4px; margin-right: 6px; vertical-align: middle; }

        /* ── Button Loading Spinner ────────────────────── */
        .btn-loading { pointer-events: none; opacity: 0.7; position: relative; color: transparent !important; }
        .btn-loading::after { content: ""; position: absolute; width: 18px; height: 18px; top: 50%; left: 50%; margin: -9px 0 0 -9px; border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff; border-radius: 50%; animation: btn-spin 0.6s linear infinite; }
        @keyframes btn-spin { to { transform: rotate(360deg); } }

        /* ── Language Switcher ─────────────────────────────
           Editorial-magazine pill on desktop. Mobile burger
           collapses the dropdown into an always-visible flag
           tile row so picking a language is one tap, not two. */
        .lang-switcher { position: relative; margin-left: 12px; }
        .lang-switcher-toggle {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            height: 38px;
            padding: 0 14px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: var(--radius-sm);
            color: var(--text-white);
            font-family: var(--font-body);
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.01em;
            line-height: 1;
            cursor: pointer;
            transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
        }
        .lang-switcher-toggle:hover,
        .lang-switcher-toggle[aria-expanded="true"] {
            background: rgba(245, 166, 35, 0.08);
            border-color: rgba(245, 166, 35, 0.42);
            color: #fff;
            box-shadow: 0 0 0 1px rgba(245, 166, 35, 0.12), 0 4px 14px rgba(245, 166, 35, 0.18);
        }
        .lang-switcher-toggle .lang-flag { display: inline-flex; line-height: 0; }
        .lang-switcher-toggle .lang-flag img {
            width: 26px;
            height: 18px;
            border-radius: 3px;
            box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18), 0 1px 4px rgba(0, 0, 0, 0.5);
            display: block;
            object-fit: cover;
        }
        .lang-switcher-toggle .lang-name { white-space: nowrap; }
        .lang-switcher-toggle .lang-chevron { opacity: 0.6; transition: transform 0.25s ease, opacity 0.18s ease, color 0.18s ease; }
        .lang-switcher-toggle:hover .lang-chevron { opacity: 1; }
        .lang-switcher-toggle[aria-expanded="true"] .lang-chevron {
            transform: rotate(180deg);
            opacity: 1;
            color: var(--accent-gold);
        }

        /* Dropdown */
        .lang-switcher-menu {
            position: absolute;
            right: 0;
            top: calc(100% + 10px);
            min-width: 240px;
            padding: 8px;
            margin: 0;
            list-style: none;
            background: rgba(10, 7, 14, 0.96);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 14px;
            box-shadow: 0 24px 50px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.04);
            z-index: 1000;
            backdrop-filter: blur(14px) saturate(140%);
            -webkit-backdrop-filter: blur(14px) saturate(140%);
            transform-origin: top right;
            animation: lang-menu-in 0.22s cubic-bezier(0.16, 1, 0.3, 1);
        }
        @keyframes lang-menu-in {
            from { opacity: 0; transform: scale(0.94) translateY(-6px); }
            to   { opacity: 1; transform: scale(1) translateY(0); }
        }
        .lang-switcher-menu li { margin: 0; position: relative; }
        .lang-switcher-menu a {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 10px 14px 10px 18px;
            border-radius: 10px;
            color: var(--text-white);
            text-decoration: none;
            font-family: var(--font-body);
            font-size: 0.95rem;
            font-weight: 400;
            letter-spacing: 0.005em;
            position: relative;
            transition: background 0.15s ease, padding-left 0.18s ease;
        }
        .lang-switcher-menu a::before {
            content: '';
            position: absolute;
            left: 6px;
            top: 50%;
            transform: translateY(-50%);
            width: 3px;
            height: 0;
            background: var(--accent-gold);
            border-radius: 2px;
            box-shadow: 0 0 0 transparent;
            transition: height 0.22s ease, box-shadow 0.22s ease;
        }
        .lang-switcher-menu a:hover {
            background: rgba(255, 255, 255, 0.04);
            padding-left: 22px;
        }
        .lang-switcher-menu a:hover::before { height: 18px; }
        .lang-switcher-menu li.is-selected a {
            background: rgba(245, 166, 35, 0.06);
            color: #fff;
        }
        .lang-switcher-menu li.is-selected a::before {
            height: 22px;
            box-shadow: 0 0 8px rgba(245, 166, 35, 0.55);
        }
        .lang-switcher-menu .lang-flag { display: inline-flex; line-height: 0; flex-shrink: 0; }
        .lang-switcher-menu .lang-flag img {
            width: 36px;
            height: 24px;
            border-radius: 4px;
            box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15), 0 2px 6px rgba(0, 0, 0, 0.55);
            display: block;
            object-fit: cover;
        }
        .lang-switcher-menu .lang-code { display: none; }

        @media (max-width: 480px) {
            .lang-switcher-toggle .lang-name { display: none; }
            .lang-switcher-menu { right: -8px; min-width: 220px; }
        }

        /* Mobile burger: replace dropdown with always-visible
           5-tile flag row anchored to the bottom of the menu.
           Pre-empts the [hidden] attribute the JS toggles.    */
        @media (max-width: 768px) {
            .nav.open { flex-wrap: nowrap; }
            .nav.open .lang-switcher {
                position: relative;
                margin: 24px 0 0;
                width: 100%;
                max-width: 360px;
            }
            .nav.open .lang-switcher::before {
                content: 'Language';
                display: block;
                font-family: var(--font-body);
                font-size: 0.7rem;
                letter-spacing: 0.22em;
                text-transform: uppercase;
                color: var(--text-muted);
                text-align: center;
                margin-bottom: 12px;
            }
            .nav.open .lang-switcher-toggle { display: none; }

            .nav.open .lang-switcher-menu,
            .nav.open .lang-switcher-menu[hidden] {
                display: grid !important;
                grid-template-columns: repeat(5, 1fr);
                gap: 8px;
                position: static;
                inset: auto;
                width: 100%;
                max-width: none;
                min-width: 0;
                max-height: none;
                padding: 8px;
                background: rgba(255, 255, 255, 0.025);
                border: 1px solid rgba(255, 255, 255, 0.08);
                border-radius: 14px;
                box-shadow: none;
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
                animation: none;
                overflow: visible;
            }
            .nav.open .lang-switcher-menu li { width: 100%; }
            .nav.open .lang-switcher-menu a {
                flex-direction: column;
                gap: 6px;
                padding: 10px 4px;
                border-radius: 10px;
                background: rgba(255, 255, 255, 0.03);
                border: 1px solid rgba(255, 255, 255, 0.05);
                font-family: var(--font-display);
                font-size: 0.78rem;
                font-weight: 700;
                letter-spacing: 0.06em;
                text-transform: uppercase;
                color: var(--text-gray);
                transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
            }
            .nav.open .lang-switcher-menu a::before { display: none; }
            .nav.open .lang-switcher-menu .lang-flag img {
                width: 36px;
                height: 24px;
                border-radius: 3px;
                box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 2px 4px rgba(0, 0, 0, 0.4);
            }
            .nav.open .lang-switcher-menu .lang-name { display: none; }
            .nav.open .lang-switcher-menu .lang-code { display: block; line-height: 1; }
            .nav.open .lang-switcher-menu li.is-selected a {
                background: rgba(245, 166, 35, 0.1);
                border-color: rgba(245, 166, 35, 0.55);
                color: #fff;
                box-shadow: 0 0 0 1px rgba(245, 166, 35, 0.2);
            }
            .nav.open .lang-switcher-menu li.is-selected a .lang-code { color: var(--accent-gold); }
            .nav.open .lang-switcher-menu li:not(.is-selected) a:active {
                background: rgba(255, 255, 255, 0.06);
                border-color: rgba(255, 255, 255, 0.18);
            }
        }

        /* ── Premium Page ──────────────────────────────── */
        .prem-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; color: var(--accent-gold); padding: 6px 12px; border: 1px solid rgba(245, 166, 35, 0.25); border-radius: 999px; background: rgba(245, 166, 35, 0.06); }
        .prem-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-gold); box-shadow: 0 0 10px var(--accent-gold); animation: prem-pulse 2.4s ease-in-out infinite; }
        @keyframes prem-pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.85); } }

        /* Hero */
        .prem-hero { padding: 28px 0 56px; }
        .prem-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
        .prem-hero-left { max-width: 560px; }
        .prem-h1 { font-family: var(--font-display); font-size: clamp(2.4rem, 5.4vw, 4.4rem); font-weight: 800; line-height: 0.96; letter-spacing: -0.01em; color: var(--text-white); margin: 18px 0 18px; }
        .prem-h1::after { content: '.'; color: var(--accent-gold); }
        .prem-lede { font-size: clamp(1rem, 1.2vw, 1.15rem); line-height: 1.65; color: var(--text-gray); max-width: 50ch; margin-bottom: 32px; }
        .prem-hero-meta { display: flex; align-items: stretch; gap: 0; padding: 18px 0; margin-bottom: 28px; border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); }
        .prem-meta-item { flex: 1; display: flex; flex-direction: column; gap: 4px; padding: 0 18px; border-right: 1px solid var(--card-border); }
        .prem-meta-item:first-child { padding-left: 0; }
        .prem-meta-item:last-child { border-right: none; padding-right: 0; }
        .prem-meta-item strong { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--text-white); letter-spacing: -0.01em; line-height: 1; }
        .prem-meta-unit { font-size: 0.85rem; color: var(--accent-gold); margin-left: 4px; font-weight: 700; }
        .prem-meta-item span { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
        .prem-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
        .prem-btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 26px; background: linear-gradient(135deg, var(--accent-gold) 0%, #ff8a3d 100%); color: #1a0e05; font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; border: none; border-radius: var(--radius-md); cursor: pointer; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 6px 24px rgba(245, 166, 35, 0.28), inset 0 1px 0 rgba(255,255,255,0.35); }
        .prem-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(245, 166, 35, 0.38), inset 0 1px 0 rgba(255,255,255,0.4); color: #1a0e05; }
        .prem-btn-primary:active { transform: translateY(0); }
        .prem-btn-primary:disabled { cursor: not-allowed; transform: none; }
        .prem-btn-block { width: 100%; padding: 16px 24px; }
        .prem-btn-arrow { transition: transform 0.2s; }
        .prem-btn-primary:hover .prem-btn-arrow { transform: translateX(4px); }
        .prem-btn-ghost { display: inline-flex; align-items: center; padding: 14px 22px; color: var(--text-white); border: 1px solid var(--card-border); background: transparent; border-radius: var(--radius-md); font-weight: 600; text-decoration: none; transition: border-color 0.2s, background 0.2s; }
        .prem-btn-ghost:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.04); color: var(--text-white); }

        /* Hero preview card */
        .prem-hero-right { position: relative; }
        .prem-preview { position: relative; padding: 22px; border-radius: 18px; background: linear-gradient(180deg, rgba(20, 14, 28, 0.95) 0%, rgba(12, 8, 18, 0.98) 100%); border: 1px solid rgba(245, 166, 35, 0.2); box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.04); overflow: hidden; transform: rotate(0.5deg); }
        .prem-preview-glow { position: absolute; top: -40%; right: -30%; width: 80%; height: 80%; background: radial-gradient(circle, rgba(245, 166, 35, 0.18) 0%, transparent 60%); pointer-events: none; }
        .prem-preview::before { content: ''; position: absolute; inset: 0; border-radius: 18px; padding: 1px; background: linear-gradient(135deg, rgba(245, 166, 35, 0.4) 0%, transparent 30%, transparent 70%, rgba(45, 127, 249, 0.4) 100%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
        .prem-preview-tag { position: relative; display: inline-flex; align-items: center; gap: 8px; font-size: 0.65rem; letter-spacing: 0.18em; font-weight: 800; color: var(--accent-gold); padding: 5px 10px; background: rgba(245, 166, 35, 0.1); border-radius: 4px; margin-bottom: 14px; }
        .prem-pulse { width: 6px; height: 6px; background: var(--accent-gold); border-radius: 50%; box-shadow: 0 0 8px var(--accent-gold); animation: prem-pulse 1.6s infinite; }
        .prem-preview-match { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
        .prem-preview-team { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; color: var(--text-white); flex: 1; }
        .prem-preview-team:last-child { text-align: right; }
        .prem-preview-vs { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; }
        .prem-preview-bar { position: relative; padding: 12px 14px; background: rgba(255,255,255,0.03); border-radius: 10px; margin-bottom: 14px; border: 1px solid rgba(255,255,255,0.05); }
        .prem-preview-bar-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; color: var(--text-gray); margin-bottom: 6px; }
        .prem-preview-bar-row-sm { font-size: 0.72rem; color: var(--text-muted); margin-top: 6px; margin-bottom: 0; }
        .prem-preview-pct { font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; color: var(--pred-home); }
        .prem-preview-bar-track { height: 6px; background: rgba(255,255,255,0.06); border-radius: 4px; overflow: hidden; }
        .prem-preview-bar-fill { height: 100%; background: linear-gradient(90deg, var(--pred-home) 0%, #6ee7b7 100%); border-radius: 4px; box-shadow: 0 0 12px rgba(52, 211, 153, 0.4); }
        .prem-preview-block { position: relative; padding: 12px 14px; background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.05); border-radius: 10px; margin-bottom: 14px; }
        .prem-preview-section-title { font-size: 0.65rem; letter-spacing: 0.18em; color: var(--accent-gold); text-transform: uppercase; font-weight: 800; margin-bottom: 8px; }
        .prem-preview-block p { font-size: 0.83rem; color: var(--text-gray); line-height: 1.5; margin-bottom: 6px; }
        .prem-preview-muted { color: var(--text-muted) !important; font-size: 0.78rem !important; font-style: italic; margin-bottom: 0 !important; }
        .prem-preview-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
        .prem-preview-cell { padding: 10px 12px; background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.05); border-radius: 8px; display: flex; justify-content: space-between; align-items: center; }
        .prem-cell-label { font-size: 0.65rem; color: var(--text-muted); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; }
        .prem-cell-value { font-family: var(--font-display); font-size: 0.95rem; font-weight: 800; color: var(--text-white); letter-spacing: 0.02em; }
        .prem-cell-gold { color: var(--accent-gold); letter-spacing: 0.05em; }
        .prem-cell-low { color: var(--pred-home); font-size: 0.75rem; padding: 2px 8px; background: rgba(52,211,153,0.12); border-radius: 4px; }
        .prem-cell-mono { font-family: 'SF Mono', 'Monaco', 'Courier New', monospace; font-size: 0.75rem; color: var(--accent-gold); }

        /* Features */
        .prem-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 32px 0 56px; }
        .prem-feat { position: relative; padding: 28px 24px 24px; background: rgba(255,255,255,0.025); border: 1px solid var(--card-border); border-radius: var(--radius-lg); transition: transform 0.25s, border-color 0.25s, background 0.25s; overflow: hidden; }
        .prem-feat:hover { transform: translateY(-3px); border-color: rgba(245, 166, 35, 0.3); background: rgba(255,255,255,0.04); }
        .prem-feat-num { position: absolute; top: 16px; right: 20px; font-family: var(--font-display); font-size: 2.6rem; font-weight: 800; color: rgba(245, 166, 35, 0.12); letter-spacing: -0.02em; }
        .prem-feat-icon { width: 40px; height: 40px; color: var(--accent-gold); margin-bottom: 16px; }
        .prem-feat-icon svg { width: 100%; height: 100%; }
        .prem-feat h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--text-white); margin-bottom: 8px; letter-spacing: 0.005em; }
        .prem-feat p { font-size: 0.92rem; color: var(--text-gray); line-height: 1.6; }

        /* Pricing card */
        .prem-pricing-wrap { padding: 16px 0 56px; scroll-margin-top: 80px; }
        .prem-pricing-card { position: relative; padding: 1px; border-radius: 22px; background: linear-gradient(135deg, rgba(245, 166, 35, 0.45) 0%, rgba(45, 127, 249, 0.25) 50%, rgba(245, 166, 35, 0.35) 100%); overflow: hidden; }
        .prem-pricing-aurora { position: absolute; inset: -60%; background: conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(245, 166, 35, 0.18) 60deg, transparent 120deg, rgba(45, 127, 249, 0.18) 240deg, transparent 300deg); animation: prem-aurora 18s linear infinite; pointer-events: none; }
        @keyframes prem-aurora { to { transform: rotate(360deg); } }
        .prem-pricing-grid { position: relative; display: grid; grid-template-columns: 1fr 1.15fr; gap: 0; background: linear-gradient(180deg, #15101e 0%, #0e0a16 100%); border-radius: 21px; overflow: hidden; }
        .prem-pricing-left { padding: 40px 36px; border-right: 1px solid rgba(255,255,255,0.06); position: relative; }
        .prem-pricing-right { padding: 40px 36px; }
        .prem-price { display: flex; align-items: baseline; gap: 6px; margin: 18px 0 6px; }
        .prem-price-num { font-family: var(--font-display); font-size: clamp(3.5rem, 7vw, 5.4rem); font-weight: 800; line-height: 0.9; color: var(--text-white); letter-spacing: -0.02em; background: linear-gradient(180deg, #fff 0%, #cbd2dc 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .prem-price-unit { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--accent-gold); }
        .prem-price-meta { color: var(--text-gray); font-size: 0.95rem; margin-bottom: 26px; }
        .prem-status { padding: 10px 14px; background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.3); color: #10b981; border-radius: var(--radius-sm); font-weight: 700; font-size: 0.9rem; margin-bottom: 14px; }
        .prem-login-prompt { margin-top: 18px; }
        .prem-login-prompt p { color: var(--text-gray); font-size: 0.88rem; margin-bottom: 6px; }
        .prem-login-prompt a { color: var(--accent-gold); font-weight: 700; }
        .prem-pricing-foot { font-size: 0.78rem; color: var(--text-muted); margin-top: 18px; line-height: 1.55; }

        .prem-checklist { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-direction: column; gap: 14px; }
        .prem-checklist li { display: flex; gap: 14px; align-items: flex-start; }
        .prem-check { flex-shrink: 0; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(245, 166, 35, 0.12); color: var(--accent-gold); border: 1px solid rgba(245, 166, 35, 0.25); }
        .prem-check svg { width: 14px; height: 14px; }
        .prem-checklist strong { display: block; font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--text-white); letter-spacing: 0.005em; line-height: 1.2; margin-bottom: 2px; }
        .prem-checklist em { font-style: normal; font-size: 0.82rem; color: var(--text-muted); display: block; }

        /* Earn KC */
        .prem-earn { padding: 24px 0 64px; }
        .prem-earn-head { text-align: center; margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto; }
        .prem-earn-head h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--text-white); margin-bottom: 8px; letter-spacing: 0.005em; }
        .prem-earn-head p { color: var(--text-gray); font-size: 0.95rem; }
        .prem-earn-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
        .prem-earn-card { position: relative; padding: 26px 22px; background: rgba(255,255,255,0.025); border: 1px solid var(--card-border); border-radius: var(--radius-lg); transition: transform 0.25s, border-color 0.25s; }
        .prem-earn-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.18); }
        .prem-earn-badge { position: absolute; top: 14px; right: 14px; font-family: var(--font-display); font-size: 0.78rem; font-weight: 800; padding: 4px 10px; background: rgba(45, 127, 249, 0.14); color: var(--primary); border-radius: 999px; letter-spacing: 0.04em; border: 1px solid rgba(45, 127, 249, 0.25); }
        .prem-earn-badge-orange { background: rgba(255, 107, 44, 0.14); color: var(--accent-orange); border-color: rgba(255, 107, 44, 0.25); }
        .prem-earn-badge-gold { background: rgba(245, 166, 35, 0.14); color: var(--accent-gold); border-color: rgba(245, 166, 35, 0.3); }
        .prem-earn-icon { width: 36px; height: 36px; color: var(--text-white); opacity: 0.7; margin-bottom: 14px; }
        .prem-earn-icon svg { width: 100%; height: 100%; }
        .prem-earn-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: var(--text-white); margin-bottom: 6px; letter-spacing: 0.005em; }
        .prem-earn-card p { font-size: 0.88rem; color: var(--text-gray); line-height: 1.55; }

        /* Article body — editorial long-read */
        .prem-article {
            max-width: 720px;
            margin: 0 auto;
            padding: 56px 24px 88px;
            counter-reset: prem-chapter;
            position: relative;
            font-family: 'Georgia', 'Iowan Old Style', 'Apple Garamond', 'Baskerville', 'Times New Roman', serif;
        }
        .prem-article::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 64px;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
        }
        .prem-article::after {
            content: '§';
            position: absolute;
            top: 14px;
            left: 50%;
            transform: translateX(-50%);
            font-family: 'Georgia', serif;
            font-style: italic;
            font-size: 1.4rem;
            color: var(--accent-gold);
            background: var(--bg-dark);
            padding: 0 14px;
            line-height: 1;
        }

        .prem-article h2.section-title {
            counter-increment: prem-chapter;
            font-family: var(--font-display);
            font-size: clamp(1.85rem, 3.4vw, 2.6rem);
            font-weight: 800;
            line-height: 1.05;
            letter-spacing: -0.005em;
            color: var(--text-white);
            text-align: left;
            text-transform: none;
            margin: 64px 0 28px;
            padding: 0 0 0 0;
            position: relative;
        }
        .prem-article h2.section-title::after {
            content: none;
        }
        .prem-article h2.section-title::before {
            content: counter(prem-chapter, decimal-leading-zero);
            display: block;
            font-family: 'Georgia', serif;
            font-style: italic;
            font-weight: 400;
            font-size: 0.85rem;
            letter-spacing: 0.32em;
            color: var(--accent-gold);
            text-transform: uppercase;
            margin-bottom: 14px;
            padding-left: 2px;
        }
        .prem-article h2.section-title:first-of-type {
            margin-top: 0;
        }

        .prem-article h3 {
            font-family: var(--font-display);
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--text-white);
            margin: 36px 0 14px;
            letter-spacing: 0.005em;
            position: relative;
            padding-left: 18px;
        }
        .prem-article h3::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.55em;
            width: 8px;
            height: 8px;
            background: var(--accent-gold);
            transform: rotate(45deg);
            box-shadow: 0 0 10px rgba(245, 166, 35, 0.5);
        }

        .prem-article p {
            font-family: 'Georgia', 'Iowan Old Style', 'Baskerville', 'Times New Roman', serif !important;
            font-size: 1.08rem !important;
            line-height: 1.78 !important;
            color: #d4dae3 !important;
            margin: 0 0 22px !important;
            text-rendering: geometricPrecision;
            -webkit-font-smoothing: antialiased;
        }

        /* Lede paragraph — first p after first h2 */
        .prem-article h2.section-title:first-of-type + p {
            font-size: 1.32rem !important;
            line-height: 1.6 !important;
            color: #f1f3f5 !important;
            font-style: italic;
            margin-bottom: 36px !important;
            padding-bottom: 28px;
            border-bottom: 1px solid rgba(245, 166, 35, 0.18);
            position: relative;
        }

        /* Drop cap on second paragraph (start of body proper) */
        .prem-article h2.section-title:first-of-type + p + p::first-letter {
            font-family: 'Georgia', 'Baskerville', serif;
            float: left;
            font-size: 4.6rem;
            line-height: 0.85;
            font-weight: 700;
            padding: 6px 14px 0 0;
            margin: 4px 4px 0 0;
            color: var(--accent-gold);
            text-shadow: 0 2px 24px rgba(245, 166, 35, 0.35);
        }

        /* Each paragraph that directly follows an h2 (other than the lede) gets a subtle accent */
        .prem-article h2.section-title + p::first-line {
            font-variant: small-caps;
            letter-spacing: 0.04em;
            color: var(--text-white);
        }

        .prem-article a,
        .prem-article p a {
            color: var(--accent-gold) !important;
            text-decoration: none;
            background-image: linear-gradient(transparent 92%, rgba(245, 166, 35, 0.45) 92%);
            background-repeat: no-repeat;
            background-size: 100% 100%;
            transition: background-size 0.3s, color 0.2s;
            padding: 0 1px;
        }
        .prem-article a:hover,
        .prem-article p a:hover {
            color: #ffd97a !important;
            background-image: linear-gradient(transparent 0%, rgba(245, 166, 35, 0.18) 0%);
        }

        /* Section divider between h2 sections (not before the first) */
        .prem-article h2.section-title:not(:first-of-type) {
            padding-top: 56px;
        }
        .prem-article h2.section-title:not(:first-of-type)::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 56px;
            height: 1px;
            background: linear-gradient(90deg, var(--accent-gold), transparent);
            opacity: 0.6;
            display: block;
        }

        @media (max-width: 720px) {
            .prem-article { padding: 44px 18px 64px; max-width: none; }
            .prem-article h2.section-title { font-size: 1.7rem; margin: 48px 0 20px; }
            .prem-article h2.section-title:not(:first-of-type) { padding-top: 40px; }
            .prem-article p { font-size: 1.02rem !important; line-height: 1.72 !important; }
            .prem-article h2.section-title:first-of-type + p { font-size: 1.18rem !important; padding-bottom: 22px; margin-bottom: 28px !important; }
            .prem-article h2.section-title:first-of-type + p + p::first-letter { font-size: 3.6rem; padding-right: 10px; }
        }

        /* Tablet */
        @media (max-width: 1024px) {
            .prem-hero-grid { grid-template-columns: 1fr; gap: 36px; }
            .prem-hero-left { max-width: none; }
            .prem-preview { transform: none; max-width: 520px; margin: 0 auto; }
            .prem-features { grid-template-columns: repeat(3, 1fr); gap: 12px; }
            .prem-pricing-grid { grid-template-columns: 1fr; }
            .prem-pricing-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
            .prem-earn-grid { grid-template-columns: repeat(3, 1fr); }
        }
        @media (max-width: 720px) {
            .prem-features, .prem-earn-grid { grid-template-columns: 1fr; }
            .prem-hero-meta { flex-wrap: wrap; }
            .prem-meta-item { flex: 1 1 calc(50% - 1px); padding: 8px 12px; border-right: 1px solid var(--card-border); }
            .prem-meta-item:nth-child(2n) { border-right: none; }
            .prem-meta-item:first-child, .prem-meta-item:last-child { padding-left: 12px; padding-right: 12px; }
            .prem-pricing-left, .prem-pricing-right { padding: 28px 22px; }
            .prem-hero-ctas { flex-direction: column; }
            .prem-btn-primary, .prem-btn-ghost { width: 100%; }
        }

        /* ── Match Page H1 ─────────────────────────────── */
        .match-h1 { font-family: var(--font-display); font-size: clamp(1.4rem, 4vw, 2rem); font-weight: 800; text-align: center; margin: 12px 0 8px; color: var(--text-white); letter-spacing: 0.5px; }
        .match-h1-meta { display: block; font-size: 0.85rem; font-weight: 400; color: var(--text-gray); letter-spacing: 0.2px; margin-top: 4px; }
