:root {
            --primary-bg: #0a0a0a;
            --secondary-bg: #1a1a1a;
            --accent-bg: #2a2a2a;
            --text-primary: #ffffff;
            --text-secondary: #b3b3b3;
            --text-muted: #666666;
            --neon-blue: #00d4ff;
            --neon-green: #00ff88;
            --neon-purple: #8b5cf6;
            --neon-red: #ff006e;
            --neon-yellow: #ffff00;
            --gradient-primary: linear-gradient(135deg, #00d4ff, #8b5cf6);
            --gradient-secondary: linear-gradient(135deg, #00ff88, #00d4ff);
            --glass-bg: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.1);
            --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.3);
            --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: var(--primary-bg);
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(0, 255, 136, 0.1) 0%, transparent 50%);
            color: var(--text-primary);
            min-height: 100vh;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Navigation Styles */
        .main-nav {
            background: var(--secondary-bg);
            border-bottom: 1px solid var(--glass-border);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 500;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-login-btn {
            background: var(--neon-green);
            color: var(--primary-bg);
            border: none;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-left: auto;
        }

        .nav-login-btn:hover {
            background: var(--neon-blue);
            color: white;
            transform: translateY(-2px);
        }

        .nav-login-btn.logged-in {
            background: var(--accent-bg);
            color: var(--neon-green);
            border: 1px solid var(--neon-green);
        }

        .nav-links {
            display: flex;
            gap: 20px;
            list-style: none;
        }

        .nav-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 20px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .nav-link:hover {
            color: var(--neon-blue);
            background: var(--glass-bg);
        }

        .nav-link.active {
            color: var(--text-primary);
            background: var(--neon-blue);
        }

        .page-content {
            display: none;
        }

        .page-content.active {
            display: block;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px;
            animation: fadeIn 0.6s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        h1 {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 30px;
            text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
        }

        .predictor {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: var(--shadow-card);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .predictor:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-glow), var(--shadow-card);
        }

        .league-selector {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .league-btn {
            padding: 12px 30px;
            border: none;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .league-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .league-btn:hover::before {
            left: 100%;
        }

        .nba-btn, .wnba-btn, .nfl-btn, .nhl-btn, .mlb-btn, .epl-btn {
            background: var(--secondary-bg);
            color: var(--text-primary);
            border: 1px solid var(--neon-blue);
            box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
        }

        .league-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
        }

        .league-btn:active {
            transform: translateY(-1px);
        }

        .prediction-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            margin-bottom: 30px;
        }

        .team-selector {
            background: var(--accent-bg);
            padding: 20px;
            border-radius: 15px;
            border: 1px solid var(--glass-border);
        }

        .team-selector h3 {
            color: var(--neon-blue);
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        select {
            width: 100%;
            padding: 12px;
            background: var(--secondary-bg);
            color: var(--text-primary);
            border: 1px solid var(--glass-border);
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        select:focus {
            outline: none;
            border-color: var(--neon-blue);
            box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
        }

        select:hover {
            border-color: var(--neon-green);
        }

        .result-card {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 30px;
            margin-top: 30px;
            box-shadow: var(--shadow-card);
        }

        .result-card h3 {
            color: var(--neon-green);
            margin-bottom: 20px;
            font-size: 1.5rem;
        }

        .prediction-btn {
            width: 100%;
            max-width: 300px;
            margin: 30px auto;
            display: block;
            padding: 15px 40px;
            background: var(--gradient-primary);
            color: var(--text-primary);
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }

        .prediction-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .prediction-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .prediction-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
        }

        .loading {
            display: none;
            text-align: center;
            margin: 40px 0;
        }

        .loading-spinner {
            width: 50px;
            height: 50px;
            border: 3px solid var(--glass-border);
            border-top: 3px solid var(--neon-blue);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .score-prediction {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--accent-bg);
            padding: 25px;
            border-radius: 15px;
            margin: 20px 0;
            border: 1px solid var(--glass-border);
        }

        .team-score {
            text-align: center;
            flex: 1;
        }

        .team-score strong {
            color: var(--text-secondary);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .team-score h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin: 10px 0;
            background: var(--gradient-secondary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .vs-divider {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--neon-purple);
            padding: 0 20px;
        }

        .total-score {
            text-align: center;
            margin: 20px 0;
            padding: 15px;
            background: var(--accent-bg);
            border-radius: 10px;
            border: 1px solid var(--glass-border);
        }

        .social-insights {
            margin-top: 20px;
            padding: 20px;
            background: var(--accent-bg);
            border-radius: 15px;
            border: 1px solid var(--glass-border);
            color: var(--text-secondary);
        }

        .social-source {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 10px 0;
            padding: 15px;
            background: var(--secondary-bg);
            border-radius: 10px;
            border: 1px solid var(--glass-border);
            color: var(--text-secondary);
        }

        .social-icon {
            width: 24px;
            height: 24px;
            fill: var(--neon-red);
        }

        .historical-data {
            margin-top: 20px;
            padding: 20px;
            background: var(--accent-bg);
            border-radius: 15px;
            border: 1px solid var(--glass-border);
            color: var(--text-secondary);
        }

        .historical-data strong {
            color: var(--neon-green);
        }

        .odds-container {
            margin-top: 20px;
            padding: 25px;
            background: #000000;
            border-radius: 15px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .odds-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px;
            background: #000000;
            border-radius: 5px;
            margin-bottom: 10px;
        }

        .bookmaker-tabs {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
            overflow-x: auto;
            padding: 5px;
        }

        .bookmaker-tab {
            padding: 8px 16px;
            background: var(--secondary-bg);
            color: var(--text-secondary);
            border: 1px solid var(--glass-border);
            border-radius: 25px;
            cursor: pointer;
            white-space: nowrap;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .bookmaker-tab.active {
            background: var(--neon-blue);
            color: var(--text-primary);
            box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
        }

        .prop-tab {
            padding: 8px 16px;
            background: var(--secondary-bg);
            color: var(--text-secondary);
            border: 1px solid var(--glass-border);
            border-radius: 25px;
            cursor: pointer;
            white-space: nowrap;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .prop-tab.active {
            background: #FFD700;
            color: var(--primary-bg);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
            font-weight: bold;
        }

        .betting-markets {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 15px;
        }

        .market-card {
            background: #111111;
            padding: 20px;
            border-radius: 15px;
            border: 1px solid var(--glass-border);
            transition: all 0.3s ease;
            color: var(--text-primary);
        }

        .market-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(0, 212, 255, 0.2);
        }

        .market-title {
            font-weight: bold;
            margin-bottom: 10px;
            color: var(--neon-blue);
        }

        .odds-value {
            font-size: 1.2em;
            font-weight: bold;
            color: var(--neon-green);
        }

        .odds-change {
            font-size: 0.9em;
            color: var(--text-secondary);
        }

        .odds-trend-up {
            color: #28a745;
        }

        .odds-trend-down {
            color: #dc3545;
        }

        .prop-bets {
            margin-top: 20px;
            background: var(--accent-bg);
            border-radius: 15px;
            padding: 25px;
            margin: 25px 0;
            border: 1px solid var(--glass-border);
        }

        .prop-bets h4 {
            color: var(--neon-purple);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .prop-bet-card {
            background: var(--secondary-bg);
            border: 1px solid var(--glass-border);
            padding: 15px;
            margin: 10px 0;
            border-radius: 10px;
            color: var(--text-primary);
        }

        .live-score {
            font-size: 1.6em;
            font-weight: bold;
            text-align: center;
            padding: 15px;
            background: var(--accent-bg);
            border-radius: 12px;
            margin: 15px 0;
            border: 1px solid var(--glass-border);
            color: var(--text-primary);
            box-shadow: var(--shadow-card);
            backdrop-filter: blur(20px);
            position: relative;
            overflow: hidden;
        }

        .live-score::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--glass-bg);
            z-index: -1;
            border-radius: 15px;
        }

        .live-score > div:first-child {
            color: var(--neon-red);
            font-size: 0.8rem;
            font-weight: 700;
            margin-bottom: 10px;
            letter-spacing: 2px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.6; }
        }

        .prediction-graph {
            width: 100%;
            height: 200px;
            margin: 20px 0;
            background: var(--accent-bg);
            border-radius: 15px;
            padding: 15px;
            border: 1px solid var(--glass-border);
        }

        .insights-dashboard {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .insight-card {
            background: var(--accent-bg);
            padding: 20px;
            border-radius: 15px;
            border: 1px solid var(--glass-border);
            color: var(--text-primary);
        }

        .prop-categories {
            margin-bottom: 15px;
        }

        .prop-category-tabs {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
            overflow-x: auto;
            padding: 5px;
        }

        .prop-player-card {
            background: var(--secondary-bg);
            padding: 15px;
            margin: 10px 0;
            border-radius: 10px;
            border: 1px solid var(--glass-border);
            transition: all 0.3s ease;
        }

        .prop-player-card:hover {
            border-color: var(--neon-green);
            box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
        }

        .prop-player-name {
            font-weight: bold;
            margin-bottom: 8px;
            color: var(--text-primary);
        }

        .prop-details {
            display: grid;
            grid-template-columns: 1fr auto auto;
            gap: 10px;
            align-items: center;
        }

        .prop-stat {
            font-size: 14px;
            color: var(--text-secondary);
        }

        .prop-prediction {
            background: var(--secondary-bg);
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: bold;
            color: var(--neon-green);
            border: 1px solid var(--neon-green);
        }

        .confidence-meter {
            position: relative;
            background: var(--secondary-bg);
            height: 8px;
            border-radius: 4px;
            overflow: hidden;
            margin: 10px 0;
            border: 1px solid var(--glass-border);
        }

        .confidence-bar {
            height: 100%;
            background: var(--gradient-secondary);
            width: 0%;
            transition: width 0.3s ease;
            border-radius: 4px;
        }

        .confidence-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-weight: bold;
            font-size: 12px;
            color: var(--text-primary);
        }

        .real-time-indicator {
            display: inline-block;
            width: 10px;
            height: 10px;
            background: #28a745;
            border-radius: 50%;
            animation: pulse 2s infinite;
            margin-right: 5px;
        }

        @keyframes pulse {
            0% { opacity: 1; }
            50% { opacity: 0.5; }
            100% { opacity: 1; }
        }

        .update-timestamp {
            font-size: 12px;
            color: #666;
            text-align: center;
            margin-top: 10px;
        }

        @media (max-width: 768px) {
            .container {
                padding: 12px;
            }
            
            h1 {
                font-size: 1.6rem;
                margin-bottom: 20px;
            }
            
            .league-selector {
                gap: 8px;
            }
            
            .league-btn {
                padding: 8px 16px;
                font-size: 11px;
            }
            
            .prediction-container {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .betting-markets {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            
            .insights-dashboard {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .odds-header {
                flex-direction: column;
                align-items: stretch;
            }
            
            .bookmaker-tabs {
                justify-content: center;
            }
            
            .live-score {
                font-size: 1.2em;
                padding: 12px;
                margin: 12px 0;
                border-radius: 10px;
            }
            
            .live-score > div:first-child {
                font-size: 0.6rem;
                margin-bottom: 6px;
            }
            
            .live-score .team1-score,
            .live-score .team2-score {
                font-size: 1.5em !important;
            }
            
            .live-score .game-period {
                font-size: 0.7em !important;
                margin-top: 6px !important;
            }
            
            .score-prediction {
                flex-direction: column;
                gap: 15px;
                padding: 20px;
            }
            
            .vs-divider {
                order: 2;
                padding: 10px 0;
            }
            
            .team-score h2 {
                font-size: 1.6rem;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--secondary-bg);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--neon-blue);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--neon-green);
        }

        /* Loading animation */
        .loading p {
            color: var(--neon-blue);
            font-weight: 600;
            animation: pulse 1.5s infinite;
        }
        
        /* Subscription styles */
        .subscription-banner {
            background: linear-gradient(135deg, #00d4ff, #8b5cf6);
            padding: 20px;
            border-radius: 15px;
            margin: 20px 0;
            text-align: center;
            box-shadow: 0 8px 32px rgba(0, 212, 255, 0.3);
        }

        .subscription-banner h3 {
            color: white;
            margin-bottom: 10px;
            font-size: 1.5rem;
        }

        .subscription-banner p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 15px;
        }

        .subscription-plans {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .plan-card {
            background: var(--secondary-bg);
            border: 1px solid var(--glass-border);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .plan-card:hover {
            transform: translateY(-5px);
        }

        .plan-card.featured {
            border: 2px solid var(--neon-green);
            position: relative;
        }

        .plan-card.featured::before {
            content: "BEST VALUE";
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--neon-green);
            color: var(--primary-bg);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
        }

        .plan-price {
            font-size: 2rem;
            font-weight: 700;
            color: var(--neon-blue);
            margin: 10px 0;
        }

        .plan-features {
            list-style: none;
            margin: 20px 0;
        }

        .plan-features li {
            color: var(--text-secondary);
            margin: 8px 0;
            font-size: 14px;
        }

        .referral-section {
            position: relative;
            background: radial-gradient(circle at top left, rgba(0,212,255,0.14), transparent 55%),
                        radial-gradient(circle at bottom right, rgba(0,255,136,0.12), transparent 55%),
                        var(--accent-bg);
            border-radius: 18px;
            padding: 22px 20px 18px;
            margin: 20px 0;
            border: 1px solid var(--glass-border);
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.55), 0 0 18px rgba(0, 212, 255, 0.35);
            overflow: hidden;
        }

        .referral-section::before {
            content: "Referral Rewards";
            position: absolute;
            top: 10px;
            left: 18px;
            font-size: 11px;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.75);
        }

        .referral-section::after {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 18px;
            border: 1px solid rgba(0, 212, 255, 0.35);
            pointer-events: none;
            mix-blend-mode: screen;
        }

        .referral-earnings {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px;
            margin-top: 18px;
        }

        .earnings-card {
            position: relative;
            background: linear-gradient(135deg, rgba(0,212,255,0.08), rgba(139,92,246,0.06));
            border-radius: 14px;
            padding: 14px 12px;
            text-align: left;
            border: 1px solid rgba(255,255,255,0.08);
            box-shadow: 0 6px 20px rgba(0,0,0,0.45);
        }

        .earnings-card::before {
            content: "";
            position: absolute;
            top: -14px;
            right: -18px;
            width: 54px;
            height: 54px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0,255,136,0.8), transparent 60%);
            opacity: 0.28;
        }

        .earnings-amount {
            font-size: 1.35rem;
            font-weight: 800;
            color: var(--neon-green);
            letter-spacing: 0.02em;
        }

        .earnings-card div:last-child {
            margin-top: 4px;
            font-size: 12px;
            color: var(--text-secondary);
        }

        .referral-link {
            background: rgba(0,0,0,0.7);
            border-radius: 12px;
            padding: 10px 12px;
            font-family: monospace;
            word-break: break-all;
            margin: 12px 0 6px;
            border: 1px solid rgba(0,212,255,0.4);
            font-size: 12px;
            color: var(--neon-blue);
            box-shadow: 0 0 14px rgba(0,212,255,0.25);
        }

        .referral-section .signup-btn {
            width: 100%;
            max-width: 220px;
            margin-top: 8px;
        }

        @media (max-width: 768px) {
            .referral-section {
                padding: 18px 14px 14px;
                border-radius: 16px;
                margin-top: 14px;
            }

            .referral-section::before {
                top: 8px;
                left: 14px;
                font-size: 10px;
            }

            .referral-earnings {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .earnings-card {
                padding: 12px 10px;
            }

            .earnings-amount {
                font-size: 1.25rem;
            }

            .referral-link {
                font-size: 11px;
                padding: 8px 10px;
            }

            .referral-section .signup-btn {
                width: 100%;
                max-width: none;
            }
        }

        .auth-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }

        .auth-content {
            background: var(--secondary-bg);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 40px;
            max-width: 500px;
            width: 90%;
            text-align: center;
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 24px;
            cursor: pointer;
        }

        .signup-btn {
            background: var(--gradient-primary);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            margin: 10px;
            transition: all 0.3s ease;
        }

        .signup-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
        }

        .trial-btn {
            background: var(--neon-green);
            color: var(--primary-bg);
        }

        .ad-free-btn {
            background: var(--neon-purple);
            color: white;
        }

        .blur-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(5px);
            z-index: 999;
            display: none;
            align-items: center;
            justify-content: center;
        }

        .paywall-content {
            background: var(--secondary-bg);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 40px;
            max-width: 400px;
            text-align: center;
            animation: slideIn 0.3s ease;
        }

        @keyframes slideIn {
            from { transform: translateY(-50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        /* Parlay History Styles */
        .parlay-history {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 15px;
            padding: 20px;
            margin-top: 20px;
        }

        .parlay-history h4 {
            color: var(--neon-green);
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .history-item {
            background: var(--accent-bg);
            border: 1px solid var(--glass-border);
            border-radius: 10px;
            padding: 12px;
            margin: 8px 0;
            font-size: 13px;
            line-height: 1.5;
        }

        .history-timestamp {
            color: var(--text-muted);
            font-size: 11px;
            margin-top: 5px;
        }

        /* Live Updates Styles */
        .live-updates {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 15px;
            padding: 20px;
            margin-top: 20px;
        }

        .live-updates h4 {
            color: var(--neon-blue);
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .update-item {
            background: var(--accent-bg);
            border-left: 3px solid var(--neon-blue);
            padding: 10px 12px;
            margin: 8px 0;
            border-radius: 5px;
            font-size: 13px;
        }

        .update-league {
            color: var(--neon-yellow);
            font-weight: 600;
            font-size: 11px;
            text-transform: uppercase;
            margin-right: 8px;
        }

        .parlay-builder-compact {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 15px;
            padding: 20px;
            margin-top: 20px;
          	margin-bottom: 60px;
        }

        .parlay-builder-compact h4 {
            color: var(--neon-purple);
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .parlay-input-group {
            margin-bottom: 12px;
        }

        .parlay-input-group label {
            display: block;
            margin-bottom: 6px;
            color: var(--text-secondary);
            font-size: 13px;
        }

        .parlay-select {
            width: 100%;
            padding: 10px;
            background: var(--secondary-bg);
            color: var(--text-primary);
            border: 1px solid var(--glass-border);
            border-radius: 8px;
            font-size: 14px;
        }

        .parlay-btn {
            width: 100%;
            padding: 12px;
            background: var(--gradient-primary);
            color: white;
            border: none;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            margin-top: 10px;
            transition: all 0.3s ease;
        }

        .parlay-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
        }

        .parlay-result {
            background: var(--accent-bg);
            border: 1px solid var(--neon-purple);
            border-radius: 10px;
            padding: 15px;
            margin-top: 15px;
            display: none;
            font-size: 13px;
            line-height: 1.6;
        }

        .parlay-result.show {
            display: block;
        }

        @media (max-width: 768px) {
            .parlay-history h4,
            .live-updates h4,
            .parlay-builder-compact h4 {
                font-size: 1rem;
            }

            .history-item,
            .update-item,
            .parlay-result {
                font-size: 12px;
            }

            .parlay-input-group label {
                font-size: 12px;
            }

            .parlay-select,
            .parlay-btn {
                font-size: 13px;
            }
        }

        /* Mobile Navigation */
        @media (max-width: 768px) {
            .nav-container {
                flex-wrap: wrap;
            }

            .nav-links {
                gap: 5px;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                padding: 5px 0;
                flex: 1;
            }
            
            .nav-link {
                font-size: 11px;
                padding: 6px 10px;
                white-space: nowrap;
            }

            .nav-login-btn {
                font-size: 12px;
                padding: 6px 15px;
                margin-left: 10px;
            }
        }

        /* Live Odds Page Styles */
        .odds-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 18px;
            margin: 24px 0;
        }

        .odds-game-card {
            background: linear-gradient(135deg, rgba(26,26,26,0.95) 0%, rgba(16,16,16,0.98) 100%);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 16px;
            padding: 18px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.4);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .odds-game-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0,212,255,0.15), 0 0 20px rgba(0,212,255,0.1);
            border-color: rgba(0,212,255,0.2);
        }

        .odds-game-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }

        .odds-league-badge {
            background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
            color: #000;
            padding: 5px 12px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            box-shadow: 0 2px 8px rgba(0,212,255,0.3);
        }

        .odds-time {
            font-size: 11px;
            color: #999;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .odds-teams {
            margin: 16px 0;
        }

        .odds-team-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255,255,255,0.04);
        }

        .odds-team-row:last-child {
            border-bottom: none;
        }

        .odds-team-name {
            font-weight: 600;
            color: #fff;
            font-size: 15px;
            line-height: 1.3;
            flex: 1;
            min-width: 0;
            padding-right: 12px;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .odds-line {
            display: flex;
            gap: 10px;
            font-size: 13px;
            flex-shrink: 0;
            align-items: center;
        }

        .odds-value {
            background: rgba(0,212,255,0.12);
            padding: 6px 12px;
            border-radius: 8px;
            color: #00d4ff;
            font-weight: 700;
            font-size: 13px;
            border: 1px solid rgba(0,212,255,0.2);
            min-width: 52px;
            text-align: center;
        }

        .odds-spread {
            color: #00ff88;
            background: rgba(0,255,136,0.12);
            border-color: rgba(0,255,136,0.2);
        }

        /* High-Probability Picks Cards */
        .high-prob-card {
            background: var(--secondary-bg);
            border-radius: 12px;
            border: 1px solid var(--glass-border);
            padding: 10px 12px;
            margin-bottom: 8px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.4);
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .high-prob-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 6px;
            font-size: 13px;
        }

        .high-prob-matchup {
            font-weight: 600;
            color: var(--text-primary);
        }

        .high-prob-odds {
            font-size: 11px;
            color: var(--text-secondary);
        }

        .high-prob-ai {
            font-size: 12px;
            color: var(--text-primary);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 8px;
        }

        .high-prob-confidence {
            font-size: 11px;
            font-weight: 600;
            color: var(--neon-green);
        }

        .high-prob-bullets {
            margin-top: 4px;
            padding-left: 16px;
            font-size: 11px;
            color: var(--text-secondary);
        }

        .high-prob-bullets li {
            margin-bottom: 2px;
        }

        .high-prob-footer {
            margin-top: 6px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 8px;
        }

        .high-prob-btn {
            flex: 0 0 auto;
            padding: 6px 12px;
            border-radius: 999px;
            border: none;
            font-size: 11px;
            font-weight: 600;
            cursor: pointer;
            background: var(--gradient-primary);
            color: #fff;
            box-shadow: 0 4px 12px rgba(0,212,255,0.4);
        }

        .high-prob-btn[disabled] {
            opacity: 0.6;
            cursor: not-allowed;
            box-shadow: none;
        }

        .high-prob-badge {
            font-size: 10px;
            color: var(--neon-blue);
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .high-prob-badge span {
            font-size: 9px;
        }

        @media (max-width: 768px) {
            .high-prob-card {
                padding: 10px;
            }
            .high-prob-header {
                flex-direction: column;
                align-items: flex-start;
            }
            .high-prob-ai {
                flex-direction: column;
                align-items: flex-start;
            }
            .high-prob-footer {
                flex-direction: column;
                align-items: stretch;
            }
            .high-prob-btn {
                width: 100%;
                text-align: center;
            }
        }

        /* AI Parlays Page Styles */
        .parlay-builder-form {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 30px;
            max-width: 600px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            color: var(--text-secondary);
            font-size: 14px;
            font-weight: 600;
        }

        .form-select,
        .form-input {
            width: 100%;
            padding: 12px;
            background: var(--secondary-bg);
            color: var(--text-primary);
            border: 1px solid var(--glass-border);
            border-radius: 10px;
            font-size: 14px;
        }

        .form-select:focus,
        .form-input:focus {
            outline: none;
            border-color: var(--neon-blue);
        }

        .games-checklist {
            max-height: 300px;
            overflow-y: auto;
            background: var(--accent-bg);
            border-radius: 10px;
            padding: 15px;
        }

        .game-checkbox-item {
            display: flex;
            align-items: center;
            padding: 10px;
            margin: 5px 0;
            background: var(--secondary-bg);
            border-radius: 8px;
            cursor: pointer;
        }

        .game-checkbox-item:hover {
            border: 1px solid var(--neon-blue);
        }

        .game-checkbox-item input {
            margin-right: 10px;
        }

        /* History Page Styles */
        .history-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .history-card {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 15px;
        }

        .history-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .history-date {
            font-size: 12px;
            color: var(--text-muted);
        }

        .history-result {
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 700;
        }

        .history-result.pending {
            background: var(--neon-yellow);
            color: var(--primary-bg);
        }

        .history-result.won {
            background: var(--neon-green);
            color: var(--primary-bg);
        }

        .history-result.lost {
            background: var(--neon-red);
            color: white;
        }

        .history-picks {
            margin: 10px 0;
            padding: 10px;
            background: var(--accent-bg);
            border-radius: 8px;
        }

        .history-pick-item {
            padding: 5px 0;
            font-size: 13px;
            color: var(--text-secondary);
        }

        /* Help Page Styles */
        .help-section {
            max-width: 800px;
            margin: 0 auto;
        }

        .help-card {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 20px;
        }

        .help-card h3 {
            color: var(--neon-blue);
            margin-bottom: 15px;
        }

        .help-card p {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 10px;
        }

        .help-card ul {
            color: var(--text-secondary);
            margin-left: 20px;
            line-height: 1.8;
        }

        .help-card ol {
            color: var(--text-secondary);
            margin-left: 20px;
            line-height: 1.8;
        }

        /* iOS specific optimizations */
        @supports (-webkit-touch-callout: none) {
            .container {
                padding-bottom: 20px;
            }
            
            .prediction-btn {
                -webkit-tap-highlight-color: transparent;
            }
            
            select {
                -webkit-appearance: none;
                appearance: none;
                background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23ffffff' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e");
                background-repeat: no-repeat;
                background-position: right 10px center;
                background-size: 10px;
                padding-right: 30px;
            }
        }
        
        /* Android specific optimizations */
        @supports not (-webkit-touch-callout: none) {
            .container {
                padding-bottom: 15px;
            }
        }
        
        /* Mobile-optimized odds display */
        @media (max-width: 768px) {
            .odds-grid {
                grid-template-columns: 1fr;
                gap: 14px;
                margin: 18px 0;
            }

            .odds-game-card {
                padding: 16px;
            }

            .odds-team-name {
                font-size: 14px;
            }

            .odds-value {
                font-size: 12px;
                padding: 5px 10px;
                min-width: 48px;
            }

            .odds-line {
                gap: 8px;
            }
        }

        @media (max-width: 480px) {
            .odds-game-card {
                padding: 14px;
                border-radius: 14px;
            }

            .odds-team-name {
                font-size: 13px;
                line-height: 1.25;
            }

            .odds-value {
                font-size: 11px;
                padding: 4px 8px;
                min-width: 44px;
            }

            .odds-line {
                gap: 6px;
            }

            .odds-league-badge {
                font-size: 10px;
                padding: 4px 10px;
            }

            .odds-time {
                font-size: 10px;
            }
        }

        /* Live & Prediction score compact sizing (desktop + mobile)
           - Make team names and numeric scores smaller to ensure full visibility on iOS & Android
           - Applies to both live-score widgets and prediction score blocks, including inline-built content
        */
        .live-score,
        .score-prediction {
            /* overall compact baseline */
            padding: 10px !important;
            font-size: 0.9rem !important;
        }

        /* team name / label */
        .live-score .team-label,
        .score-prediction .team-score strong,
        .live-score .team-name {
            font-size: 0.65rem !important;
            line-height: 1.1 !important;
            color: var(--text-secondary) !important;
            display: block;
            word-wrap: break-word;
            overflow-wrap: anywhere;
            padding: 0 4px;
            max-width: 100%;
        }

        /* numeric score / big number */
        .live-score .score-number,
        .score-prediction .team-score h2,
        .live-score .score {
            font-size: 1.6rem !important;
            font-weight: 700 !important;
            line-height: 1.05 !important;
        }

        /* total / highlighted box */
        .live-score .total,
        .score-prediction .total-score {
            font-size: 1rem !important;
            padding: 8px !important;
        }

        /* small devices: shrink further to guarantee fit */
        @media (max-width: 480px) {
            .live-score .team-label,
            .score-prediction .team-score strong,
            .live-score .team-name {
                font-size: 0.58rem !important;
            }
            .live-score .score-number,
            .score-prediction .team-score h2,
            .live-score .score {
                font-size: 1.4rem !important;
            }
            .live-score,
            .score-prediction {
                padding: 8px !important;
            }
        }

        /* Extra small devices - more aggressive text sizing */
        @media (max-width: 375px) {
            .container {
                padding: 8px;
            }
            
            .league-selector {
                grid-template-columns: repeat(2, 1fr);
                gap: 6px;
            }
            
            .league-btn {
                font-size: 10px;
                padding: 6px 10px;
            }
            
            .prediction-btn {
                font-size: 14px;
                padding: 12px 24px;
            }
            
            .live-score {
                font-size: 1em;
                padding: 10px;
            }
            
            .team-score strong {
                font-size: 0.7rem;
            }
            
            .team-score h2 {
                font-size: 1.6rem;
            }
            
            select {
                font-size: 13px;
            }
        }





        .subscription-section {
  max-width: 1200px;
  margin: 0 auto 20px;
  padding: 32px 16px 40px;
  background: transparent;
}

/* Header in dark neon theme */
.subscription-header h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.subscription-header p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.trial-pill {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--gradient-secondary);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 0 16px rgba(0, 212, 255, 0.4);
}

