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

:root {
    --primary: #2D3748;
    --purple: #667eea;
    --purple-dark: #5a67d8;
    --blue: #4299e1;
    --pink: #ed64a6;
    --text: #1A202C;
    --text-light: #718096;
    --bg: #F7FAFC;
    --white: #FFFFFF;

    /* App-consistent colors for Dopamine page - muted purplish-cyan */
    --app-cyan: #6b7fd7;
    --app-teal: #5a67c4;
    --app-red: #ef4444;
    --app-purple: #8b7fc7;
    --dark-bg: #0f172a;
    --darker-bg: #020617;
    --card-bg: #1e293b;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    font-style: italic;
    color: var(--primary);
    letter-spacing: -0.5px;
    cursor: pointer;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.est {
    font-size: 11px;
    font-style: normal;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 48px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    cursor: pointer;
    position: relative;
}

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

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--purple);
}

/* Page Container */
.page {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.page.active {
    display: block;
}

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

/* Hero Section */
.hero {
    padding: 180px 40px 120px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.08) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero p {
    font-size: 24px;
    color: rgba(255,255,255,0.95);
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: var(--purple-dark);
    padding: 20px 48px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.hero-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

/* Section Styles */
.section {
    padding: 120px 40px;
}

.section-alt {
    background: var(--bg);
}

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

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-label {
    color: var(--purple);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.3;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 24px;
}

.about-visual {
    background: linear-gradient(135deg, #667eea, #764ba2);
    height: 500px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-visual::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.15);
    border-radius: 50px;
    border: 3px solid rgba(255,255,255,0.3);
    box-shadow:
        0 0 40px rgba(255,255,255,0.2),
        inset 0 0 40px rgba(255,255,255,0.1);
}

.about-visual::after {
    content: '📱';
    position: absolute;
    font-size: 120px;
    opacity: 0.9;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    padding: 48px 32px;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border-color: var(--purple);
}

.feature-icon {
    font-size: 56px;
    margin-bottom: 24px;
    display: block;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Dopamine Hero - Different Style */
.dopamine-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 180px 40px 100px;
}

.dopamine-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.dopamine-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    line-height: 1.1;
    text-align: left;
}

.dopamine-hero-content p {
    font-size: 22px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 40px;
    line-height: 1.7;
    text-align: left;
}

.download-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-appstore {
    background: white;
    color: var(--purple-dark);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.btn-playstore {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 2px solid white;
}

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

/* Phone Mockup */
.phone-mockup-container {
    position: relative;
    text-align: center;
}

.phone-mockup {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    position: relative;
}

.phone-frame {
    position: relative;
    padding: 16px;
    background: linear-gradient(145deg, #2D3748, #1A202C);
    border-radius: 48px;
    box-shadow:
        0 30px 90px rgba(0,0,0,0.4),
        inset 0 2px 10px rgba(255,255,255,0.1);
}

.phone-screen {
    border-radius: 36px;
    overflow: hidden;
    background: #000;
}

.phone-screen img {
    width: 100%;
    height: auto;
    display: block;
}

/* Dopamine Features */
.dopamine-intro {
    background: white;
    padding: 100px 40px;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary);
}

.intro-content p {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.intro-highlight {
    background: linear-gradient(135deg, rgba(102,126,234,0.1), rgba(118,75,162,0.1));
    padding: 32px;
    border-radius: 16px;
    border-left: 4px solid var(--purple);
    margin: 40px 0;
}

.intro-highlight p {
    font-size: 18px;
    color: var(--text);
    font-weight: 500;
}

/* Hunter vs Guardian */
.modes-section {
    background: var(--bg);
    padding: 100px 40px;
}

.modes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.mode-card {
    background: white;
    padding: 60px 40px;
    border-radius: 24px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.mode-card:hover {
    border-color: var(--purple);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(102,126,234,0.15);
}

.mode-icon {
    font-size: 80px;
    margin-bottom: 24px;
}

.mode-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary);
}

.mode-subtitle {
    font-size: 16px;
    color: var(--purple);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.mode-description {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 32px;
}

.mode-benefits {
    text-align: left;
    background: var(--bg);
    padding: 24px;
    border-radius: 12px;
}

.mode-benefits li {
    margin-bottom: 12px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Screenshots Showcase */
.screenshots-section {
    padding: 100px 40px;
    background: white;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.screenshot-item {
    text-align: center;
}

.screenshot-mockup {
    background: linear-gradient(145deg, #2D3748, #1A202C);
    padding: 12px;
    border-radius: 36px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    margin-bottom: 24px;
}

.screenshot-mockup img {
    width: 100%;
    border-radius: 28px;
    display: block;
}

.screenshot-caption {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 18px;
}

.screenshot-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    background: linear-gradient(135deg, rgba(102,126,234,0.05), rgba(118,75,162,0.05));
    padding: 100px 40px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.step {
    text-align: center;
    padding: 32px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 24px;
    font-weight: 800;
}

.step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
    padding: 100px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    top: -300px;
    right: -300px;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
}

.cta-section p {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--purple-dark);
    padding: 20px 56px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 60px rgba(0,0,0,0.4);
}

/* Footer */
footer {
    background: var(--primary);
    color: rgba(255,255,255,0.8);
    padding: 80px 40px 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    font-style: italic;
    color: white;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 16px;
    line-height: 1.7;
}

.footer-col h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1, .dopamine-hero-content h1 {
        font-size: 48px;
    }

    .section-title {
        font-size: 40px;
    }

    .about-grid, .dopamine-hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .modes-grid, .screenshots-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* Dopamine hero mobile adjustments */
@media (max-width: 768px) {
    #dopamine .dopamine-hero {
        padding: 140px 20px 60px 20px;
        overflow-x: hidden;
    }

    #dopamine .dopamine-hero-content h1 {
        font-size: 40px;
        line-height: 1.1;
        margin-bottom: 20px;
        word-wrap: break-word;
        overflow-x: hidden;
    }

    #dopamine .dopamine-hero-content p {
        font-size: 16px;
        line-height: 1.6;
    }

    #dopamine .dopamine-hero-grid {
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 24px;
    }

    .logo {
        font-size: 24px;
    }

    .hero {
        padding: 140px 24px 80px;
    }

    .hero h1 {
        font-size: 36px;
    }

    /* Dopamine hero specific mobile fixes */
    #dopamine .dopamine-hero {
        padding: 140px 20px 60px 20px;
    }

    #dopamine .dopamine-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0;
    }

    #dopamine .dopamine-hero-content {
        padding: 0 10px;
    }

    #dopamine .dopamine-hero-content h1 {
        font-size: 22px;
        line-height: 1.15;
        margin-bottom: 20px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: calc(100vw - 48px);
        padding: 0 8px;
        letter-spacing: 0px;
        white-space: normal;
    }

    #dopamine .dopamine-hero-content h1 span {
        display: block;
        font-size: 32px;
        line-height: 1.1;
    }

    #dopamine .dopamine-hero-content p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    /* Combat cards mobile */
    #dopamine .mode-card {
        padding: 40px 25px;
    }

    #dopamine .mode-icon {
        font-size: 70px;
    }

    #dopamine .mode-title {
        font-size: 28px;
    }

    .section {
        padding: 80px 24px;
    }

    .section-title {
        font-size: 32px;
    }

    .features-grid,
    .screenshots-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .download-buttons {
        flex-direction: column;
        gap: 16px;
        padding: 0 16px;
    }

    .btn-download {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 14px;
    }

    /* Dopamine page buttons mobile */
    #dopamine .download-buttons {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    #dopamine .btn-download {
        width: 100%;
        padding: 16px 24px;
        font-size: 13px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    #dopamine .section-title {
        font-size: 24px;
    }
}

