@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Outfit:wght@500;600;700;800;900&display=swap');

:root {
    --bg-color: #0b0f19;
    --text-color: #e2e8f0;
    --primary: #d4af37;
    --primary-glow: rgba(212, 175, 55, 0.4);
    --secondary: #1e293b;
    --accent: #3b82f6;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --glass-bg: rgba(30, 41, 59, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    background: var(--bg-color); 
    color: var(--text-color); 
    font-family: var(--font-body); 
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden; 
}

h1, h2, h3, h4, .logo, .card-tag, .odds, .risk-score, .price, .card-tier {
    font-family: var(--font-heading);
}

.text-gradient {
    background: linear-gradient(to right, #fff, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

/* --- NAVBAR --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 10%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 15, 25, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-icon { color: var(--primary); }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { color: #94a3b8; text-decoration: none; font-weight: 500; transition: 0.3s; font-size: 14px; }
.nav-links a:hover { color: #fff; }

.nav-btn {
    background: var(--primary);
    color: #000 !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 700;
}

.nav-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 24px;
    border-radius: 8px;
}

/* --- HERO --- */
.hero {
    padding: 180px 5% 100px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    width: 100%;
}

.badge {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero h1 { font-size: 64px; line-height: 1.1; margin-bottom: 1.5rem; }
.hero p { color: #94a3b8; font-size: 18px; line-height: 1.6; margin-bottom: 2.5rem; }

.hero-buttons { display: flex; gap: 1rem; margin-bottom: 4rem; }
.btn { 
    padding: 16px 32px; 
    border-radius: 12px; 
    text-decoration: none; 
    font-weight: 700; 
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border: none;
}
.btn-primary { background: var(--primary); color: #000; box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2); }
.btn-secondary { background: rgba(255, 255, 255, 0.05); color: #fff; border: 1px solid rgba(255, 255, 255, 0.1); }

.stats-container { display: flex; gap: 3rem; }
.stat-item h3 { font-size: 32px; color: #fff; margin-bottom: 4px; }
.stat-item p { color: #64748b; font-size: 14px; margin: 0; }

/* Mockup Panel */
.hero-image-wrapper { position: relative; }
.mockup-panel {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.panel-header { display: flex; justify-content: space-between; margin-bottom: 2rem; font-weight: 700; font-size: 14px; }
.live-dot { color: #ef4444; display: flex; align-items: center; gap: 6px; }
.live-dot::before { content: ''; width: 8px; height: 8px; background: #ef4444; border-radius: 50%; display: inline-block; animation: pulse 2s infinite; }

.match-card { background: rgba(15, 23, 42, 0.5); border-radius: 16px; padding: 1.5rem; margin-bottom: 1rem; border: 1px solid rgba(255, 255, 255, 0.05); }
.teams { font-weight: 700; margin-bottom: 1rem; }
.teams span { color: var(--primary); margin: 0 10px; }
.indicator { font-size: 12px; color: #94a3b8; margin-bottom: 1rem; }
.prediction-tag { background: rgba(16, 185, 129, 0.1); color: #10b981; padding: 8px 12px; border-radius: 8px; font-size: 12px; font-weight: 700; }

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    z-index: 1;
}

/* --- FEATURES --- */
.features-section { padding: 100px 5%; width: 100%; }
.section-header { text-align: center; margin-bottom: 5rem; }
.section-header h2 { font-size: 48px; margin-bottom: 1.5rem; }
.section-header p { color: #94a3b8; max-width: 600px; margin: 0 auto; line-height: 1.6; }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.feature-card {
    background: #1e293b;
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.feature-card:hover { transform: translateY(-10px); border-color: rgba(212, 175, 55, 0.3); }
.feature-icon { font-size: 32px; color: var(--primary); margin-bottom: 1.5rem; }
.feature-card h3 { font-size: 22px; margin-bottom: 1rem; }
.feature-card p { color: #94a3b8; font-size: 14px; line-height: 1.6; margin-bottom: 2rem; }
.demo-action { font-size: 12px; font-weight: 700; color: #fff; display: flex; align-items: center; gap: 8px; opacity: 0.5; transition: 0.3s; }
.feature-card:hover .demo-action { opacity: 1; color: var(--primary); }

.ai-badge { position: absolute; top: 20px; right: 20px; background: var(--primary); color: #000; font-size: 9px; font-weight: 900; padding: 4px 8px; border-radius: 4px; }

/* --- PRICING --- */
.pricing-section { padding: 100px 10%; background: rgba(15, 23, 42, 0.5); }
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; width: 100%; padding: 0 5%; }
.pricing-card {
    background: #1e293b;
    padding: 4rem 3rem;
    border-radius: 32px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}
.pricing-card.popular { border: 2px solid var(--primary); transform: scale(1.05); }

/* --- MODALS --- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    background-color: #1e293b;
    margin: 5% auto;
    padding: 3rem;
    border: 1px solid rgba(255,255,255,0.1);
    width: 90%;
    max-width: 600px;
    border-radius: 24px;
    position: relative;
    text-align: center;
}

.close {
    position: absolute;
    right: 25px;
    top: 20px;
    color: #94a3b8;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover { color: #fff; }

.payment-methods { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }

.crypto-option {
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    color: #000;
    padding: 20px;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.stars-option {
    background: #0088cc;
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.how-to-pay { font-size: 12px; color: #d4af37; text-decoration: underline; margin-top: 10px; cursor: pointer; }

.demo-video { width: 100%; border-radius: 12px; margin-top: 1rem; }

/* Dashboard Extras */
.progress-bar { width: 100%; height: 6px; background: rgba(255, 255, 255, 0.1); border-radius: 3px; overflow: hidden; position: relative; }
.progress { height: 100%; background: var(--primary); transition: width 0.3s; }
.progress-bar span { position: absolute; right: 0; top: -18px; font-size: 10px; color: #94a3b8; }

.popular-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #000; padding: 6px 20px; border-radius: 50px; font-size: 12px; font-weight: 800; }

.card-tier { font-size: 14px; font-weight: 800; margin-bottom: 2rem; color: #64748b; }
.price { font-size: 48px; font-weight: 900; margin-bottom: 1rem; }
.price span { font-size: 16px; color: #64748b; font-weight: 500; }
.discount-text { color: #10b981; font-size: 13px; font-weight: 700; margin-bottom: 2rem; }

.features-list { list-style: none; text-align: left; margin-bottom: 3rem; }
.features-list li { margin-bottom: 1rem; font-size: 14px; color: #94a3b8; display: flex; align-items: center; gap: 12px; }
.features-list li i { color: #10b981; font-size: 12px; }

/* --- DASHBOARD STYLES --- */
.dashboard-wrapper { display: flex; min-height: 100vh; width: 100%; }
.sidebar { width: 260px; background: #0f172a; border-right: 1px solid rgba(255, 255, 255, 0.1); position: fixed; height: 100vh; padding: 2rem 0; display: flex; flex-direction: column; z-index: 100; }
.sidebar-header { padding: 0 1.5rem 2rem; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.logo-img { width: 40px !important; height: 40px !important; object-fit: contain; border-radius: 8px; }
.sidebar-nav { flex: 1; padding: 2rem 1rem; }
.sidebar-nav a { display: flex; align-items: center; gap: 12px; padding: 12px 1rem; color: #94a3b8; text-decoration: none; border-radius: 8px; margin-bottom: 8px; transition: 0.3s; }
.sidebar-nav a:hover, .sidebar-nav a.active { background: rgba(212, 175, 55, 0.1); color: #d4af37; }
.main-content { flex: 1; margin-left: 260px; padding: 2rem 5%; background: #0b0f19; min-height: 100vh; }

/* Highlight Cards */
.highlight-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 24px; margin-bottom: 2.5rem; }
.highlight-card { background: #1e293b; border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 16px; padding: 1.5rem; position: relative; }
.card-tag { position: absolute; top: 0; right: 0; padding: 4px 12px; font-size: 10px; font-weight: 800; border-bottom-left-radius: 8px; background: #d4af37; color: #000; }
.card-tag.blue { background: #3b82f6; color: #fff; }
.card-tag.red { background: #ef4444; color: #fff; }

/* Table */
.table-container { background: #1e293b; border-radius: 12px; padding: 1rem; border: 1px solid rgba(255, 255, 255, 0.05); overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th { text-align: left; padding: 12px; color: #64748b; font-size: 12px; text-transform: uppercase; }
td { padding: 16px 12px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.league-tag { background: rgba(255, 255, 255, 0.05); padding: 4px 8px; border-radius: 4px; font-size: 10px; color: #94a3b8; }
.advice-badge { background: rgba(212, 175, 55, 0.1); color: #d4af37; padding: 6px 12px; border-radius: 6px; font-weight: 700; }
.risk-score { font-weight: 700; color: #ef4444; }
.odds { font-weight: 800; color: #fff; font-size: 16px; }

/* Login Overlay */
.login-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: #0b0f19; z-index: 10000; display: flex; align-items: center; justify-content: center; }
.login-card { background: #1e293b; padding: 3rem; border-radius: 24px; text-align: center; max-width: 420px; width: 90%; border: 1px solid rgba(255, 255, 255, 0.1); box-shadow: 0 0 50px rgba(0,0,0,0.8); display: flex; flex-direction: column; align-items: center; }
.login-logo { width: 120px !important; height: 120px !important; object-fit: contain; border-radius: 20px; margin-bottom: 2rem; display: block !important; }

/* Animations */
@keyframes pulse { 0% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }

/* Responsive */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; text-align: center; padding-top: 120px; }
    .hero h1 { font-size: 48px; }
    .hero-buttons { justify-content: center; }
    .stats-container { justify-content: center; }
    .features-grid, .pricing-cards { grid-template-columns: 1fr; }
    .sidebar { display: none; }
    .main-content { margin-left: 0; padding: 1rem; }
    .highlight-grid { grid-template-columns: 1fr; }
}