/* Billing toggle styled like glass pill in dark UI */
.subscription-header .billing-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin: 24px auto 0;
  max-width: 260px;
  padding: 4px;
  border-radius: 999px;
  background: var(--secondary-bg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.subscription-header .billing-toggle label {
  flex: 1;
  text-align: center;
  cursor: pointer;
}

.subscription-header .billing-toggle input {
  display: none;
}

.subscription-header .billing-toggle span {
  display: block;
  padding: 8px 0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.25s ease;
}

.subscription-header .billing-toggle input:checked + span {
  background: var(--gradient-primary);
  color: var(--text-primary);
  box-shadow: 0 0 18px rgba(0, 212, 255, 0.6);
}

/* Plans grid */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

/* Cards in glass / dark style */
.plan-card {
  background: var(--glass-bg);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s ease;
  min-height: 520px;
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow), var(--shadow-card);
}

.plan-card.featured {
  border: 2px solid var(--neon-green);
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.4), var(--shadow-card);
}

.plan-card.featured:hover {
  transform: translateY(-4px);
}

/* Badge in neon style */
.badge-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--neon-green);
  color: var(--primary-bg);
  padding: 4px 16px;
  border-radius: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
}

/* Typography */
.plan-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}

.plan-price {
  font-size: 34px;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 8px 0 4px;
}