/* ========================================
   COMBAT THEME - DOPAMINE PAGE ONLY
   ======================================== */

/* Dark background only for dopamine page */
#dopamine {
    background: var(--darker-bg);
    position: relative;
}

#dopamine::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(107,127,215,0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(191,0,255,0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Scanline effect for dopamine page */
#dopamine::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0,0,0,0.15) 0px,
        transparent 1px,
        transparent 2px,
        rgba(0,0,0,0.15) 3px
    );
    pointer-events: none;
    opacity: 0.03;
}

/* Combat Hero */
#dopamine .dopamine-hero {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 50%, var(--darker-bg) 100%);
    position: relative;
    overflow: hidden;
}

#dopamine .dopamine-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(107,127,215,0.06) 0%, transparent 70%);
    animation: combatPulse 4s ease-in-out infinite;
}

@keyframes combatPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

#dopamine .dopamine-hero-content h1 {
    font-family: 'Orbitron', monospace;
    font-size: 70px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow:
        0 0 8px rgba(107,127,215,0.3),
        0 2px 8px rgba(0,0,0,0.8);
}

#dopamine .dopamine-hero-content p {
    color: rgba(255,255,255,0.85);
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
}

/* Combat Phone Mockup */
#dopamine .phone-mockup-container {
    position: relative;
    animation: float 3s ease-in-out infinite;
}

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

