        :root {
            --primary: #00ff88;
            --primary-glow: rgba(0, 255, 136, 0.15);
            --bg: #0a0a0a;
            --surface: #141414;
            --text: #ffffff;
            --text-muted: #888888;
            --border: #222222;
            --accent: #ff0055;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            min-height: 100vh;
            overflow-x: hidden;
        }
        
        body::before {
            content: '';
            position: fixed;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(circle at 20% 50%, var(--primary-glow) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 0, 85, 0.1) 0%, transparent 50%);
            animation: gradientShift 20s ease infinite;
            pointer-events: none;
            z-index: 0;
        }
        
        @keyframes gradientShift {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(-5%, -5%) rotate(180deg); }
        }
        
        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 40px 20px;
            position: relative;
            z-index: 1;
        }
        
        header {
            text-align: center;
            margin-bottom: 60px;
            animation: fadeInDown 0.8s ease;
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .logo {
            font-family: 'JetBrains Mono', monospace;
            font-size: clamp(2.5rem, 8vw, 4rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            margin-bottom: 12px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 40px var(--primary-glow);
        }
        
        .tagline {
            font-size: 1rem;
            color: var(--text-muted);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.15em;
        }
        
        .nav-links {
            margin-top: 20px;
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .nav-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            transition: color 0.2s ease;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        .date-badge {
            display: inline-block;
            background: var(--surface);
            border: 1px solid var(--border);
            padding: 12px 24px;
            border-radius: 100px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 40px;
            color: var(--primary);
            animation: fadeIn 1s ease 0.3s both;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .stats-bar {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 16px;
            margin-bottom: 50px;
            animation: fadeIn 1s ease 0.5s both;
        }
        
        .stat-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .stat-card:hover {
            border-color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px var(--primary-glow);
        }
        
        .stat-value {
            font-family: 'JetBrains Mono', monospace;
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 4px;
        }
        
        .stat-label {
            font-size: 0.75rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 600;
        }
        
        .section-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .section-title::before {
            content: '';
            width: 4px;
            height: 24px;
            background: var(--primary);
            border-radius: 2px;
        }
        
        .predictions-grid {
            display: grid;
            gap: 20px;
            margin-bottom: 40px;
            animation: fadeIn 1s ease 0.7s both;
        }
        
        .prediction-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 28px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .prediction-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-glow), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .prediction-card:hover {
            border-color: var(--primary);
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
        }
        
        .prediction-card:hover::before {
            opacity: 1;
        }
        
        .prediction-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }
        
        .match-info {
            flex: 1;
        }
        
        .league {
            font-size: 0.75rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 600;
            margin-bottom: 8px;
        }
        
        .match-title {
            font-size: 1.25rem;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 4px;
        }
        
        .match-time {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.875rem;
            color: var(--text-muted);
        }
        
        .prediction-badge {
            background: var(--primary);
            color: var(--bg);
            padding: 6px 16px;
            border-radius: 100px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            white-space: nowrap;
        }
        
        .analysis {
            position: relative;
            z-index: 1;
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
            border-top: 1px solid var(--border);
            padding-top: 16px;
            margin-top: 16px;
        }
        
        .parlay-summary {
            background: linear-gradient(135deg, var(--surface), #1a1a1a);
            border: 2px solid var(--primary);
            border-radius: 24px;
            padding: 32px;
            margin-top: 40px;
            text-align: center;
            animation: fadeIn 1s ease 0.9s both;
            box-shadow: 0 8px 32px var(--primary-glow);
        }
        
        .parlay-title {
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }
        
        .parlay-odds {
            font-family: 'JetBrains Mono', monospace;
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 8px;
            text-shadow: 0 0 40px var(--primary-glow);
        }
        
        .parlay-label {
            color: var(--text-muted);
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }
        
        .no-predictions {
            text-align: center;
            padding: 60px 20px;
            color: var(--text-muted);
        }
        
        .no-predictions h3 {
            font-size: 1.5rem;
            margin-bottom: 12px;
        }
        
        .disclaimer {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 24px;
            margin-top: 50px;
            animation: fadeIn 1s ease 1.1s both;
        }
        
        .disclaimer-title {
            font-size: 0.875rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 12px;
            color: var(--accent);
        }
        
        .disclaimer-text {
            font-size: 0.875rem;
            color: var(--text-muted);
            line-height: 1.6;
        }
        
        .disclaimer-text a {
            color: var(--primary);
            text-decoration: none;
        }
        
        footer {
            text-align: center;
            padding: 40px 20px;
            color: var(--text-muted);
            font-size: 0.875rem;
            border-top: 1px solid var(--border);
            margin-top: 60px;
        }
        
        footer a {
            color: var(--primary);
            text-decoration: none;
            transition: opacity 0.2s ease;
        }
        
        footer a:hover {
            opacity: 0.7;
        }
        
        @media (max-width: 640px) {
            .container {
                padding: 30px 16px;
            }
            
            header {
                margin-bottom: 40px;
            }
            
            .logo {
                font-size: 2.5rem;
            }
            
            .prediction-card {
                padding: 20px;
            }
            
            .prediction-header {
                flex-direction: column;
                gap: 12px;
            }
            
            .match-title {
                font-size: 1.125rem;
            }
            
            .parlay-odds {
                font-size: 2.5rem;
            }
        }

/* Confidence Meter Styles */
.confidence-section {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.confidence-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
}

.confidence-value {
    font-family: 'JetBrains Mono', monospace;
    color: var(--primary);
    font-weight: 700;
}

.confidence-bar {
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.confidence-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 4px;
    transition: width 0.3s ease;
}

.click-hint {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 600;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.prediction-card:hover .click-hint {
    opacity: 1;
}

.prediction-card {
    cursor: pointer;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--surface);
    margin: 5% auto;
    padding: 40px;
    border: 1px solid var(--border);
    border-radius: 24px;
    width: 90%;
    max-width: 700px;
    position: relative;
    animation: slideIn 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

.modal-close {
    color: var(--text-muted);
    position: absolute;
    right: 24px;
    top: 24px;
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s ease;
    line-height: 1;
}

.modal-close:hover {
    color: var(--primary);
}

.modal-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
}

.modal-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.modal-confidence {
    background: var(--bg);
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 32px;
}

.modal-section {
    margin-bottom: 32px;
}

.modal-section h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary);
}

.modal-section p {
    color: var(--text-muted);
    line-height: 1.7;
}

@media (max-width: 640px) {
    .modal-content {
        margin: 10% auto;
        padding: 24px;
        width: 95%;
    }
    
    .modal-title {
        font-size: 1.25rem;
    }
}

/* Minimalist Homepage Enhancements */

/* Hide navigation and stats */
.nav-links,
.stats-bar,
.section-title {
    display: none;
}

/* Simplified header */
header {
    margin-bottom: 40px;
}

.tagline {
    font-size: 0.875rem;
    margin-top: 8px;
}

/* Controls Bar */
.controls-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
}