.plan-price span {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

.price-monthly { display: block; }
.price-yearly { display: none; }

.plan-subtitle {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.plan-savings {
  font-size: 12px;
  font-weight: 600;
  color: var(--neon-green);
  margin-top: 4px;
  margin-bottom: 6px;
  display: none;
}

.trial-tag {
  display: inline-block;
  margin: 8px 0 14px;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(0, 255, 136, 0.15);
  color: var(--neon-green);
  font-size: 11px;
  font-weight: 600;
}

/* Parlay box keeps its gradient but tuned for dark */
.parlay-box {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 14px;
  padding: 14px 14px 12px;
  margin-bottom: 16px;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(118, 75, 162, 0.6);
}

.parlay-box h3 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.parlay-box h3 span {
  font-size: 15px;
}

.parlay-list {
  list-style: none;
  margin: 4px 0 8px;
  padding: 0;
  font-size: 12px;
}

.parlay-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 1px 0;
}

.parlay-list li::before {
  content: "🎯";
  font-size: 12px;
}

.parlay-limit {
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.25);
  padding: 6px 8px;
  text-align: center;
  font-size: 11px;
}

.parlay-limit strong {
  display: block;
  font-size: 16px;
  margin-bottom: 2px;
}

/* Features */
.features-block {
  margin-top: 10px;
  flex: 1;
}