#dopamine .phone-mockup::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(107,127,215,0.3) 0%, transparent 70%);
    filter: blur(40px);
    animation: auraRotate 8s linear infinite;
}

@keyframes auraRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
    50% { transform: translate(-50%, -50%) rotate(180deg) scale(1.2); }
    100% { transform: translate(-50%, -50%) rotate(360deg) scale(1); }
}

#dopamine .phone-frame {
    border: 2px solid var(--app-cyan);
    box-shadow:
        0 0 15px rgba(107,127,215,0.25),
        0 20px 60px rgba(0,0,0,0.8),
        inset 0 0 20px rgba(107,127,215,0.05);
    background: linear-gradient(145deg, var(--card-bg), var(--darker-bg));
}

/* Combat Buttons */
#dopamine .btn-download {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

#dopamine .btn-appstore {
    background: linear-gradient(135deg, #5865f2, #4752c4);
    border: none;
    color: #ffffff;
    box-shadow:
        0 0 10px rgba(107,127,215,0.25),
        0 4px 12px rgba(0,0,0,0.3);
}

#dopamine .btn-appstore:hover {
    background: linear-gradient(135deg, #6b7fd7, #5865f2);
    box-shadow:
        0 0 15px rgba(107,127,215,0.35),
        0 6px 16px rgba(0,0,0,0.4);
    transform: translateY(-4px);
}

#dopamine .btn-playstore {
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.5);
    color: #ffffff;
    box-shadow: 0 0 8px rgba(107,127,215,0.15);
}

#dopamine .btn-playstore:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.7);
    box-shadow: 0 0 12px rgba(107,127,215,0.25);
    transform: translateY(-4px);
}

/* Combat Sections */
#dopamine .dopamine-intro {
    background: var(--dark-bg);
}

#dopamine .dopamine-intro h2 {
    font-family: 'Orbitron', monospace;
    color: #fff;
    text-shadow: 0 0 20px rgba(107,127,215,0.3);
}

#dopamine .dopamine-intro p {
    color: rgba(255,255,255,0.8);
}

#dopamine .intro-highlight {
    background: linear-gradient(135deg, rgba(107,127,215,0.1), rgba(191,0,255,0.1));
    border-left: 4px solid var(--app-cyan);
    box-shadow: 0 0 20px rgba(107,127,215,0.2);
}

#dopamine .intro-highlight p {
    color: rgba(255,255,255,0.9);
}

/* Combat Mode Cards */
#dopamine .modes-section {
    background: var(--darker-bg);
}

#dopamine .section-header .section-label {
    color: var(--app-cyan);
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 5px rgba(107,127,215,0.4);
}

#dopamine .section-header .section-title {
    font-family: 'Orbitron', monospace;
    color: #fff;
    text-shadow: 0 0 20px rgba(107,127,215,0.3);
}

#dopamine .section-header .section-subtitle {
    color: rgba(255,255,255,0.7);
}

#dopamine .mode-card {
    background: linear-gradient(145deg, rgba(26,31,46,0.8), rgba(10,14,20,0.9));
    border: 3px solid var(--app-cyan);
    clip-path: polygon(30px 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 30px);
    box-shadow: 0 0 30px rgba(107,127,215,0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

#dopamine .mode-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(107,127,215,0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

#dopamine .mode-card:hover::before {
    opacity: 1;
}

#dopamine .mode-card:hover {
    box-shadow: 0 0 50px rgba(107,127,215,0.6);
    transform: translateY(-10px);
}

#dopamine .mode-icon {
    font-size: 100px;
    filter: drop-shadow(0 0 20px var(--app-cyan));
}

#dopamine .mode-title {
    font-family: 'Orbitron', monospace;
    color: var(--app-cyan);
    text-shadow: 0 0 8px rgba(107,127,215,0.3);
}

#dopamine .mode-subtitle {
    color: var(--app-cyan);
    font-family: 'Orbitron', monospace;
    font-weight: 700;
}

#dopamine .mode-description {
    color: rgba(255,255,255,0.8);
}