/* Date Navigator */
.date-navigator {
    display: flex;
    align-items: center;
    gap: 12px;
}

.date-nav-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    background: var(--bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-muted);
}

.date-nav-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: scale(1.05);
}

.date-display {
    position: relative;
}

.date-input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.date-label {
    display: block;
    padding: 10px 20px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.date-label:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Odds Toggle */
.odds-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
}

.odds-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
}

.toggle-switch {
    position: relative;
    width: 100px;
    height: 40px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    cursor: pointer;
    padding: 2px;
}

.toggle-slider {
    position: absolute;
    width: 48px;
    height: 36px;
    background: var(--primary);
    border-radius: 8px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(100%);
    z-index: 1;
}

.toggle-option {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
    transition: color 0.3s ease;
    color: var(--text-muted);
}

.toggle-option.active {
    color: var(--bg);
}

/* Archive Notice */
.archive-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 170, 0, 0.1);
    border: 1px solid rgba(255, 170, 0, 0.3);
    border-radius: 12px;
    margin-bottom: 30px;
    font-size: 0.875rem;
    font-weight: 600;
}

.archive-icon {
    font-size: 1.25rem;
}

.result-badge {
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.result-badge.result-won {
    background: rgba(0, 255, 136, 0.2);
    color: var(--primary);
}

.result-badge.result-lost {
    background: rgba(255, 0, 85, 0.2);
    color: var(--accent);
}

/* Past Prediction Styles */
.past-prediction {
    position: relative;
    overflow: visible;
}

.result-ribbon {
    position: absolute;
    top: -8px;
    right: -8px;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.result-ribbon.result-won {
    background: var(--primary);
    color: var(--bg);
}

.result-ribbon.result-lost {
    background: var(--accent);
    color: white;
}

.result-ribbon.result-void {
    background: var(--text-muted);
    color: var(--bg);
}

/* Final Score Display */
.final-score {
    margin-top: 16px;
    padding: 16px;
    background: var(--bg);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.score-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.score-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
}

.score-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
}

.btts-indicator {
    text-align: center;
    padding: 8px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.875rem;
}

.btts-yes {
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary);
}

.btts-no {
    background: rgba(255, 0, 85, 0.1);
    color: var(--accent);
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .controls-bar {
        flex-direction: column;
        gap: 16px;
    }
    
    .date-navigator {
        width: 100%;
        justify-content: space-between;
    }
    
    .date-label {
        min-width: 150px;
        text-align: center;
    }
    
    .odds-toggle {
        width: 100%;
        justify-content: space-between;
    }
    
    .archive-notice {
        flex-wrap: wrap;
    }
}