.features-title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--glass-border);
}

.features-list li {
  display: flex;
  align-items: center;
  padding: 7px 0;
  font-size: 13px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--glass-border);
}

.features-list li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--neon-green);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.features-list li.disabled {
  color: var(--text-muted);
}

.features-list li.disabled::before {
  content: "✗";
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* Footer text + button */
.cancel-text {
  margin-top: 10px;
  font-size: 11px;
  color: var(--text-secondary);
  text-align: center;
}

.subscribe-btn {
  margin-top: 14px;
  width: 100%;
  padding: 12px;
  border-radius: 999px;
  border: none;
  background: var(--gradient-primary);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 6px 18px rgba(0, 212, 255, 0.35);
}

.plan-card.featured .subscribe-btn {
  background: var(--gradient-secondary);
}

.subscribe-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.5);
}

.subscribe-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Usage dashboard (reused by existing JS) */
.usage-dashboard {
  text-align: left;
  background: var(--accent-bg);
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
}
.usage-bar {
  background: var(--secondary-bg);
  height: 12px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.03);
}
.usage-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--neon-green), var(--neon-blue));
  width: 0%;
  transition: width 0.4s ease;
}
.usage-text {
  margin-top: 8px;
  color: var(--text-secondary);
  font-size: 13px;
}
.usage-notice {
  color: var(--neon-red);
  font-size: 13px;
  margin-top: 6px;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .subscription-header h1 {
    font-size: 24px;
  }
  .subscription-section {
    padding: 24px 12px 32px;
  }
  .plans-grid {
    grid-template-columns: 1fr;
  }
  .plan-card.featured:hover {
    transform: translateY(-4px);
  }
}