/* EASY MODS - PRESELL PAGE STYLES - OPTIMIZED FOR PAGESPEED */
:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-tertiary: #1a1a25;
    --accent-cyan: #00f0ff;
    --accent-blue: #0066ff;
    --accent-purple: #8b5cf6;
    --accent-green: #00ff88;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);
    --gradient-primary: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);
    --section-padding: 100px 20px;
    --container-max: 1200px;
    --font-display: 'Orbitron', sans-serif;
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --glow-cyan: 0 0 30px rgba(0, 240, 255, 0.5);
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

::selection {
    background: var(--accent-cyan);
    color: var(--bg-primary);
}

/* Simple Background */
.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    contain: strict;
}

.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    will-change: auto;
}

.bg-glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-cyan) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

.bg-glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-blue) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
}

/* Hero Section - CLS Optimized */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    contain: layout style;
}

.hero-content {
    max-width: 900px;
    min-height: 480px;
    text-align: center;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Logo - Fixed Dimensions for CLS */
.logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 32px;
    width: 180px;
    height: 180px;
}

.logo {
    width: 180px;
    height: 180px;
    aspect-ratio: 1/1;
    filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.4));
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    filter: blur(30px);
    pointer-events: none;
}

/* Headline - Fixed Min Height for CLS */
.headline {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    min-height: 120px;
}

.headline-accent {
    color: var(--accent-cyan);
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.headline-highlight {
    color: var(--text-secondary);
}

.headline-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.headline-game {
    display: block;
    font-size: 0.8em;
    font-family: var(--font-display);
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 10px;
    margin-top: 15px;
}

.subheadline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.6;
    min-height: 50px;
}

.subheadline strong {
    color: var(--accent-cyan);
    font-weight: 600;
}

/* CTA Button - Fixed Min Height for CLS */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    min-height: 60px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-primary);
    background: var(--gradient-primary);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--glow-cyan);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 50px rgba(0, 240, 255, 0.7);
}

.cta-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-icon svg {
    width: 100%;
    height: 100%;
}

.cta-arrow {
    transition: transform var(--transition-fast);
}

.cta-button:hover .cta-arrow {
    transform: translateX(5px);
}

.cta-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover .cta-glow {
    left: 100%;
}

/* Trust Indicator */
.trust-indicator-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 24px;
    min-height: 24px;
}

.trust-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.trust-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-green);
}

/* Benefits Section */
.benefits {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    font-family: var(--font-display);
    font-size: 0.75rem;
    color: var(--accent-cyan);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* VSL Video Container - Optimized */
.vsl-container {
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
}

.vsl-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 240, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.1);
}

.vsl-wrapper iframe {
    display: block;
    border-radius: 16px;
}

.vsl-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(0, 240, 255, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    filter: blur(30px);
    pointer-events: none;
    z-index: -1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
}

.card-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent-cyan);
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.card-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.benefit-card:hover .card-border {
    transform: scaleX(1);
}

/* Final CTA Section */
.final-cta {
    padding: var(--section-padding);
    display: flex;
    justify-content: center;
}

.cta-box {
    max-width: 800px;
    width: 100%;
    background: rgba(0, 240, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 240, 255, 0.1);
}

.cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: var(--accent-cyan);
    border-style: solid;
    border-width: 0;
}

.corner-tl {
    top: 20px;
    left: 20px;
    border-top-width: 2px;
    border-left-width: 2px;
}

.corner-tr {
    top: 20px;
    right: 20px;
    border-top-width: 2px;
    border-right-width: 2px;
}

.corner-bl {
    bottom: 20px;
    left: 20px;
    border-bottom-width: 2px;
    border-left-width: 2px;
}

.corner-br {
    bottom: 20px;
    right: 20px;
    border-bottom-width: 2px;
    border-right-width: 2px;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.4;
}

.cta-line {
    display: block;
}

.cta-highlight {
    color: var(--accent-cyan);
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.cta-button-large {
    padding: 22px 50px;
    font-size: 1.2rem;
}

.cta-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    filter: blur(50px);
    pointer-events: none;
}

/* Footer */
.footer {
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    aspect-ratio: 1/1;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-text {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Responsive - CLS Optimized */
@media (max-width: 768px) {
    :root {
        --section-padding: 40px 16px;
    }

    .hero {
        min-height: 100vh;
        height: auto;
        padding: 40px 16px;
    }

    .hero-content {
        min-height: 420px;
    }

    .logo-container {
        width: 140px;
        height: 140px;
        margin-bottom: 20px;
    }

    .logo {
        width: 140px;
        height: 140px;
    }

    .headline {
        font-size: 1.9rem;
        letter-spacing: 1px;
        line-height: 1.1;
        margin-bottom: 16px;
        min-height: 100px;
    }

    .headline-game {
        letter-spacing: 4px;
        font-size: 0.7em;
    }

    .subheadline {
        font-size: 1.1rem;
        padding: 0;
        margin-bottom: 24px;
        line-height: 1.4;
        min-height: 45px;
    }

    .cta-button {
        min-height: 56px;
        padding: 18px 28px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 340px;
    }

    .trust-indicator-wrapper {
        margin-top: 20px;
    }

    /* VSL Mobile */
    .vsl-container {
        margin: 0 auto 40px;
        padding: 0 10px;
    }

    .vsl-wrapper {
        border-radius: 12px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .benefit-card {
        padding: 24px 20px;
    }

    .cta-box {
        padding: 40px 20px;
        border-radius: 16px;
    }

    .cta-title {
        font-size: 1.15rem;
        line-height: 1.5;
    }

    .cta-button-large {
        padding: 18px 30px;
        font-size: 0.95rem;
        max-width: 100%;
    }

    .bg-glow {
        opacity: 0.15;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 12px;
    }

    .hero-content {
        min-height: 380px;
    }

    .logo-container {
        width: 120px;
        height: 120px;
    }

    .logo {
        width: 120px;
        height: 120px;
    }

    .headline {
        font-size: 1.6rem;
        min-height: 90px;
    }

    .headline-game {
        letter-spacing: 3px;
        font-size: 0.7em;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .cta-button {
        min-height: 54px;
        gap: 8px;
        letter-spacing: 1px;
        padding: 16px 24px;
        font-size: 1rem;
    }

    .subheadline {
        font-size: 1rem;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .card-description {
        font-size: 0.9rem;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}