#dopamine .mode-benefits {
    background: rgba(26,31,46,0.6);
}

#dopamine .mode-benefits li {
    color: rgba(255,255,255,0.9);
    border-bottom: 1px solid rgba(107,127,215,0.2);
}

#dopamine .mode-benefits strong {
    color: var(--app-cyan);
}

/* Combat Screenshots */
#dopamine .screenshots-section {
    background: var(--dark-bg);
}

#dopamine .screenshot-mockup {
    background: linear-gradient(145deg, var(--card-bg), var(--dark-bg));
    border: 2px solid var(--app-cyan);
    box-shadow: 0 0 30px rgba(107,127,215,0.3);
    transition: all 0.4s ease;
}

#dopamine .screenshot-mockup:hover {
    box-shadow: 0 0 50px rgba(107,127,215,0.6);
    transform: scale(1.05);
}

#dopamine .screenshot-caption {
    font-family: 'Orbitron', monospace;
    color: var(--app-cyan);
}

#dopamine .screenshot-description {
    color: rgba(255,255,255,0.7);
}

/* Combat How It Works */
#dopamine .how-it-works {
    background: var(--darker-bg);
}

#dopamine .step-number {
    background: linear-gradient(135deg, var(--app-cyan), var(--app-purple));
    box-shadow: 0 0 20px rgba(107,127,215,0.4);
}

#dopamine .step h3 {
    font-family: 'Orbitron', monospace;
    color: var(--app-cyan);
}

#dopamine .step p {
    color: rgba(255,255,255,0.8);
}

/* Combat Arena Section */
#dopamine .section {
    background: var(--dark-bg);
}

#dopamine .section.section-alt {
    background: var(--darker-bg);
}

#dopamine .about-content h3 {
    font-family: 'Orbitron', monospace;
    color: var(--app-cyan);
    text-shadow: 0 0 8px rgba(107,127,215,0.3);
}

#dopamine .about-content p {
    color: rgba(255,255,255,0.8);
}

/* Combat CTA */
#dopamine .cta-section {
    background: linear-gradient(135deg, var(--dark-bg), var(--darker-bg));
    position: relative;
    overflow: hidden;
}

#dopamine .cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(107,127,215,0.1), transparent);
    animation: scan 3s linear infinite;
}

@keyframes scan {
    0% { left: -100%; }
    100% { left: 100%; }
}

#dopamine .cta-section h2 {
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 12px rgba(107,127,215,0.4);
}

#dopamine .cta-section p {
    color: rgba(255,255,255,0.8);
}

#dopamine .cta-button {
    background: linear-gradient(135deg, #5865f2, #4752c4);
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    box-shadow:
        0 0 10px rgba(107,127,215,0.3),
        0 4px 16px rgba(0,0,0,0.4);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

#dopamine .cta-button:hover {
    background: linear-gradient(135deg, #6b7fd7, #5865f2);
    box-shadow:
        0 0 15px rgba(107,127,215,0.4),
        0 6px 20px rgba(0,0,0,0.5);
}

/* Change logo when on dopamine page */
#dopamine ~ nav .logo,
body:has(#dopamine.active) nav .logo {
    font-family: 'Orbitron', monospace;
    font-style: normal;
    color: var(--app-cyan);
    text-shadow: 0 0 5px rgba(107,127,215,0.4);
    letter-spacing: 3px;
}

/* Change nav background when on dopamine page */
body:has(#dopamine.active) nav {
    background: rgba(10,14,20,0.95);
    border-bottom: 2px solid var(--app-cyan);
    box-shadow: 0 0 20px rgba(107,127,215,0.3);
}

body:has(#dopamine.active) .nav-links a {
    color: #fff;
}

body:has(#dopamine.active) .nav-links a:hover {
    color: var(--app-cyan);
    text-shadow: 0 0 5px rgba(107,127,215,0.4);
}

body:has(#dopamine.active) .nav-links a.active::after {
    background: var(--app-cyan);
    box-shadow: 0 0 10px var(--app-cyan);
}

body:has(#dopamine.active) .est {
    display: none;
}

/* Contact Form Styles */
.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary);
    font-size: 14px;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(90, 103, 216, 0.3);
}
/* ========================================
   EDUCATIONAL PILLAR SECTIONS
   ======================================== */

/* Pillar Articles */
.dopamine-pillar {
    padding: 80px 40px;
    position: relative;
    z-index: 1;
}

