/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0d9488;
    --primary-hover: #0f766e;
    --secondary-color: #64748b;
    --background-light: #ffffff;
    --background-subtle: #f8fafc;
    --surface-color: #ffffff;
    --surface-hover: #f1f5f9;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --accent-color: #0d9488;
    --success-color: #10b981;
    --error-color: #ef4444;
    --border-color: #e2e8f0;
    --border-subtle: #f1f5f9;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    
    /* Clean, minimal spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Simple transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 200ms ease;
    --transition-slow: 300ms ease;
}

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

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

/* Button Styles */
.btn-primary, .btn-secondary, .btn-pricing {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    position: relative;
    z-index: 30;
    backdrop-filter: blur(10px);
    pointer-events: auto; /* Ensure buttons are clickable */
}

.btn-primary:hover {
    background: var(--primary-hover);
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px) scale(1.02);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--surface-hover);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-pricing {
    width: 100%;
    background: var(--surface-color);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-pricing:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Neural Network Canvas */
#neural-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    background: #FFF6E5;
    display: block;
    pointer-events: auto;
    will-change: transform;
    transition: transform 0.05s ease-out;
}

/* Navigation - Completely hidden */
.navbar {
    display: none;
}

/* Circuit Logo - Appears after 7 seconds */
.floating-logo {
    position: fixed;
    top: 2rem;
    right: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    z-index: 1000;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    user-select: none;
    font-family: 'Georgia', serif;
}

.floating-logo.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive for floating logo */
@media (max-width: 768px) {
    .floating-logo {
        top: 1.5rem;
        right: 1.5rem;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .floating-logo {
        top: 1rem;
        right: 1rem;
        font-size: 1.2rem;
    }
}

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

.nav-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-secondary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Split Layout */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    position: relative;
    background: transparent;
    pointer-events: none; /* Allow mouse events to pass through empty areas */
}

.hero-split {
    width: 100%;
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-text {
    padding: 0 var(--spacing-3xl) 0 var(--spacing-2xl);
    text-align: left;
    max-width: 700px;
    pointer-events: auto; /* Allow text selection and interaction */
}

.hero-title, .hero-subtitle {
    font-family: 'Georgia', serif;
}

/* Intro Animation Styles */
.intro-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #FFF6E5;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: circle(100% at 50% 50%);
    transition: clip-path 1.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.intro-content {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    justify-content: center;
}

.intro-neural-container {
    width: 600px;
    height: 600px;
    position: relative;
    margin-bottom: 3rem;
}

#intro-canvas {
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: neural-grow 2s ease-out 0.5s forwards;
    transition: all 1.2s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.intro-screen.morphing #intro-canvas {
    opacity: 0.1;
}

.intro-text {
    position: relative;
    z-index: 1;
    text-align: center;
}

.intro-title {
    font-family: 'Georgia', serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: 0.1em;
    margin: 0 0 1rem 0;
    opacity: 0;
    transform: translateY(30px);
    animation: title-reveal 1s ease-out 1.5s forwards;
}

/* Hidden text no longer needed for circle transition */
.intro-hidden-text {
    display: none;
}

.intro-subtitle {
    font-family: 'Georgia', serif;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: subtitle-reveal 1s ease-out 2s forwards;
}



/* Clean intro content styling for circle transition */
.intro-content {
    transition: transform 1.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* Circle reveal animation keyframes for better browser support */
@keyframes circleReveal {
    0% {
        clip-path: circle(100% at 50% 50%);
    }
    100% {
        clip-path: circle(0% at 50% 50%);
    }
}

/* Zoom effect for intro content */
@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}

