/* FootyPredict Pro - Modern Dark Theme */

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #1a1a24;
    --bg-card-hover: #222230;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --accent-primary: #6366f1;
    --accent-secondary: #8b5cf6;
    --accent-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    --success: #22c55e;
    --warning: #f59e0b;
    --error: #ef4444;
    --border: #2a2a38;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --radius: 12px;
    --radius-lg: 20px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-icon {
    font-size: 1.8rem;
}

.logo .pro {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--text-primary);
}

/* Hero */
.hero {
    padding: 160px 0 80px;
    text-align: center;
    background: radial-gradient(ellipse at center top, rgba(99, 102, 241, 0.15) 0%, transparent 60%);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 48px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Predictions Section */
.predictions-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 48px;
}

.prediction-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

.prediction-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.form-group input,
.form-group select {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.vs-badge {
    background: var(--accent-gradient);
    color: white;
    font-weight: 700;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

.league-select {
    max-width: 300px;
    margin: 0 auto;
}

.btn-predict {
    background: var(--accent-gradient);
    border: none;
    border-radius: var(--radius);
    padding: 16px 32px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-predict:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.btn-predict:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Results */
.results {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    animation: fadeIn 0.3s ease;
}

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

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

.result-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.confidence-badge {
    background: var(--success);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

.predictions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.prediction-item {
    background: var(--bg-secondary);
    border-radius: var(--radius);
    padding: 24px;
}

.prediction-item h4 {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.probability-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.prob-row {
    display: grid;
    grid-template-columns: 80px 1fr 50px;
    gap: 12px;
    align-items: center;
}

.prob-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.prob-bar {
    background: var(--bg-card);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.prob-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s ease;
}

.prob-fill.home { background: var(--success); }
.prob-fill.draw { background: var(--warning); }
.prob-fill.away { background: var(--error); }

.prob-value {
    font-weight: 600;
    font-size: 0.875rem;
    text-align: right;
}

.recommendation {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card);
    padding: 12px 16px;
    border-radius: var(--radius);
    font-weight: 600;
}

.market-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.market-card {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 16px;
    align-items: center;
    padding: 12px 16px;
    background: var(--bg-card);
    border-radius: var(--radius);
}

.market-name {
    color: var(--text-secondary);
}

.market-prob {
    font-weight: 600;
    font-size: 1.125rem;
}

.market-rec {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.result-footer {
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Features */
.features-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: transform 0.2s, border-color 0.2s;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* API */
.api-section {
    padding: 80px 0;
}

.api-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    max-width: 700px;
    margin: 0 auto;
}

.api-endpoint {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.method {
    background: var(--success);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
}

.api-endpoint code {
    color: var(--accent-primary);
    font-size: 0.9rem;
    word-break: break-all;
}

.code-block {
    background: var(--bg-secondary);
    border-radius: var(--radius);
    padding: 24px;
    overflow-x: auto;
    margin-bottom: 24px;
}

.code-block code {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.btn-copy {
    background: transparent;
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.btn-copy:hover {
    background: var(--accent-primary);
    color: white;
}

/* Footer */
.footer {
    padding: 32px 0;
    text-align: center;
    color: var(--text-secondary);
    border-top: 1px solid var(--border);
}

/* Error */
.error-message {
    margin-top: 24px;
    padding: 16px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--error);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--error);
}

.hidden {
    display: none !important;
}

/* Responsive */

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* Hamburger animation when active */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .vs-badge {
        margin: 0 auto;
    }
    
    .hero-stats {
        gap: 32px;
    }
    
    /* Show hamburger on mobile */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Mobile navigation menu */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 105;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-link {
        padding: 16px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--border);
        display: block;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    /* Mobile menu overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
        z-index: 100;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .result-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Sure Wins Section */
.sure-wins-section {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.sure-wins-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

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

.sure-wins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.sure-win-card {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(251, 191, 36, 0.1) 100%);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.sure-win-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ef4444, #f59e0b, #22c55e);
}

.sure-win-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.2);
}

.sure-win-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #ef4444, #f59e0b);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

.sure-win-teams {
    margin-bottom: 16px;
}

.sure-win-teams h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.sure-win-meta {
    display: flex;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.sure-win-prediction {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(34, 197, 94, 0.15);
    border-radius: var(--radius);
    margin-top: 12px;
}

.sure-win-prediction .pick {
    font-weight: 700;
    font-size: 1.1rem;
    color: #22c55e;
}

.sure-win-prediction .confidence {
    font-weight: 700;
    color: #fbbf24;
}

.sure-win-odds {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.sure-win-odds span {
    background: var(--bg-card);
    padding: 6px 12px;
    border-radius: var(--radius);
    font-size: 0.8rem;
}

.loading-state {
    text-align: center;
    padding: 60px 20px;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--border);
    border-top-color: var(--accent-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 16px;
    display: block;
}

/* ============================================
   MONETIZATION STYLES - AdSense & Affiliates
   ============================================ */

/* Ad Container Base Styles */
.ad-container {
    background: rgba(20, 20, 30, 0.6);
    border: 1px dashed rgba(99, 102, 241, 0.3);
    border-radius: var(--radius);
    padding: 8px;
    text-align: center;
    overflow: hidden;
    min-height: 90px;
}

.ad-container::before {
    content: 'Advertisement';
    display: block;
    font-size: 0.65rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    opacity: 0.6;
}

/* Header Banner Ad (728x90) */
.ad-banner-header {
    max-width: 728px;
    margin: 80px auto 20px;
    min-height: 90px;
}

/* In-Content Ad */
.ad-inline {
    margin: 24px 0;
    min-height: 250px;
}

/* Sidebar Ad */
.ad-sidebar {
    position: sticky;
    top: 100px;
    min-height: 250px;
}

/* Footer Ad */
.ad-banner-footer {
    max-width: 728px;
    margin: 40px auto;
    min-height: 90px;
}

/* Responsive Ad Sizes */
@media (max-width: 768px) {
    .ad-banner-header,
    .ad-banner-footer {
        max-width: 320px;
        min-height: 50px;
    }
    
    .ad-inline {
        min-height: 250px;
    }
}

/* ============================================
   AFFILIATE / BETTING PARTNER STYLES
   ============================================ */

/* Bet CTA Button */
.bet-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.bet-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.bet-cta::before {
    content: '💰';
}

/* Betting Partners Section */
.betting-partners {
    background: linear-gradient(135deg, rgba(20, 20, 42, 0.8), rgba(30, 30, 60, 0.6));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin: 30px 0;
}

.betting-partners h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.partner-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.2s;
}

.partner-btn:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: var(--accent-primary);
    transform: translateY(-3px);
}

.partner-logo {
    font-size: 1.5rem;
}

.partner-name {
    font-weight: 600;
    font-size: 0.85rem;
}

.partner-bonus {
    font-size: 0.7rem;
    color: var(--success);
    background: rgba(34, 197, 94, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
}

/* Odds Display on Prediction Cards */
.odds-display {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.odds-btn {
    padding: 8px 14px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 8px;
    color: #a5b4fc;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.odds-btn:hover {
    background: var(--accent-primary);
    color: white;
}

.odds-value {
    font-weight: 700;
    color: var(--success);
}

/* ============================================
   DISCLAIMER / COMPLIANCE STYLES
   ============================================ */

.affiliate-disclaimer {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius);
    padding: 16px;
    margin: 20px 0;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.affiliate-disclaimer strong {
    color: #f87171;
}

.gambling-warning {
    background: rgba(245, 158, 11, 0.1);
    border-left: 4px solid var(--warning);
    padding: 16px;
    margin: 20px 0;
    font-size: 0.85rem;
}

.gambling-warning h4 {
    color: var(--warning);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gambling-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.gambling-links a {
    color: var(--accent-primary);
    text-decoration: none;
    font-size: 0.8rem;
}

.gambling-links a:hover {
    text-decoration: underline;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.7;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

/* 18+ Badge */
.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--error);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    border-radius: 50%;
    margin-left: 8px;
}

/* ============================================
   ACCURACY TRACKING SECTION
   ============================================ */

.accuracy-section {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(99, 102, 241, 0.05) 50%, var(--bg-primary) 100%);
}

.accuracy-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.accuracy-header h2 {
    font-size: 1.8rem;
    color: var(--text-primary);
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.1));
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 20px;
    color: #22c55e;
    font-size: 0.85rem;
    font-weight: 600;
}

.accuracy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.accuracy-card {
    background: linear-gradient(135deg, rgba(30, 30, 50, 0.8), rgba(20, 20, 40, 0.6));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.accuracy-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.15);
}

.accuracy-card.main-accuracy {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.1));
    border-color: rgba(99, 102, 241, 0.3);
}