/* ========================================
   MONETIZATION STYLES
   ======================================== */

/* Premium Banner */
.premium-banner {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 32px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.premium-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, var(--primary-glow), transparent 70%);
    pointer-events: none;
}

.premium-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--bg);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.premium-content-wrapper h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.premium-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin: 20px 0;
}

.premium-features li {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.premium-pricing {
    margin: 20px 0;
}

.premium-pricing .price {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-right: 12px;
}

.premium-pricing .price-note {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.premium-btn {
    display: inline-block;
    background: var(--primary);
    color: var(--bg);
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.premium-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--primary-glow);
}

/* Sportsbook Section */
.sportsbook-section {
    margin: 50px 0;
}

.section-heading {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-align: center;
}

.section-subheading {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.sportsbook-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.sportsbook-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.3s ease;
}

.sportsbook-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.sportsbook-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.sportsbook-bonus {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.sportsbook-cta {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.875rem;
    margin-top: auto;
}

.affiliate-disclosure {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Tip Jar Section */
.tip-jar-section {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    margin: 40px 0;
}

.tip-jar-content {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.tip-jar-icon {
    font-size: 3rem;
}

.tip-jar-text {
    flex: 1;
    min-width: 200px;
}

.tip-jar-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.tip-jar-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.tip-jar-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tip-btn {
    padding: 10px 20px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tip-btn:hover {
    background: var(--primary-glow);
    border-color: var(--primary);
    color: var(--primary);
}

/* Premium Modal */
.premium-modal-content {
    max-width: 900px;
}

.premium-modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.premium-modal-header h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.premium-modal-header p {
    color: var(--text-muted);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.pricing-card {
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.pricing-card-featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--bg) 0%, #0a1a0a 100%);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--bg);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.pricing-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--text-muted);
}

.pricing-amount {
    font-family: 'JetBrains Mono', monospace;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.pricing-amount span {
    font-size: 1.25rem;
    color: var(--text-muted);
}

.savings-badge {
    background: rgba(0, 255, 136, 0.2);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 16px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 24px 0;
}

.pricing-features li {
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: var(--bg);
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 24px;
}

.pricing-btn:hover {
    background: var(--primary);
    color: var(--bg);
}

.pricing-btn-featured {
    background: var(--primary);
    color: var(--bg);
}

.pricing-btn-featured:hover {
    background: transparent;
    color: var(--primary);
}

/* Tip Modal */
.tip-modal-content {
    max-width: 500px;
    text-align: center;
}

.tip-modal-header {
    margin-bottom: 32px;
}

.tip-icon-large {
    font-size: 4rem;
    margin-bottom: 16px;
}

.tip-modal-header h2 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.tip-modal-header p {
    color: var(--text-muted);
}

.tip-amount-display {
    font-family: 'JetBrains Mono', monospace;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 24px 0;
}

.tip-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
}

.tip-method-btn {
    padding: 16px 24px;
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.tip-method-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--bg);
}

.tip-note {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 24px;
}

/* Responsive */
@media (max-width: 640px) {
    .premium-banner {
        padding: 24px;
    }
    
    .premium-features {
        grid-template-columns: 1fr;
    }
    
    .sportsbook-grid {
        grid-template-columns: 1fr;
    }
    
    .tip-jar-content {
        flex-direction: column;
        text-align: center;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   ENHANCED RESULT DISPLAYS
   ======================================== */

/* Animated Win/Loss Ribbons */
.result-ribbon {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
    animation: slideInRight 0.5s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.result-ribbon.won {
    background: linear-gradient(135deg, var(--primary) 0%, #00cc99 100%);
    color: var(--bg);
}

.result-ribbon.won::before {
    content: '✓ ';
    font-size: 1rem;
}

.result-ribbon.lost {
    background: linear-gradient(135deg, #ff5252 0%, #cc0000 100%);
    color: white;
}

.result-ribbon.lost::before {
    content: '✗ ';
    font-size: 1rem;
}

/* Enhanced Score Display */
.final-score {
    margin-top: 16px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.score-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.score-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    min-width: 50px;
    text-align: center;
}

.score-separator {
    font-size: 2rem;
    color: var(--text-muted);
    font-weight: 700;
}

.btts-indicator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.btts-yes {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.3) 0%, rgba(0, 200, 100, 0.3) 100%);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btts-yes::before {
    content: '✓ ';
}

.btts-no {
    background: linear-gradient(135deg, rgba(255, 82, 82, 0.3) 0%, rgba(200, 0, 0, 0.3) 100%);
    color: #ff5252;
    border: 2px solid #ff5252;
}

.btts-no::before {
    content: '✗ ';
}

/* Parlay Result Banner */
.parlay-result-banner {
    position: relative;
    overflow: hidden;
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 24px;
    animation: slideDown 0.6s ease;
}

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

.parlay-result-banner.won {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2) 0%, rgba(0, 200, 100, 0.1) 100%);
    border: 2px solid var(--primary);
}

.parlay-result-banner.lost {
    background: linear-gradient(135deg, rgba(255, 82, 82, 0.2) 0%, rgba(200, 0, 0, 0.1) 100%);
    border: 2px solid #ff5252;
}

.parlay-result-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    to {
        left: 100%;
    }
}

.result-emoji {
    font-size: 3rem;
    margin-bottom: 8px;
    animation: bounce 1s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.result-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.result-stats {
    display: flex;
    gap: 24px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.result-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.result-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.result-stat-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 800;
}

/* Confetti Effect for Wins */
.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--primary);
    position: absolute;
    animation: confetti-fall 3s linear;
}

@keyframes confetti-fall {
    to {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Pulse Animation for Live Updates */
.live-update-pulse {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
    }
    50% {
        box-shadow: 0 0 20px 10px rgba(0, 255, 136, 0);
    }
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .score-number {
        font-size: 2rem;
    }
    
    .result-ribbon {
        top: 8px;
        right: 8px;
        padding: 6px 12px;
        font-size: 0.65rem;
    }
    
    .result-stats {
        gap: 16px;
    }
    
    .result-emoji {
        font-size: 2rem;
    }
    
    .result-title {
        font-size: 1.25rem;
    }
}

/* Future Parlay Notice */
.archive-notice-future {
    background: linear-gradient(135deg, rgba(0, 100, 255, 0.15), rgba(0, 200, 255, 0.15)) !important;
}

/* Result Banner Content Wrapper */
.result-banner-content {
    text-align: center;
}

/* Result Title Colors */
.result-title-won {
    color: var(--primary);
}

.result-title-lost {
    color: #ff5252;
}

/* Result Subtitle */
.result-subtitle {
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* Result Stats Container */
.result-stats {
    justify-content: center;
}

/* Result Stat Won Color */
.result-stat-won {
    color: var(--primary);
}

/* BTTS Indicator Wrapper */
.btts-indicator-wrapper {
    text-align: center;
}

/* Inline BTTS Badge */
.prediction-badge-inline {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--bg);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-left: 8px;
    vertical-align: middle;
}

/* Hide old prediction badge when we have result ribbon */
.prediction-card.past-prediction .prediction-badge {
    display: none;
}

/* Mobile responsive inline badge */
@media (max-width: 640px) {
    .prediction-badge-inline {
        display: block;
        margin-left: 0;
        margin-top: 8px;
        width: fit-content;
    }
}


/* ============================================
   BEST BETS SECTION STYLES
   Add this to the END of your style.css file
   ============================================ */

/* Best Bets Section */
.best-bets-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--border);
}

.section-header {
    margin-bottom: 32px;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Best Bets Grid */
.best-bets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

/* Best Bet Card */
.best-bet-card {
    background: var(--surface, #1a1a1a);
    border: 1px solid var(--border, #333);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    transition: all 0.3s ease;
}

.best-bet-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 255, 136, 0.15);
    border-color: var(--primary, #00ff88);
}

/* Bet Type Badge */
.bet-type-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary, #00ff88) 0%, #00cc6a 100%);
    color: #000;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

/* Consensus Badge */
.consensus-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(0, 255, 136, 0.15);
    color: var(--primary, #00ff88);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    border: 1px solid var(--primary, #00ff88);
}

/* Match Details */
.bet-match {
    margin-bottom: 20px;
}

.bet-teams {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.bet-league {
    font-size: 0.875rem;
    color: var(--text-muted, #888);
}

/* Metrics */
.bet-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px 0;
    border-top: 1px solid var(--border, #333);
    border-bottom: 1px solid var(--border, #333);
}

.bet-odds, .bet-confidence {
    text-align: center;
}

.odds-label, .confidence-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted, #888);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.odds-value {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary, #00ff88);
}

.confidence-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text, #fff);
}

/* Analysis */
.bet-analysis {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-muted, #ccc);
}

/* Result Badge */
.bet-result {
    margin-top: 16px;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.bet-result-won {
    background: rgba(0, 255, 136, 0.15);
    color: var(--primary, #00ff88);
    border: 1px solid var(--primary, #00ff88);
}

.bet-result-lost {
    background: rgba(255, 82, 82, 0.15);
    color: #ff5252;
    border: 1px solid #ff5252;
}

.bet-result-pending {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
    border: 1px solid #ffc107;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .best-bets-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .bet-teams {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .best-bet-card {
        padding: 20px;
    }
    
    .consensus-badge {
        position: static;
        display: inline-block;
        margin-left: 8px;
        margin-bottom: 8px;
    }
}