/* Main content ready to be revealed by circle transition */
.main-content {
    opacity: 0;
    transition: opacity 0.3s ease-in;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.main-content.show {
    opacity: 1;
}

/* Intro Animations */
@keyframes neural-grow {
    0% {
        opacity: 0;
        transform: scale(0.1);
        filter: blur(10px);
    }
    50% {
        opacity: 0.7;
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

@keyframes title-reveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
        letter-spacing: 0.5em;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: 0.1em;
    }
}

@keyframes subtitle-reveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Mobile intro adjustments */
@media (max-width: 768px) {
    .intro-neural-container {
        width: 400px;
        height: 400px;
        margin-bottom: 2rem;
    }
    
    .intro-title {
        font-size: 2.5rem;
    }
    
    .intro-subtitle {
        font-size: 1rem;
    }
    

    
    /* Mobile circle transition adjustments */
    .intro-neural-container {
        width: 350px;
        height: 350px;
        margin-bottom: 1.5rem;
    }
    
    .intro-title {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }
    
    .intro-subtitle {
        font-size: 1rem;
    }
}

.hero-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none; /* Allow mouse events to pass through to neural canvas */
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.03em;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 20;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.4;
    font-weight: 400;
    position: relative;
    z-index: 20;
}

/* Hide content sections initially */
.content-sections {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.content-sections.visible {
    opacity: 1;
    transform: translateY(0);
}



/* Responsive design */
@media (max-width: 768px) {
    .hero-split {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
        height: 100vh;
    }
    
    .hero-text {
        padding: var(--spacing-xl) var(--spacing-md);
        text-align: center;
        max-width: 90%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: -0.02em;
        margin-bottom: var(--spacing-md);
        line-height: 1.15;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.35;
    }
    
    .hero-visual {
        height: 50vh;
    }
    
    .comparison-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .vs-divider {
        transform: rotate(90deg);
    }
}

@media (max-width: 1024px) {
    .hero-text {
        padding: 0 var(--spacing-xl) 0 var(--spacing-lg);
    }
    
    .hero-title {
        font-size: 3.2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        line-height: 1.4;
    }
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.selector-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.game-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.game-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--surface-color);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
}

.game-icon i {
    font-size: 1.5rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.game-icon span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.game-icon:hover,
.game-icon.active {
    border-color: var(--primary-color);
    background: var(--gradient-surface);
    transform: translateY(-2px);
}

.game-icon:hover i,
.game-icon.active i,
.game-icon:hover span,
.game-icon.active span {
    color: var(--primary-color);
}

.demo-btn {
    background: var(--gradient-primary);
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    font-size: 16px;
    box-shadow: var(--shadow-primary);
}

.demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(37, 99, 235, 0.4);
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--success-color);
    font-size: 1rem;
}

/* Search Results */
.search-results {
    background: var(--surface-color);
    border-radius: 12px;
    margin-top: 2rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.result-item:last-child {
    border-bottom: none;
}

.result-domain {
    font-weight: 600;
    color: var(--text-primary);
}

.result-price {
    color: var(--success-color);
    font-weight: 600;
}

.result-unavailable {
    color: var(--text-muted);
}

/* Section Styles */
.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Problem Section */
.problem-section {
    padding: var(--spacing-3xl) 0;
    background: var(--background-subtle);
}

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

.problem-scenarios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin: var(--spacing-2xl) 0;
}

.scenario {
    padding: var(--spacing-xl);
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-normal);
}

.scenario:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.scenario-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.scenario h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.scenario p {
    color: var(--text-secondary);
    line-height: 1.5;
}

.problem-statement {
    margin-top: var(--spacing-2xl);
    padding: var(--spacing-xl);
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.problem-statement p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Solution Section */
.solution-section {
    padding: var(--spacing-3xl) 0;
    background: var(--background-light);
}

.solution-grid {
    display: grid;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.solution-item {
    display: flex;
    gap: var(--spacing-lg);
    padding: var(--spacing-xl);
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition-normal);
}

.solution-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.solution-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.solution-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.solution-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.results-showcase {
    text-align: center;
    margin-top: var(--spacing-2xl);
}

.result-stat {
    display: inline-block;
    padding: var(--spacing-xl);
    background: var(--surface-color);
    border: 2px solid var(--success-color);
    border-radius: 12px;
    max-width: 400px;
}

.result-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--success-color);
    line-height: 1;
}