.accuracy-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.accuracy-value {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #22c55e, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-accuracy .accuracy-value {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--accent-primary), #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accuracy-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 8px;
}

.accuracy-meta {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 8px;
}

.accuracy-disclaimer {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 30px;
    font-style: italic;
}

@media (max-width: 576px) {
    .accuracy-card.main-accuracy {
        grid-column: span 1;
    }
    
    .accuracy-header h2 {
        font-size: 1.4rem;
    }
    
    .main-accuracy .accuracy-value {
        font-size: 2.5rem;
    }
    
    .accuracy-value {
        font-size: 1.8rem;
    }
}

/* ============================================
   PLACE BET CTAs
   ============================================ */

.place-bet-section {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.place-bet-section h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.age-badge-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #ef4444;
    color: white;
    font-size: 0.6rem;
    font-weight: 800;
    border-radius: 50%;
}

.bet-cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.bet-cta-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 8px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.05));
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.bet-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.25);
    border-color: #22c55e;
}

.bet-logo { font-size: 1.2rem; }
.bet-name { font-size: 0.8rem; font-weight: 600; margin: 4px 0 2px; }
.bet-bonus { font-size: 0.65rem; color: #22c55e; font-weight: 500; }

/* ============================================
   SOCIAL SHARING
   ============================================ */

.social-share-section {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.share-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.share-buttons {
    display: flex;
    gap: 8px;
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.2s;
}

.share-btn:hover {
    transform: scale(1.1);
}

.share-btn.twitter { background: #1da1f2; color: white; }
.share-btn.facebook { background: #4267b2; color: white; }
.share-btn.whatsapp { background: #25d366; color: white; }
.share-btn.copy { background: var(--bg-secondary); color: var(--text-primary); }

/* ============================================
   NEWSLETTER SIGNUP
   ============================================ */

.newsletter-section {
    padding: 40px 0;
}

.newsletter-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.08));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
}

.newsletter-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.newsletter-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.newsletter-card > p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.newsletter-form {
    max-width: 450px;
    margin: 0 auto;
}

.newsletter-form .form-group {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    background: var(--bg-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.btn-subscribe {
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--accent-primary), #8b5cf6);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.35);
}

.newsletter-note {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 12px;
}

.newsletter-success {
    padding: 16px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    color: #22c55e;
    margin-top: 16px;
}

/* ============================================
   PUSH NOTIFICATIONS
   ============================================ */

.push-section {
    padding: 20px 0;
}

.push-card {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.push-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.push-icon {
    font-size: 2rem;
}

.push-text h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.push-text p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.btn-push {
    padding: 12px 24px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-push:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.35);
}

.btn-push:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 576px) {
    .bet-cta-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .bet-cta-btn {
        padding: 10px 6px;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .push-card {
        flex-direction: column;
        text-align: center;
    }
    
    .push-content {
        flex-direction: column;
    }
}
