/* NairaBet - Unified Styles
   ================================ */

/* ================================
   CSS Variables
   ================================ */
:root {
    --primary-blue: #013be5;
    --primary-blue-dark: #0130b8;
    --primary-blue-light: #2558f0;
    --accent-green: #13d37b;
    --accent-green-light: #2de891;
    --accent-green-dark: #0fb366;
    --white: #fff;
    --dark-bg: #080b12;
    --dark-card: #0f1319;
    --dark-card-hover: #161b24;
    --dark-border: rgba(255,255,255,0.08);
    --text-primary: #fff;
    --text-secondary: rgba(255,255,255,0.7);
    --text-muted: rgba(255,255,255,0.5);
    --gradient-blue: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    --gradient-green: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-light) 100%);
    --shadow-lg: 0 25px 50px -12px rgba(0,0,0,0.5);
    --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-heading: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ================================
   Base Styles
   ================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--dark-bg); color: var(--text-primary); line-height: 1.6; overflow-x: hidden; }
body::before { content: ''; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(ellipse at 20% 20%, rgba(1,59,229,0.12) 0%, transparent 50%), radial-gradient(ellipse at 80% 80%, rgba(19,211,123,0.08) 0%, transparent 50%); pointer-events: none; z-index: 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* ================================
   Icons
   ================================ */
.icon { width: 24px; height: 24px; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; fill: none; }
.icon-sm { width: 20px; height: 20px; }
.icon-lg { width: 28px; height: 28px; }

/* ================================
   Header
   ================================ */
header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(8,11,18,0.9); backdrop-filter: blur(20px); border-bottom: 1px solid var(--dark-border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { height: 36px; width: auto; }
nav { display: flex; align-items: center; gap: 8px; }
nav a { color: var(--text-secondary); text-decoration: none; padding: 10px 16px; border-radius: 8px; font-size: 14px; font-weight: 500; transition: all 0.2s ease; }
nav a:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); }
nav .btn { padding: 12px; }

/* ================================
   Buttons
   ================================ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; border-radius: 10px; font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.3s ease; cursor: pointer; border: none; }
.btn-primary { background: var(--gradient-blue); color: #fff; box-shadow: 0 4px 15px rgba(1,59,229,0.4); }
.btn-primary:hover { box-shadow: 0 8px 25px rgba(1,59,229,0.5); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--text-primary); border: 1px solid var(--dark-border); }
.btn-secondary:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.15); }
.btn-green { background: var(--gradient-green); color: var(--dark-bg); box-shadow: 0 4px 15px rgba(19,211,123,0.4); }
.btn-green:hover { box-shadow: 0 8px 25px rgba(19,211,123,0.5); transform: translateY(-2px); }

/* ================================
   Hero Section (Index)
   ================================ */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 100px 0 60px; }
.hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-text h1 { font-family: var(--font-heading); font-size: 64px; font-weight: 800; line-height: 1.1; margin-bottom: 24px; }
.hero-text h1 span { background: var(--gradient-green); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-text p { font-size: 18px; color: var(--text-secondary); margin-bottom: 32px; max-width: 480px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual { position: relative; display: flex; justify-content: center; }

/* ================================
   App Hero Section
   ================================ */
.app-hero { min-height: 100vh; display: flex; align-items: center; padding: 120px 0 80px; }
.app-hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.app-hero-text h1 { font-family: var(--font-heading); font-size: 56px; font-weight: 800; line-height: 1.1; margin-bottom: 24px; }
.app-hero-text h1 span { background: var(--gradient-green); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.app-hero-text p { font-size: 18px; color: var(--text-secondary); margin-bottom: 32px; max-width: 480px; }
.app-hero-visual { display: flex; justify-content: center; }

/* ================================
   Download Buttons
   ================================ */
.download-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.download-btn { display: flex; align-items: center; gap: 12px; padding: 16px 28px; background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: 14px; text-decoration: none; color: var(--text-primary); transition: all 0.3s ease; }
.download-btn:hover { border-color: var(--primary-blue); transform: translateY(-2px); }
.download-btn svg { width: 32px; height: 32px; }
.download-btn-text { text-align: left; }
.download-btn-text span { display: block; font-size: 12px; color: var(--text-muted); }
.download-btn-text strong { font-size: 18px; font-weight: 600; }

/* ================================
   App Features
   ================================ */
.app-features { display: flex; gap: 32px; }
.app-feature { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-secondary); }
.app-feature svg { width: 20px; height: 20px; color: var(--accent-green); }

/* ================================
   Phone Mockup
   ================================ */
.phone-mockup { position: relative; }
.phone-frame { width: 280px; height: 560px; background: var(--dark-card); border-radius: 40px; padding: 12px; border: 3px solid #2a2f38; box-shadow: var(--shadow-lg); }
.phone-notch { position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 100px; height: 28px; background: #1a1f28; border-radius: 20px; z-index: 10; }
.phone-screen { width: 100%; height: 100%; background: linear-gradient(180deg, #0a1628 0%, #0d1f3c 100%); border-radius: 28px; overflow: hidden; position: relative; }

/* Phone Screen - Index Style */
.phone-header { padding: 50px 16px 16px; display: flex; justify-content: space-between; align-items: center; background: var(--primary-blue); }
.phone-logo { height: 20px; filter: brightness(0) invert(1); }
.phone-balance { text-align: right; }
.phone-balance-label { display: block; font-size: 10px; color: rgba(255,255,255,0.7); }
.phone-balance-value { font-size: 14px; font-weight: 700; color: #fff; }
.phone-nav { display: flex; padding: 12px; gap: 8px; background: rgba(0,0,0,0.2); }
.phone-nav-item { padding: 8px 16px; border-radius: 20px; font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.6); }
.phone-nav-item.active { background: var(--accent-green); color: var(--dark-bg); }
.phone-content { padding: 12px; }
.phone-match { background: rgba(255,255,255,0.05); border-radius: 12px; padding: 12px; margin-bottom: 10px; }
.phone-match-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.phone-match-league { font-size: 10px; color: var(--text-muted); }
.phone-match-live { font-size: 9px; font-weight: 700; color: #fff; background: #ef4444; padding: 2px 8px; border-radius: 10px; }
.phone-match-teams { display: flex; justify-content: space-between; align-items: center; }
.phone-team-name { font-size: 12px; font-weight: 600; }
.phone-match-vs { font-size: 10px; color: var(--text-muted); }
.phone-bottom-nav { position: absolute; bottom: 0; left: 0; right: 0; display: flex; justify-content: space-around; padding: 12px; background: rgba(0,0,0,0.3); border-top: 1px solid rgba(255,255,255,0.1); }
.phone-bottom-item { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 9px; color: var(--text-muted); }
.phone-bottom-item.active { color: var(--accent-green); }
.phone-bottom-item svg { width: 18px; height: 18px; }

/* Phone Screen - App Style */
.phone-header-app { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-bottom: 40px; }
.phone-logo-app { height: 28px; filter: brightness(0) invert(1); }
.phone-welcome { text-align: center; color: #fff; }
.phone-welcome span { font-size: 14px; opacity: 0.9; }
.phone-hero-text { text-align: center; color: #fff; margin-bottom: 30px; }
.phone-hero-text h3 { font-size: 22px; font-weight: 800; line-height: 1.2; margin-bottom: 8px; }
.phone-hero-text p { font-size: 12px; opacity: 0.8; }
.phone-hero-title { display: block; font-size: 22px; font-weight: 800; line-height: 1.2; margin-bottom: 8px; }
.phone-cta-btn { background: var(--gradient-green); color: var(--dark-bg); padding: 12px 24px; border-radius: 25px; font-size: 13px; font-weight: 700; cursor: pointer; }

/* App Hero Phone Screen - Blue Gradient */
.app-hero .phone-screen { background: linear-gradient(180deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 60px 20px 40px; }

/* Floating Badges */
.floating-badge { position: absolute; background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: 12px; padding: 10px 14px; display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: var(--text-primary); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.floating-badge svg { width: 18px; height: 18px; color: var(--accent-green); }
.badge-1 { top: 80px; left: -80px; animation: float 3s ease-in-out infinite; }
.badge-2 { top: 200px; right: -90px; animation: float 3s ease-in-out infinite 0.5s; }
.badge-3 { bottom: 120px; left: -70px; animation: float 3s ease-in-out infinite 1s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ================================
   Stats Banner
   ================================ */
.stats-banner { padding: 40px 0; background: var(--dark-card); border-top: 1px solid var(--dark-border); border-bottom: 1px solid var(--dark-border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-value { font-family: var(--font-heading); font-size: 36px; font-weight: 800; margin-bottom: 4px; }
.stat-label { font-size: 14px; color: var(--text-muted); }

/* ================================
   Sections
   ================================ */
section { padding: 100px 0; }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.section-label { display: inline-block; background: rgba(1,59,229,0.15); color: #83a2ff; padding: 8px 16px; border-radius: 20px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.section-title { font-family: var(--font-heading); font-size: 40px; font-weight: 700; margin-bottom: 16px; }
.section-subtitle { font-size: 17px; color: var(--text-secondary); }
.section-header h2 { font-family: var(--font-heading); font-size: 36px; font-weight: 700; margin-bottom: 12px; }
.section-header p { color: var(--text-secondary); font-size: 17px; }

/* ================================
   Features Grid
   ================================ */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: 20px; padding: 28px; transition: all 0.3s ease; }
.feature-card:hover { border-color: rgba(255,255,255,0.15); transform: translateY(-4px); }
.feature-icon { width: 52px; height: 52px; background: rgba(1,59,229,0.15); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--primary-blue-light); }
.feature-card:nth-child(even) .feature-icon { background: rgba(19,211,123,0.15); color: var(--accent-green); }
.feature-card h3 { font-family: var(--font-heading); font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ================================
   Sports Section
   ================================ */
.sports-section { background: linear-gradient(180deg, transparent 0%, rgba(1,59,229,0.05) 50%, transparent 100%); }
.sports-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.sport-card { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: 16px; padding: 24px; text-align: center; transition: all 0.3s ease; }
.sport-card:hover { border-color: var(--primary-blue); transform: translateY(-4px); }
.sport-icon { width: 56px; height: 56px; background: rgba(1,59,229,0.15); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--primary-blue-light); }
.sport-card h3 { font-family: var(--font-heading); font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.sport-card span { font-size: 12px; color: var(--text-muted); }

/* ================================
   Info Section
   ================================ */
.info-section { background: var(--dark-card); border-top: 1px solid var(--dark-border); border-bottom: 1px solid var(--dark-border); padding: 60px 0; }
.info-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; }
.info-item { display: flex; align-items: center; gap: 12px; }
.info-icon { width: 40px; height: 40px; background: rgba(1,59,229,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--primary-blue-light); flex-shrink: 0; }
.info-content strong { display: block; font-size: 12px; color: var(--text-muted); font-weight: 500; margin-bottom: 2px; }
.info-content p { font-size: 14px; font-weight: 600; }

/* ================================
   App Steps Section
   ================================ */
.app-steps { padding: 100px 0; background: var(--dark-card); border-top: 1px solid var(--dark-border); border-bottom: 1px solid var(--dark-border); }
.steps-header { text-align: center; margin-bottom: 60px; }
.steps-header h2 { font-family: var(--font-heading); font-size: 36px; font-weight: 700; margin-bottom: 12px; }
.steps-header p { color: var(--text-secondary); font-size: 17px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step-card { text-align: center; padding: 32px; }
.step-number { width: 56px; height: 56px; background: var(--gradient-blue); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 24px; font-weight: 700; margin: 0 auto 20px; }
.step-card h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.step-card p { color: var(--text-secondary); font-size: 15px; line-height: 1.6; }

/* ================================
   Why App Section
   ================================ */
.why-app { padding: 100px 0; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: 20px; padding: 32px; text-align: center; transition: all 0.3s ease; }
.why-card:hover { border-color: rgba(255,255,255,0.15); transform: translateY(-4px); }
.why-icon { width: 60px; height: 60px; background: rgba(1,59,229,0.15); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--primary-blue-light); }
.why-card:nth-child(even) .why-icon { background: rgba(19,211,123,0.15); color: var(--accent-green); }
.why-card h3 { font-family: var(--font-heading); font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ================================
   Requirements & Comparison Tables
   ================================ */
.requirements-section, .comparison-section { padding: 100px 0; }
.requirements-table-wrapper, .comparison-table-wrapper { overflow-x: auto; }
.requirements-table, .comparison-table { width: 100%; border-collapse: collapse; background: var(--dark-card); border-radius: 16px; overflow: hidden; }
.requirements-table th, .requirements-table td, .comparison-table th, .comparison-table td { padding: 20px 24px; text-align: left; border-bottom: 1px solid var(--dark-border); }
.requirements-table th, .comparison-table th { background: rgba(1,59,229,0.15); font-family: var(--font-heading); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-primary); }
.requirements-table td, .comparison-table td { font-size: 15px; color: var(--text-secondary); }
.requirements-table tbody tr:last-child td, .comparison-table tbody tr:last-child td { border-bottom: none; }
.requirements-table tbody tr:hover, .comparison-table tbody tr:hover { background: rgba(255,255,255,0.02); }
.platform-cell { display: flex; align-items: center; gap: 10px; color: var(--text-primary); font-weight: 600; }
.platform-cell .icon { width: 20px; height: 20px; color: var(--accent-green); }
.comparison-table td.highlight { background: rgba(19,211,123,0.05); }
.badge { display: inline-block; padding: 6px 12px; border-radius: 8px; font-size: 13px; }
.badge.green { background: rgba(19,211,123,0.15); color: var(--accent-green); }
.badge.red { background: rgba(239,68,68,0.15); color: #ef4444; }
.badge.neutral { background: rgba(255,255,255,0.05); color: var(--text-muted); }

/* ================================
   FAQ Section
   ================================ */
.faq-section { padding: 100px 0; background: var(--dark-card); border-top: 1px solid var(--dark-border); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: rgba(255,255,255,0.02); border: 1px solid var(--dark-border); border-radius: 16px; margin-bottom: 16px; overflow: hidden; }
.faq-question { width: 100%; padding: 24px; background: transparent; border: none; color: var(--text-primary); font-family: var(--font-body); font-size: 16px; font-weight: 600; text-align: left; cursor: pointer; display: flex; align-items: center; justify-content: space-between; transition: background 0.2s ease; }
.faq-question:hover { background: rgba(255,255,255,0.02); }
.faq-question .icon { color: var(--primary-blue-light); transition: transform 0.3s ease; width: 20px; height: 20px; flex-shrink: 0; }
.faq-item.active .faq-question .icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.active .faq-answer { max-height: 200px; }
.faq-answer p { padding: 0 24px 24px; color: var(--text-secondary); font-size: 15px; line-height: 1.7; }

/* ================================
   Contact Section
   ================================ */
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 700px; margin: 0 auto; }
.contact-card { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: 20px; padding: 32px; text-align: center; }
.contact-icon { width: 64px; height: 64px; background: rgba(1,59,229,0.15); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--primary-blue-light); }
.contact-card:nth-child(2) .contact-icon { background: rgba(19,211,123,0.15); color: var(--accent-green); }
.contact-card h3 { font-family: var(--font-heading); font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.contact-card p { font-size: 14px; color: var(--text-secondary); }
.contact-card a { color: #83a2ff; text-decoration: none; }

/* ================================
   Security Section
   ================================ */
.security-section { background: linear-gradient(135deg, rgba(1,59,229,0.08) 0%, rgba(19,211,123,0.05) 100%); }
.security-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.security-card { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: 20px; padding: 32px; text-align: center; }
.security-icon { width: 56px; height: 56px; background: rgba(1,59,229,0.15); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--primary-blue-light); }
.security-card:nth-child(2) .security-icon { background: rgba(19,211,123,0.15); color: var(--accent-green); }
.security-card h3 { font-family: var(--font-heading); font-size: 18px; font-weight: 600; margin-bottom: 12px; }
.security-card p { font-size: 14px; color: var(--text-secondary); }

/* Welcome Section */
.welcome-section { padding: 60px 0; background: var(--dark-card); border-top: 1px solid rgba(255,255,255,0.05); }
.welcome-content { max-width: 900px; margin: 0 auto; text-align: center; }
.welcome-content h2 { font-family: var(--font-heading); font-size: 28px; font-weight: 700; margin-bottom: 20px; color: var(--white); }
.welcome-content h2::after { content: ''; display: block; width: 60px; height: 3px; background: var(--gradient-green); margin: 16px auto 0; border-radius: 2px; }
.welcome-content p { font-size: 16px; line-height: 1.7; color: var(--text-secondary); }

/* Legal Section */
.legal-section { padding: 60px 0; background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(1,59,229,0.08) 100%); }
.legal-content { max-width: 900px; margin: 0 auto; text-align: center; }
.legal-content h2 { font-family: var(--font-heading); font-size: 26px; font-weight: 700; margin-bottom: 24px; color: var(--white); }
.legal-content p { font-size: 15px; line-height: 1.7; color: var(--text-secondary); margin-bottom: 16px; }
.legal-content p:last-of-type { margin-bottom: 30px; }
.license-badges { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-top: 30px; }
.license-badge { display: flex; align-items: center; gap: 10px; background: rgba(1,59,229,0.15); border: 1px solid rgba(1,59,229,0.3); padding: 12px 20px; border-radius: 30px; }
.license-badge .icon { width: 20px; height: 20px; stroke: var(--accent-green); fill: none; stroke-width: 2; }
.license-badge span { font-size: 14px; font-weight: 600; color: var(--white); }

/* ================================
   CTA Section
   ================================ */
.cta-section { text-align: center; padding: 120px 0; }
.cta-box { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: 32px; padding: 80px 60px; position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gradient-blue); }
.cta-box h2 { font-family: var(--font-heading); font-size: 44px; font-weight: 700; margin-bottom: 16px; }
.cta-box p { font-size: 18px; color: var(--text-secondary); margin-bottom: 32px; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; }

/* ================================
   Footer
   ================================ */
footer { background: var(--dark-card); border-top: 1px solid var(--dark-border); padding: 60px 0 30px; }
.footer-content { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 40px; }
.footer-brand { max-width: 300px; }
.footer-brand .logo img { height: 32px; }
.footer-brand p { color: var(--text-muted); font-size: 14px; margin-top: 16px; line-height: 1.7; }
.footer-links { display: flex; gap: 80px; }
.footer-title { display: block; font-family: var(--font-heading); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: var(--text-secondary); text-decoration: none; font-size: 14px; }
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom { border-top: 1px solid var(--dark-border); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: var(--text-muted); font-size: 13px; }
.footer-badges { display: flex; align-items: center; gap: 24px; }
.footer-badge { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); }
.footer-badge .icon { width: 16px; height: 16px; color: var(--accent-green); }

/* Simple Footer */
.footer-simple { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-simple p { color: var(--text-muted); font-size: 13px; }
.footer-simple-links { display: flex; gap: 24px; }
.footer-simple-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }

/* ================================
   Modal
   ================================ */
.modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.85); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; z-index: 2000; opacity: 0; visibility: hidden; transition: all 0.3s ease; padding: 20px; }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: 24px; max-width: 480px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; transform: scale(0.9) translateY(20px); transition: all 0.3s ease; }
.modal-overlay.active .modal { transform: scale(1) translateY(0); }
.modal-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; background: rgba(255,255,255,0.1); border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; color: #fff; transition: all 0.2s ease; z-index: 10; }
.modal-close:hover { background: rgba(255,255,255,0.2); }
.modal-header { background: var(--gradient-blue); padding: 28px 32px; text-align: center; }
.modal-header h2 { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: #fff; line-height: 1.4; }
.modal-body { padding: 32px; max-height: 70vh; overflow-y: auto; }
.modal-partner { display: flex; align-items: flex-end; justify-content: center; gap: 16px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--dark-border); }
.modal-partner-logo { width: 100px; height: 56px; background: #2a2f38; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.modal-partner-logo.old { opacity: 0.5; }
.modal-partner-logo.old img { height: 18px; filter: grayscale(100%); }
.modal-partner-logo.new { background: rgba(19,211,123,0.15); border: 1px solid rgba(19,211,123,0.3); opacity: 1; }
.modal-partner-new { display: flex; flex-direction: column; align-items: center; }
.modal-partner-label { font-size: 11px; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.modal-1win-logo { height: 22px; }
.modal-partner-arrow { color: var(--accent-green); margin-bottom: 16px; animation: arrowPulse 1.5s ease-in-out infinite; }
@keyframes arrowPulse { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(6px); } }
.modal-text { text-align: center; margin-bottom: 24px; }
.modal-text p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }
.modal-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.modal-feature { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text-secondary); padding: 12px 16px; background: rgba(19,211,123,0.08); border-radius: 10px; }
.modal-feature svg { color: var(--accent-green); flex-shrink: 0; }
.modal-cta { display: flex; flex-direction: column; align-items: center; }
.modal-cta .btn { width: 100%; padding: 16px 24px; font-size: 15px; }
.modal-bonus-text { text-align: center; font-size: 12px; color: var(--accent-green); margin-top: 12px; }
.modal-faq-link { margin-top: 20px; text-align: center; }
.modal-faq-link a { color: var(--text-muted); text-decoration: none; font-size: 14px; display: inline-flex; align-items: center; gap: 8px; transition: color 0.2s; }
.modal-faq-link a:hover { color: var(--text-primary); }
.modal-faq-link .icon { width: 16px; height: 16px; }

/* ================================
   FAQ Panel (Modal)
   ================================ */
.faq-panel { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-panel.active { max-height: 500px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--dark-border); }
.faq-panel-title { font-family: var(--font-heading); font-size: 16px; font-weight: 600; margin-bottom: 16px; text-align: center; }
.faq-panel-item { background: rgba(255,255,255,0.03); border: 1px solid var(--dark-border); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.faq-panel-question { width: 100%; padding: 14px 16px; background: transparent; border: none; color: var(--text-primary); font-family: var(--font-body); font-size: 14px; font-weight: 600; text-align: left; cursor: pointer; display: flex; align-items: center; justify-content: space-between; }
.faq-panel-question:hover { background: rgba(255,255,255,0.02); }
.faq-panel-question .icon { color: var(--primary-blue-light); transition: transform 0.3s ease; width: 18px; height: 18px; }
.faq-panel-item.active .faq-panel-question .icon { transform: rotate(45deg); }
.faq-panel-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-panel-item.active .faq-panel-answer { max-height: 150px; }
.faq-panel-answer p { padding: 0 16px 14px; color: var(--text-secondary); font-size: 13px; line-height: 1.6; }

/* ================================
   Login & Registration Pages
   ================================ */
.login-page, .register-page { min-height: 100vh; display: flex; align-items: center; padding: 120px 0 80px; }
.login-wrapper, .register-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.login-info h1, .register-info h1 { font-family: var(--font-heading); font-size: 48px; font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
.login-info h1 span, .register-info h1 span { background: var(--gradient-green); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.login-info p, .register-info p { font-size: 18px; color: var(--text-secondary); margin-bottom: 32px; max-width: 440px; }
.login-features, .register-features { display: flex; flex-direction: column; gap: 16px; }
.login-feature, .register-feature { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text-secondary); }
.login-feature svg, .register-feature svg { color: var(--accent-green); flex-shrink: 0; }

/* ================================
   Forms
   ================================ */
.login-form-wrapper, .register-form-wrapper { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: 24px; padding: 40px; max-width: 440px; margin-left: auto; }
.login-form-header, .register-form-header { text-align: center; margin-bottom: 32px; }
.login-form-header h2, .register-form-header h2 { font-family: var(--font-heading); font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.login-form-header p, .register-form-header p { font-size: 14px; color: var(--text-muted); }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 8px; color: var(--text-secondary); }
.form-input { width: 100%; padding: 14px 16px; background: rgba(255,255,255,0.03); border: 1px solid var(--dark-border); border-radius: 10px; font-size: 15px; color: var(--text-primary); transition: all 0.2s ease; }
.form-input:focus { outline: none; border-color: var(--primary-blue); background: rgba(1,59,229,0.05); }
.form-input::placeholder { color: var(--text-muted); }
.password-wrapper { position: relative; }
.password-toggle { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); background: none; border: none; color: var(--text-muted); cursor: pointer; padding: 4px; }
.form-options { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.remember-me { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-secondary); cursor: pointer; }
.remember-me input { width: 18px; height: 18px; accent-color: var(--primary-blue); }
.forgot-link { font-size: 14px; color: var(--primary-blue-light); text-decoration: none; }
.login-btn, .register-btn { width: 100%; padding: 16px; font-size: 16px; margin-bottom: 20px; }
.form-divider { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.form-divider::before, .form-divider::after { content: ''; flex: 1; height: 1px; background: var(--dark-border); }
.form-divider span { font-size: 13px; color: var(--text-muted); }
.alt-actions { display: flex; gap: 12px; }
.alt-actions .btn { flex: 1; padding: 12px 16px; font-size: 13px; }
.signup-prompt, .login-prompt { text-align: center; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--dark-border); font-size: 14px; color: var(--text-muted); }
.signup-prompt a, .login-prompt a { color: var(--accent-green); text-decoration: none; font-weight: 600; }
.form-security { display: flex; justify-content: center; gap: 20px; margin-top: 24px; flex-wrap: wrap; }
.form-security-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-muted); }
.form-security-item svg { width: 14px; height: 14px; color: var(--accent-green); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-helper { font-size: 12px; color: var(--text-muted); margin-top: 6px; }
.form-checkbox { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 24px; font-size: 13px; color: var(--text-secondary); line-height: 1.5; }
.form-checkbox input { margin-top: 3px; accent-color: var(--accent-green); }
.form-checkbox a { color: var(--accent-green); text-decoration: underline; }
.bonus-banner { background: linear-gradient(135deg,rgba(19,211,123,0.15) 0%,rgba(1,59,229,0.15) 100%); border: 1px solid rgba(19,211,123,0.3); border-radius: 16px; padding: 24px; margin-bottom: 32px; }
.bonus-banner-content { display: flex; align-items: center; gap: 20px; }
.bonus-title { font-family: var(--font-heading); font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.bonus-text p { font-size: 18px; color: var(--text-muted); margin-bottom: 0 !important; }
.terms-check { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-secondary); line-height: 1.5; margin-bottom: 24px; }
.terms-check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--primary-blue); flex-shrink: 0; }
.terms-check a { color: var(--primary-blue-light); text-decoration: none; }

/* ================================
   Mobile Page
   ================================ */
.mobile-hero { min-height: 100vh; display: flex; align-items: center; padding: 120px 0 80px; }
.mobile-hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.mobile-hero-text h1 { font-family: var(--font-heading); font-size: 56px; font-weight: 800; line-height: 1.1; margin-bottom: 24px; }
.mobile-hero-text h1 span { background: var(--gradient-green); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.mobile-hero-text > p { font-size: 18px; color: var(--text-secondary); margin-bottom: 32px; max-width: 480px; }
.mobile-hero-visual { display: flex; justify-content: center; }
.mobile-cta-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.mobile-features { display: flex; gap: 32px; }
.mobile-feature { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-secondary); }
.mobile-feature svg { width: 20px; height: 20px; color: var(--accent-green); }

/* ================================
   Legal Pages (Privacy, Terms)
   ================================ */
.legal-page { padding: 140px 0 80px; }
.legal-header { text-align: center; margin-bottom: 60px; }
.legal-header h1 { font-family: var(--font-heading); font-size: 44px; font-weight: 800; margin-bottom: 16px; }
.legal-header p { font-size: 16px; color: var(--text-muted); }
.legal-content { max-width: 800px; margin: 0 auto; background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: 24px; padding: 48px; }
.legal-content h2 { font-family: var(--font-heading); font-size: 22px; font-weight: 700; margin-top: 32px; margin-bottom: 16px; color: var(--text-primary); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; }
.legal-content ul { margin-bottom: 16px; padding-left: 24px; }
.legal-content li { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 8px; }
.legal-content a { color: var(--primary-blue-light); text-decoration: none; }

/* ================================
   Responsive - Tablet
   ================================ */
@media (max-width: 1024px) {
    .hero-content, .app-hero-content, .mobile-hero-content { grid-template-columns: 1fr; text-align: center; gap: 60px; }
    .hero-text h1 { font-size: 48px; }
    .app-hero-text h1, .mobile-hero-text h1 { font-size: 44px; }
    .hero-buttons, .download-buttons, .mobile-cta-buttons { justify-content: center; }
    .app-features, .mobile-features { justify-content: center; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid, .sports-grid { grid-template-columns: repeat(2, 1fr); }
    .info-grid { grid-template-columns: repeat(3, 1fr); }
    .steps-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .floating-feature.top-left { left: 0; }
    .floating-feature.bottom-right { right: 0; }
    .security-grid { grid-template-columns: 1fr; }
    .floating-badge { display: none; }
    .policy-wrapper { grid-template-columns: 1fr; }
    .policy-nav { display: none; }
    .bonus-hero h1 { font-size: 48px; }
    .details-grid { grid-template-columns: 1fr; }
    .login-wrapper, .register-wrapper { grid-template-columns: 1fr; gap: 48px; }
    .login-form-wrapper, .register-form-wrapper { margin: 0 auto; }
    .login-info, .register-info { text-align: center; }
    .login-info h1, .register-info h1 { font-size: 40px; }
    .login-info p, .register-info p { margin-left: auto; margin-right: auto; }
    .login-features, .register-features { align-items: center; }
    .bonus-banner-content { justify-content: center; }
    .requirements-table th, .requirements-table td, .comparison-table th, .comparison-table td { padding: 16px 12px; font-size: 14px; }
}

/* ================================
   Responsive - Mobile
   ================================ */
@media (max-width: 768px) {
    .header-inner { height: 64px; }
    nav a:not(.btn) { display: none; }
    .hero { padding: 100px 0 60px; }
    .hero-text h1 { font-size: 36px; }
    .app-hero-text h1, .mobile-hero-text h1 { font-size: 36px; }
    .hero-buttons { flex-direction: column; }
    .download-buttons, .mobile-cta-buttons { flex-direction: column; }
    .app-features, .mobile-features { flex-direction: column; align-items: center; }
    .stats-grid, .features-grid, .sports-grid { grid-template-columns: 1fr; }
    .info-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .floating-feature { display: none; }
    .lite-phone { width: 240px; height: 480px; }
    .contact-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 32px; }
    .cta-box { padding: 60px 30px; }
    .cta-box h2 { font-size: 32px; }
    .cta-buttons { flex-direction: column; }
    .footer-content { flex-direction: column; gap: 40px; }
    .footer-links { flex-direction: column; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    .footer-simple { flex-direction: column; text-align: center; }
    .login-page, .register-page { padding: 100px 0 60px; }
    .login-info h1, .register-info h1 { font-size: 32px; }
    .login-form-wrapper, .register-form-wrapper { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; }
    .bonus-banner-content { flex-direction: column; text-align: center; }
    .requirements-section, .comparison-section { padding: 60px 0; }
    .faq-section { padding: 60px 0; }
    .legal-page { padding: 100px 0 60px; }
    .legal-header h1 { font-size: 32px; }
    .legal-content { padding: 32px 24px; }
    .modal-overlay { padding: 0; }
    .modal { max-width: 100%; width: 100%; height: 100%; max-height: 100vh; border-radius: 0; }
    .modal-body { max-height: calc(100vh - 120px); }
    .page-header { padding: 120px 0 40px; }
    .page-header h1 { font-size: 36px; }
    .policy-section h2 { font-size: 24px; }
    .policy-content { padding: 60px 0; }
    .page-header-meta { flex-direction: column; gap: 12px; }
    .bonus-hero { padding: 100px 0 60px; }
    .bonus-hero h1 { font-size: 36px; }
    .bonus-hero p { font-size: 18px; }
    .bonus-features { flex-direction: column; align-items: center; gap: 16px; }
    .cta-section h2 { font-size: 32px; }
}

/* Mobile Lite Phone Visual */
.hero-mobile-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.floating-feature { position: absolute; display: flex; align-items: center; gap: 10px; background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: 12px; padding: 12px 16px; font-size: 13px; font-weight: 500; color: var(--text-secondary); box-shadow: var(--shadow-lg); z-index: 10; }
.floating-feature.top-left { top: 20px; left: -40px; }
.floating-feature.bottom-right { bottom: 40px; right: -40px; }
.floating-feature-icon { width: 36px; height: 36px; background: rgba(19,211,123,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--accent-green); }
.floating-feature-icon.blue { background: rgba(1,59,229,0.15); color: var(--primary-blue-light); }
.lite-phone { width: 280px; height: 560px; background: #1a1f2e; border-radius: 40px; padding: 12px; position: relative; box-shadow: 0 25px 80px rgba(0,0,0,0.5), inset 0 0 0 2px rgba(255,255,255,0.1); }
.lite-badge { position: absolute; top: -10px; right: 20px; background: var(--gradient-green); color: var(--dark-bg); font-size: 11px; font-weight: 700; padding: 6px 12px; border-radius: 6px; letter-spacing: 1px; }
.lite-phone-notch { width: 100px; height: 28px; background: #0a0d14; border-radius: 0 0 16px 16px; margin: 0 auto 8px; }
.lite-phone-screen { background: var(--dark-bg); border-radius: 28px; height: calc(100% - 36px); overflow: hidden; display: flex; flex-direction: column; }
.lite-phone-header { padding: 16px; background: var(--dark-card); border-bottom: 1px solid var(--dark-border); display: flex; justify-content: center; }
.lite-phone-header img { height: 20px; }
.lite-phone-content { flex: 1; padding: 12px; overflow: hidden; }
.lite-phone-nav { display: flex; gap: 8px; margin-bottom: 12px; }
.lite-phone-nav-item { flex: 1; padding: 8px; background: rgba(255,255,255,0.03); border: 1px solid var(--dark-border); border-radius: 8px; font-size: 11px; text-align: center; color: var(--text-muted); }
.lite-phone-nav-item.active { background: rgba(19,211,123,0.15); border-color: rgba(19,211,123,0.3); color: var(--accent-green); }
.lite-phone-list { display: flex; flex-direction: column; gap: 8px; }
.lite-phone-item { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: 10px; padding: 10px 12px; }
.lite-phone-item-left { margin-bottom: 6px; }
.lite-phone-item-left strong { display: block; font-size: 12px; font-weight: 600; margin-bottom: 2px; }
.lite-phone-item-left { font-size: 10px; color: var(--text-muted); }
.lite-phone-item-odds { display: flex; gap: 6px; }
.lite-phone-item-odds span { flex: 1; background: rgba(1,59,229,0.15); color: #83a2ff; padding: 6px; border-radius: 6px; font-size: 11px; font-weight: 600; text-align: center; }

/* App Hero Phone Screen Override */
.phone-screen-app { width: 100%; height: 100%; background: linear-gradient(180deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%); border-radius: 28px; overflow: hidden; position: relative; display: flex; flex-direction: column; align-items: center; padding: 50px 20px 20px; }

/* Policy Pages */
.page-header { padding: 140px 0 60px; text-align: center; border-bottom: 1px solid var(--dark-border); }
.page-header h1 { font-family: var(--font-heading); font-size: 48px; font-weight: 800; margin-bottom: 16px; }
.page-header h1 span { background: var(--gradient-blue); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-header.green h1 span { background: var(--gradient-green); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-header p { font-size: 18px; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }
.policy-content { padding: 80px 0; }
.policy-wrapper { display: grid; grid-template-columns: 280px 1fr; gap: 60px; }
.policy-main { max-width: 800px; }
.policy-section { margin-bottom: 48px; }
.policy-section h2 { font-family: var(--font-heading); font-size: 28px; font-weight: 700; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.policy-section h2 .section-number { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: var(--gradient-blue); border-radius: 10px; font-size: 16px; color: white; }
.policy-section.green h2 .section-number { background: var(--gradient-green); color: var(--dark-bg); }
.policy-section h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 600; margin: 28px 0 12px; color: var(--text-primary); }
.policy-section p { color: var(--text-secondary); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.policy-section ul, .policy-section ol { color: var(--text-secondary); font-size: 16px; line-height: 1.8; margin: 16px 0; padding-left: 24px; }
.policy-section li { margin-bottom: 10px; }
.policy-section strong { color: var(--text-primary); }
.policy-section a { color: #83a2ff; text-decoration: none; }
.policy-section a:hover { text-decoration: underline; }
.policy-content.green .policy-section h2 .section-number { background: var(--gradient-green); color: var(--dark-bg); }

/* Info Box Styles */
.info-box { background: rgba(1,59,229,0.1); border: 1px solid rgba(1,59,229,0.2); border-radius: 12px; padding: 20px 24px; margin: 24px 0; display: flex; align-items: flex-start; gap: 16px; }
.info-box.green { background: rgba(19,211,123,0.1); border-color: rgba(19,211,123,0.2); }
.info-box.warning { background: rgba(245,158,11,0.1); border-color: rgba(245,158,11,0.2); }
.info-box.red { background: rgba(239,68,68,0.1); border-color: rgba(239,68,68,0.2); }
.info-box-icon { width: 40px; height: 40px; background: var(--gradient-blue); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: white; }
.info-box.green .info-box-icon { background: var(--gradient-green); color: var(--dark-bg); }
.info-box.warning .info-box-icon { background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%); color: var(--dark-bg); }
.info-box.red .info-box-icon { background: linear-gradient(135deg, #ef4444 0%, #f87171 100%); color: white; }
.info-box-content h4 { font-family: var(--font-heading); font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.info-box-content p { font-size: 14px; color: var(--text-secondary); margin: 0; }

/* Contact Box Styles */
.contact-box { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: 16px; padding: 32px; margin-top: 48px; }
.contact-box h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.contact-box p { color: var(--text-secondary); font-size: 15px; margin-bottom: 20px; }
.contact-box-links { display: flex; gap: 16px; flex-wrap: wrap; }
.contact-box-link { display: flex; align-items: center; gap: 10px; padding: 12px 20px; background: rgba(255,255,255,0.03); border: 1px solid var(--dark-border); border-radius: 10px; color: var(--text-secondary); text-decoration: none; font-size: 14px; transition: all 0.2s ease; }
.contact-box-link:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.15); color: var(--text-primary); }
.contact-box-link svg { color: var(--accent-green); }

/* Policy Navigation */
.policy-nav { position: sticky; top: 100px; height: fit-content; }
.policy-nav-title { font-family: var(--font-heading); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 16px; }
.policy-nav-list { list-style: none; }
.policy-nav-list li { margin-bottom: 4px; }
.policy-nav-list a { display: block; padding: 10px 16px; color: var(--text-secondary); text-decoration: none; font-size: 14px; border-radius: 8px; transition: all 0.2s ease; border-left: 2px solid transparent; }
.policy-nav-list a:hover { color: var(--text-primary); background: rgba(255,255,255,0.03); }
.policy-nav-list a.active { color: var(--primary-blue-light); background: rgba(1,59,229,0.1); border-left-color: var(--primary-blue); }

/* Page Header Meta */
.page-header-meta { display: flex; justify-content: center; gap: 32px; margin-top: 24px; }
.page-header-meta-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-muted); }
.page-header-meta-item svg { color: var(--accent-green); }

/* Bonus Page Styles */
.bonus-hero { min-height: 100vh; display: flex; align-items: center; padding: 120px 0 80px; background: radial-gradient(ellipse at 50% 0%, rgba(19,211,123,0.15) 0%, transparent 60%); }
.bonus-hero-content { text-align: center; max-width: 800px; margin: 0 auto; }
.bonus-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(19,211,123,0.15); border: 1px solid rgba(19,211,123,0.3); padding: 8px 16px; border-radius: 50px; font-size: 14px; font-weight: 600; color: var(--accent-green); margin-bottom: 24px; }
.bonus-hero h1 { font-family: var(--font-heading); font-size: 64px; font-weight: 800; line-height: 1.1; margin-bottom: 24px; }
.bonus-hero h1 .highlight { background: var(--gradient-green); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.bonus-hero p { font-size: 20px; color: var(--text-secondary); margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
.bonus-hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.bonus-features { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; }
.bonus-feature { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--text-secondary); }
.bonus-feature svg { color: var(--accent-green); }
.bonus-details { padding: 100px 0; }
.details-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.detail-card { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: 20px; padding: 32px; }
.detail-card-icon { width: 48px; height: 48px; background: rgba(19,211,123,0.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--accent-green); margin-bottom: 20px; }
.detail-card h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.detail-card p { color: var(--text-secondary); font-size: 15px; line-height: 1.7; }
.detail-card ul { color: var(--text-secondary); font-size: 15px; line-height: 1.7; padding-left: 20px; margin-top: 12px; }
.detail-card li { margin-bottom: 8px; }
.bonus-terms { padding: 100px 0; background: var(--dark-card); border-top: 1px solid var(--dark-border); border-bottom: 1px solid var(--dark-border); }
.terms-box { background: rgba(255,255,255,0.02); border: 1px solid var(--dark-border); border-radius: 20px; padding: 40px; max-width: 800px; margin: 0 auto; }
.terms-box h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 600; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.terms-box h3 svg { color: var(--accent-green); }
.terms-list { color: var(--text-secondary); font-size: 15px; line-height: 1.8; }
.terms-list li { margin-bottom: 12px; padding-left: 8px; }
.terms-list strong { color: var(--text-primary); }
.cta-section { padding: 100px 0; text-align: center; background: radial-gradient(ellipse at 50% 100%, rgba(19,211,123,0.1) 0%, transparent 60%); }
.cta-section h2 { font-family: var(--font-heading); font-size: 40px; font-weight: 700; margin-bottom: 16px; }
.cta-section p { font-size: 18px; color: var(--text-secondary); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