.result-label {
    font-size: 1.125rem;
    color: var(--text-primary);
    font-weight: 600;
    margin: var(--spacing-sm) 0;
}

.result-comparison {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Examples Section */
.examples-section {
    padding: var(--spacing-3xl) 0;
    background: var(--background-subtle);
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--spacing-xl);
    align-items: start;
    margin: var(--spacing-2xl) 0;
}

.comparison-column {
    padding: var(--spacing-xl);
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.comparison-column.bad {
    border-color: var(--error-color);
    background: rgba(239, 68, 68, 0.02);
}

.comparison-column.good {
    border-color: var(--success-color);
    background: rgba(16, 185, 129, 0.02);
}

.column-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.column-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.column-header p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.example-chat {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    min-height: 120px;
}

.chat-message {
    margin-bottom: var(--spacing-sm);
    font-size: 0.875rem;
}

.chat-message:last-child {
    margin-bottom: 0;
}

.username {
    font-weight: 600;
    margin-right: var(--spacing-xs);
}

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

.chat-message.toxic .username {
    color: var(--error-color);
}

.chat-message.good .username {
    color: var(--success-color);
}

.outcome {
    padding: var(--spacing-md);
    border-radius: 8px;
}

.outcome.bad {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.outcome.good {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.outcome-stat {
    font-size: 0.875rem;
    margin-bottom: var(--spacing-xs);
}

.outcome-stat:last-child {
    margin-bottom: 0;
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-muted);
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    margin: auto;
}

/* Benefits Section */
.benefits {
    padding: 8rem 0;
    background: var(--background-subtle);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.benefit-card:hover {
    transform: translateY(-12px) rotateX(5deg);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent-green);
    animation: card-glow 0.5s ease;
}

.benefit-card:hover .benefit-icon {
    animation: icon-bounce 0.6s ease;
    box-shadow: var(--shadow-glow);
}

@keyframes card-glow {
    0% { box-shadow: var(--shadow-soft); }
    50% { box-shadow: var(--shadow-glow), 0 0 40px rgba(10, 135, 84, 0.2); }
    100% { box-shadow: var(--shadow-glow); }
}

@keyframes icon-bounce {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(-5deg); }
    50% { transform: scale(1.15) rotate(0deg); }
    75% { transform: scale(1.1) rotate(5deg); }
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.proof-points {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 1rem;
}

.proof-item i {
    color: var(--success-color);
}

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

.feature-card {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

/* Studios Benefits Section */
.studios-benefits {
    margin-bottom: 4rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--gradient-surface);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--primary-color);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 8rem 0;
    background: var(--background-light);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.toggle-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--surface-color);
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.save-badge {
    background: var(--success-color);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.pricing-card.popular {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.2);
}

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

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.pricing-header p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.pricing-price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.period {
    color: var(--text-secondary);
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-features i {
    color: var(--success-color);
    width: 16px;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: var(--gradient-primary);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: white;
    color: var(--primary-color);
}

.cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.cta .btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* How it Works Section */
.how-it-works {
    padding: 8rem 0;
    background: var(--background-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-card {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent-green);
}

.step-card:hover .step-number {
    animation: number-spin 0.8s ease;
    background: var(--gradient-ocean);
    box-shadow: var(--shadow-glow);
}

@keyframes number-spin {
    0% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(90deg); }
    50% { transform: scale(1.15) rotate(180deg); }
    75% { transform: scale(1.1) rotate(270deg); }
    100% { transform: scale(1) rotate(360deg); }
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.reassurance {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.reassurance i {
    color: var(--success-color);
}

/* Safety Section */
.safety {
    padding: 8rem 0;
    background: var(--background-subtle);
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.safety-item {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.safety-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.safety-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.safety-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.safety-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.safety-notes {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.safety-note {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.safety-note i {
    color: var(--success-color);
}

/* Community Section */
.community {
    padding: var(--spacing-3xl) 0;
    background: var(--primary-color);
    text-align: center;
    color: white;
}

.community-content {
    max-width: 600px;
    margin: 0 auto;
}

/* Quick Facts Section */
.quick-facts {
    padding: var(--spacing-3xl) 0;
    background: var(--background-light);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin: var(--spacing-2xl) 0;
}

.fact-item {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition-normal);
}

.fact-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.fact-stat {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: var(--spacing-md);
}

.fact-label {
    font-size: 1.125rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.fact-source {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
}

.community .section-title {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.community-text {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.community .btn-primary {
    background: white;
    color: var(--primary-color);
}

.community .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Social Proof Section */
.social-proof {
    padding: 8rem 0;
    background: var(--background-light);
    text-align: center;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.testimonial i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonial p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* FAQ Section */
.faq {
    padding: 8rem 0;
    background: var(--background-subtle);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-card);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin: 0;
}

.faq-question i {
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Signup Section */
.signup {
    padding: 6rem 0;
    background: var(--background-light);
    text-align: center;
}

.signup-content {
    max-width: 600px;
    margin: 0 auto;
}

.signup-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.signup-form {
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.form-group input {
    flex: 1;
    min-width: 300px;
    padding: 16px 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    background: var(--surface-color);
    color: var(--text-primary);
    transition: border-color 0.3s ease;
}

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

.form-group input::placeholder {
    color: var(--text-muted);
}

.success-message {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}

.success-message h3 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.success-message p {
    color: var(--text-secondary);
}

/* Simple, clean animations */
.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.faq-question:hover {
    background: var(--surface-hover);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.navbar {
    transition: var(--transition-normal);
}

/* Footer */
.footer {
    background: var(--background-subtle);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--surface-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

/* Get Involved Section - Hero Theme */
.get-involved {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    position: relative;
    background: transparent;
    pointer-events: none;
}

.get-involved-split {
    width: 100%;
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    z-index: 10;
}

.get-involved-text {
    padding: 0 var(--spacing-3xl) 0 var(--spacing-2xl);
    text-align: left;
    max-width: 700px;
    pointer-events: auto;
}

.get-involved-title, .get-involved-subtitle {
    font-family: 'Georgia', serif;
}

.get-involved-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.get-involved-title {
    font-size: 3.8rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.03em;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 20;
}

.get-involved-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.4;
    font-weight: 400;
    position: relative;
    z-index: 20;
    margin-bottom: var(--spacing-xl);
}

.get-involved-form {
    margin: var(--spacing-xl) 0;
    pointer-events: auto;
}

.get-involved-form .form-group {
    display: flex;
    gap: 1rem;
    align-items: stretch;
}

.get-involved-form input[type="email"] {
    flex: 1;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--background-light);
    color: var(--text-primary);
    transition: var(--transition-normal);
    font-family: 'Inter', sans-serif;
    max-width: 300px;
}

.get-involved-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.get-involved-form {
    margin: var(--spacing-xl) 0;
    pointer-events: auto;
}

.get-involved-form .form-group {
    display: flex;
    gap: 1rem;
    align-items: stretch;
}

.get-involved-form input[type="email"] {
    flex: 1;
    min-width: 300px;
    padding: 16px 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    background: var(--surface-color);
    color: var(--text-primary);
    transition: border-color 0.3s ease;
}

.get-involved-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.get-involved-form .btn-primary {
    padding: 1rem 2rem;
    font-size: 1rem;
    white-space: nowrap;
}

.early-access-note {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
    margin: 1rem 0 0 0;
    letter-spacing: 0.5px;
    opacity: 0.9;
    font-family: 'Georgia', serif;
}

.get-involved .success-message {
    background: var(--surface-color);
    border: 2px solid var(--success-color);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: var(--shadow-md);
    max-width: 500px;
}

.get-involved .success-message h3 {
    color: var(--success-color);
    font-size: 1.5rem;
    margin: 0 0 0.5rem;
    font-family: 'Georgia', serif;
}

.get-involved .success-message p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 1rem;
    font-family: 'Georgia', serif;
}

/* Responsive design for get involved section */
@media (max-width: 768px) {
    .get-involved-split {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
        height: 100vh;
    }
    
    .get-involved-text {
        padding: var(--spacing-xl) var(--spacing-md);
        text-align: center;
        max-width: 90%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .get-involved-title {
        font-size: 2.2rem;
        letter-spacing: -0.02em;
        margin-bottom: var(--spacing-md);
        line-height: 1.15;
    }
    
    .get-involved-subtitle {
        font-size: 1.1rem;
        line-height: 1.35;
        margin-bottom: var(--spacing-lg);
    }
    
    .get-involved-visual {
        height: 50vh;
    }
    
    .get-involved-form .form-group {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .get-involved-form input[type="email"] {
        max-width: 350px;
        width: 100%;
        min-width: auto;
    }
    
    .get-involved-form .btn-primary {
        min-width: 200px;
        padding: 0.875rem 1.75rem;
    }
    
    .early-access-note {
        font-size: 0.85rem;
    }
}

@media (max-width: 1024px) {
    .get-involved-text {
        padding: 0 var(--spacing-xl) 0 var(--spacing-lg);
    }
    
    .get-involved-title {
        font-size: 3.2rem;
        line-height: 1.1;
    }
    
    .get-involved-subtitle {
        font-size: 1.2rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .get-involved-title {
        font-size: 2rem;
    }
    
    .get-involved-subtitle {
        font-size: 1rem;
        margin-bottom: var(--spacing-md);
    }
    
    .get-involved-form input[type="email"] {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
        max-width: 280px;
    }
    
    .get-involved-form .btn-primary {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        min-width: 180px;
    }
    
    .early-access-note {
        font-size: 0.8rem;
        margin-top: 0.75rem;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #FFF6E5;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    width: 90%;
    max-width: 500px;
    overflow-y: auto;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.modal-overlay.show .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 1rem 1.5rem 0;
    position: relative;
}

.modal-header h2 {
    font-family: 'Georgia', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 50%;
    transition: var(--transition-normal);
    line-height: 1;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-secondary);
    opacity: 1;
}

.modal-form {
    padding: 2rem;
}

.simple-form {
    padding: 2rem;
    max-width: 400px;
    margin: 0 auto;
}

.modal-step {
    min-height: 200px;
}

.form-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-field:last-child {
    margin-bottom: 0;
}

.field-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    font-style: italic;
}

.form-field label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: #FFF6E5;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

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

/* User Type Selection */
.user-type-selection {
    text-align: center;
    padding: 1rem 0;
}

.selection-prompt {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.user-type-options {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.user-type-option {
    cursor: pointer;
}

.user-type-option input[type="radio"] {
    display: none;
}

.option-card {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: var(--transition-normal);
    text-align: center;
}

.option-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
    font-family: 'Georgia', serif;
}

.option-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.user-type-option input[type="radio"]:checked + .option-card {
    border-color: var(--primary-color);
    background: rgba(13, 148, 136, 0.05);
}

.user-type-option:hover .option-card {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Question Sections */
.question-section {
    animation: slideIn 0.3s ease-out;
}

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

/* Game Tags System - Improved */
.game-input-container {
    background: #FFF6E5;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    transition: var(--transition-normal);
}

.game-input-container:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.game-input {
    width: 100%;
    border: none;
    outline: none;
    background: none;
    padding: 0.5rem 0;
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.game-input::placeholder {
    color: var(--text-muted);
    font-style: italic;
}

.game-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
    min-height: 20px;
}

.game-tag {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d9488 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: tagSlideIn 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(13, 148, 136, 0.2);
}

.game-tag-remove {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    cursor: pointer;
    padding: 0;
    font-size: 1rem;
    line-height: 1;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.game-tag-remove:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

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

/* Single Question Modal Styling */
.modal-question {
    text-align: center;
    padding: 1rem 2rem 0;
    max-width: 450px;
    margin: 0 auto;
}

.question-title {
    font-family: 'Georgia', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.question-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.question-input {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 1rem;
}

.question-input input,
.question-input select,
.question-input textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background: #FFF6E5;
    color: var(--text-primary);
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    transition: var(--transition-normal);
    text-align: center;
}

.question-input input:focus,
.question-input select:focus,
.question-input textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.question-input textarea {
    text-align: left;
    resize: vertical;
    min-height: 120px;
}

.question-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    transition: var(--transition-normal);
}

.progress-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.progress-dot.completed {
    background: var(--primary-color);
}

/* Newsletter Opt-in Styling */
.newsletter-option {
    text-align: center;
    padding: 1rem 0;
}

.newsletter-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.newsletter-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    background: #FFF6E5;
    position: relative;
    transition: var(--transition-normal);
}

.newsletter-checkbox input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
}

.newsletter-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.newsletter-text {
    font-family: 'Georgia', serif;
    font-weight: 500;
}

.newsletter-opt-out {
    margin-top: 1rem;
}

.opt-out-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.8rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: var(--transition-normal);
    text-decoration: underline;
    font-family: 'Inter', sans-serif;
}

.opt-out-btn:hover {
    color: var(--text-secondary);
    background: rgba(0, 0, 0, 0.03);
    text-decoration: none;
}

/* Modal Navigation - Better Button Layout */
.modal-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
    padding: 1rem 2rem;
    position: relative;
}

.nav-main {
    display: flex;
    gap: 1rem;
    margin: 0 auto;
}

.btn-ghost {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: var(--transition-normal);
    position: absolute;
    left: 0;
}

.btn-ghost:hover {
    color: var(--text-secondary);
    background: rgba(0, 0, 0, 0.05);
    border-radius: 6px;
}

.btn-secondary {
    background: var(--surface-color);
    color: var(--text-secondary);
    border: 2px solid var(--border-color);
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition-normal);
}

.btn-secondary:hover {
    background: var(--surface-hover);
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

.btn-primary {
    padding: 0.875rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    min-width: 140px;
}

/* Modal responsive design */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 90vh;
        margin: 1rem;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-form,
    .simple-form {
        padding: 1.5rem;
    }
    
    .simple-form {
        max-width: none;
    }
    
    .modal-navigation {
        flex-direction: column;
        gap: 1rem;
        margin-top: 0.5rem;
        padding: 1rem;
    }
    
    .btn-ghost {
        position: static;
        order: -1;
        margin-bottom: 0.5rem;
    }
    
    .nav-main {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .nav-main button {
        width: 100%;
        min-width: auto;
    }
    
    .user-type-options {
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .modal-header {
        padding: 0.75rem;
    }
    
    .modal-question {
        padding: 1rem;
    }
    
    .question-title {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
    }
    
    .question-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .modal-navigation {
        margin-top: 0.5rem;
        padding: 1rem 0.75rem;
    }
    
    .newsletter-checkbox {
        font-size: 1rem;
        gap: 0.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .checkmark {
        margin: 0 auto;
    }
    
    .opt-out-btn {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu, .nav-buttons {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .trust-indicators {
        gap: 1rem;
    }
    
    .proof-points {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .safety-notes {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .form-group {
        flex-direction: column;
        align-items: center;
    }
    
    .form-group input {
        min-width: 250px;
        max-width: 400px;
        width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .hero-container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .trust-item {
        font-size: 0.8rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
}