#dopamine .dopamine-pillar {
    background: var(--dark-bg);
}

#dopamine .dopamine-pillar.pillar-alt {
    background: var(--darker-bg);
}

.pillar-content {
    max-width: 900px;
    margin: 0 auto;
}

.pillar-header {
    margin-bottom: 40px;
}

#dopamine .pillar-header .section-label {
    color: var(--app-cyan);
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-shadow: 0 0 5px rgba(107,127,215,0.4);
}

#dopamine .pillar-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0;
}

.pillar-body p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 24px;
}

#dopamine .pillar-body p {
    color: rgba(255,255,255,0.85);
}

#dopamine .pillar-body strong {
    color: var(--app-cyan);
    font-weight: 600;
}

/* Pillar Steps (Neuroscience section) */
.pillar-steps {
    margin: 40px 0;
}

.pillar-step {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    align-items: flex-start;
}

.pillar-step-num {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
}

#dopamine .pillar-step-num {
    background: linear-gradient(135deg, var(--app-cyan), var(--app-purple));
    color: white;
    box-shadow: 0 0 15px rgba(107,127,215,0.4);
}

.pillar-step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

#dopamine .pillar-step h3 {
    color: var(--app-cyan);
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
}

.pillar-step p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 0;
}

#dopamine .pillar-step p {
    color: rgba(255,255,255,0.8);
}

/* Signs Grid */
.signs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.sign-card {
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

#dopamine .sign-card {
    background: rgba(26,31,46,0.6);
    border: 1px solid rgba(107,127,215,0.2);
}

#dopamine .sign-card:hover {
    border-color: var(--app-cyan);
    box-shadow: 0 0 20px rgba(107,127,215,0.2);
    transform: translateY(-4px);
}

.sign-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
}

.sign-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

#dopamine .sign-card h3 {
    color: var(--app-cyan);
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
}

.sign-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

#dopamine .sign-card p {
    color: rgba(255,255,255,0.75);
}

/* Pillar Intro Highlight (reuse existing style) */
#dopamine .dopamine-pillar .intro-highlight {
    background: linear-gradient(135deg, rgba(107,127,215,0.1), rgba(191,0,255,0.1));
    border-left: 4px solid var(--app-cyan);
    box-shadow: 0 0 20px rgba(107,127,215,0.2);
    padding: 32px;
    border-radius: 16px;
    margin: 40px 0 0;
}

#dopamine .dopamine-pillar .intro-highlight p {
    color: rgba(255,255,255,0.9);
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 0;
}

/* ========================================
   STICKY CTA
   ======================================== */
.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sticky-cta-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

#dopamine .sticky-cta-inner {
    background: linear-gradient(135deg, rgba(15,23,42,0.97), rgba(30,41,59,0.97));
    border: 1px solid var(--app-cyan);
    backdrop-filter: blur(12px);
}

.sticky-cta-text {
    font-size: 14px;
    font-weight: 500;
}

#dopamine .sticky-cta-text {
    color: rgba(255,255,255,0.9);
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
}

.sticky-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

#dopamine .sticky-cta-btn {
    background: linear-gradient(135deg, #5865f2, #4752c4);
    color: #ffffff;
    font-family: 'Orbitron', monospace;
    box-shadow: 0 0 8px rgba(107,127,215,0.3);
}

#dopamine .sticky-cta-btn:hover {
    background: linear-gradient(135deg, #6b7fd7, #5865f2);
    box-shadow: 0 0 12px rgba(107,127,215,0.5);
    transform: translateY(-2px);
}

/* ========================================
   RESPONSIVE: Educational Pillar
   ======================================== */
@media (max-width: 1024px) {
    .signs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dopamine-pillar {
        padding: 60px 24px;
    }
    
    #dopamine .pillar-header h2 {
        font-size: 28px;
    }
    
    .pillar-body p {
        font-size: 16px;
    }
    
    .signs-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .sign-card {
        padding: 24px 20px;
    }
    
    .pillar-step {
        flex-direction: column;
        gap: 12px;
    }

    /* Sticky CTA mobile */
    .sticky-cta {
        bottom: 0;
        right: 0;
        left: 0;
        border-radius: 0;
    }

    .sticky-cta-inner {
        border-radius: 0;
        justify-content: space-between;
        padding: 12px 16px;
    }

    #dopamine .sticky-cta-inner {
        border-left: none;
        border-right: none;
        border-bottom: none;
    }
}
