/* ============================================
   MONTE CARLO SPORTS - WEBSITE STYLES
   ============================================ */

/* CSS Variables */
:root {
    --bg-dark: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a25;
    --gold: #FFD700;
    --gold-dim: rgba(255, 215, 0, 0.1);
    --cyan: #00d4ff;
    --cyan-dim: rgba(0, 212, 255, 0.1);
    --white: #ffffff;
    --gray-100: rgba(255, 255, 255, 0.9);
    --gray-200: rgba(255, 255, 255, 0.7);
    --gray-300: rgba(255, 255, 255, 0.5);
    --gray-400: rgba(255, 255, 255, 0.3);
    --gray-500: rgba(255, 255, 255, 0.1);
    
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --smash: #FFD700;
    --value: #00d4ff;
    --lean: #888;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--gray-100);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-500);
}

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

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}

.logo-accent {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--gray-200);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--gold);
}

.btn-discord {
    background: var(--gold);
    color: var(--bg-dark) !important;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
}

.btn-discord:hover {
    background: #e6c200;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

/* Mobile menu active state */
.nav-links.active {
    display: flex;
}

/* ============================================
   HERO SECTION (CENTERED)
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 50% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 60%),
        linear-gradient(180deg, var(--bg-dark) 0%, #0d0d15 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    text-align: center;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title .highlight {
    color: var(--gold);
    text-shadow: 0 0 60px rgba(255, 215, 0, 0.3);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray-200);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 40px;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 14px;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background: #e6c200;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--gray-400);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ============================================
   SECTION STYLES
   ============================================ */

section {
    padding: 100px 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-300);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

/* ============================================
   MODELS GRID
   ============================================ */

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

.model-card {
    background: var(--bg-card);
    border: 1px solid var(--gray-500);
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.3s;
}

.model-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.model-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.model-card h3 {
    font-family: var(--font-display);
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--gold);
}

.model-features {
    list-style: none;
    margin-bottom: 24px;
}

.model-features li {
    padding: 8px 0;
    color: var(--gray-200);
    position: relative;
    padding-left: 24px;
}

.model-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.model-tag {
    display: inline-block;
    background: var(--gold-dim);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.how-it-works {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 50%, var(--bg-dark) 100%);
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 220px;
    max-width: 260px;
    text-align: center;
}

.step-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 16px;
}

.step h3 {
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--white);
}

.step p {
    font-size: 14px;
    color: var(--gray-300);
    line-height: 1.7;
}

.step-arrow {
    font-size: 24px;
    color: var(--gold);
    padding-top: 60px;
}

/* ============================================
   VALUE TIERS
   ============================================ */

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

.tier {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--gray-500);
    text-align: center;
    transition: all 0.3s;
}

.tier:hover {
    transform: translateY(-4px);
}

.tier-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.tier-emoji {
    font-size: 28px;
}

.tier-name {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
}

.tier-smash .tier-name { color: var(--smash); }
.tier-smash:hover { border-color: var(--smash); }

.tier-value .tier-name { color: var(--value); }
.tier-value:hover { border-color: var(--value); }

.tier-lean .tier-name { color: var(--lean); }
.tier-lean:hover { border-color: var(--lean); }

.tier-edge {
    font-size: 14px;
    color: var(--gray-300);
    margin-bottom: 16px;
}

.tier p {
    font-size: 14px;
    color: var(--gray-200);
    margin-bottom: 20px;
}

.tier-units {
    display: inline-block;
    background: var(--gray-500);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--gray-200);
}

/* ============================================
   SAMPLE OUTPUT
   ============================================ */

.sample-output {
    background: var(--bg-card);
}

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

.output-example {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--gray-500);
    transition: all 0.3s;
}

.output-example:hover {
    border-color: var(--gold);
    transform: scale(1.02);
}

.output-image {
    width: 100%;
    height: auto;
    display: block;
}

.output-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 40px 20px 16px;
    font-size: 14px;
    color: var(--gold);
    font-weight: 600;
}

/* ============================================
   WHAT WE'RE NOT
   ============================================ */

.what-were-not .strikethrough {
    text-decoration: line-through;
    color: var(--gray-400);
}

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

.not-item {
    text-align: center;
    padding: 32px;
}

.not-icon {
    font-size: 36px;
    margin-bottom: 16px;
    display: block;
}

.not-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--white);
}

.not-item p {
    font-size: 14px;
    color: var(--gray-300);
}

/* ============================================
   CLV SECTION
   ============================================ */

.clv-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

.clv-explainer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.clv-what h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 16px;
}

.clv-what p {
    font-size: 16px;
    color: var(--gray-200);
    line-height: 1.8;
}

.clv-card {
    background: var(--bg-dark);
    border: 1px solid var(--gray-500);
    border-radius: 12px;
    padding: 24px;
}

.clv-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-500);
}

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

.clv-label {
    color: var(--gray-300);
}

.clv-value {
    font-family: var(--font-display);
    color: var(--white);
}

.clv-result .clv-value.positive {
    color: var(--gold);
    font-size: 20px;
}

/* ============================================
   DISCORD CTA
   ============================================ */

.discord-cta {
    background: linear-gradient(135deg, #0d1929 0%, #0a0a12 100%);
    text-align: center;
    padding: 120px 0;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 56px);
    margin-bottom: 16px;
}

.cta-content > p {
    font-size: 20px;
    color: var(--gray-200);
    margin-bottom: 40px;
}

.btn-discord-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #5865F2;
    color: white;
    padding: 20px 40px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-discord-large:hover {
    background: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.3);
}

.discord-icon {
    width: 28px;
    height: 28px;
}

.cta-note {
    margin-top: 20px;
    font-size: 14px;
    color: var(--gray-400);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--gray-500);
    padding: 60px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--gray-400);
    font-size: 14px;
    margin-top: 12px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--gray-500);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-400);
}

.disclaimer {
    margin-top: 8px;
    font-size: 12px !important;
    color: var(--gray-400) !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.98);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--gray-500);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-stats {
        gap: 32px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .step {
        max-width: 100%;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        padding: 20px 0;
    }
    
    .clv-explainer {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .models-grid,
    .tiers-grid,
    .not-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation classes */
.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}