:root {
    --bg-color: #050510;
    --text-color: #e2e8f0;
    --primary-color: #00f0ff;
    /* Neon Cyan */
    --secondary-color: #7000ff;
    /* Neon Purple */
    --accent-color: #ff0055;
    /* Neon Red/Pink */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 600px;
    /* Mobile-first focus, but looks good centered on desktop */
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* Warning Banner */
.warning-banner {
    background: linear-gradient(90deg, #330000 0%, #660000 50%, #330000 100%);
    color: #ffcccc;
    padding: 12px 0;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--accent-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.pulse-icon {
    display: inline-block;
    animation: pulse 1.5s infinite;
}

/* Hero Section */
.hero-section {
    padding: 60px 0 40px;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #e2e8f0;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-subtitle strong {
    color: var(--primary-color);
    font-weight: 700;
}

.hero-choices {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.choice {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
    text-align: left;
}

.choice:hover {
    transform: translateX(5px);
}

.choice.negative {
    border-left: 4px solid var(--accent-color);
    background: linear-gradient(90deg, rgba(255, 0, 85, 0.1) 0%, transparent 100%);
}

.choice.positive {
    border-left: 4px solid var(--primary-color);
    background: linear-gradient(90deg, rgba(0, 240, 255, 0.1) 0%, transparent 100%);
    box-shadow: 0 10px 30px -10px rgba(0, 240, 255, 0.15);
}

.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.hero-icon {
    width: 32px;
    height: 32px;
}

.choice.negative .hero-icon {
    color: var(--accent-color);
}

.choice.positive .hero-icon {
    color: var(--primary-color);
}

.choice-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.choice-text strong {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 4px;
    color: #fff;
}

.choice-text span {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.3;
}

.main-title {
    font-size: 2.5rem;
    line-height: 1.1;
    margin: 40px 0 20px;
    background: linear-gradient(to bottom, #fff, #999);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-title .highlight {
    display: block;
    font-size: 1.8rem;
    color: var(--primary-color);
    -webkit-text-fill-color: var(--primary-color);
    text-transform: uppercase;
    margin-top: 10px;
    text-shadow: 0 0 20px var(--primary-color);
}

.hero-description {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Benefits Section */
.benefits-section {
    padding: 40px 0;
}

.grid-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

@media(min-width: 768px) {
    .grid-benefits {
        grid-template-columns: 1fr 1fr;
    }
}

.card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 20px;
    text-align: left;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Deliverables Section */
.deliverables-section {
    padding: 40px 0;
}

.clean-list {
    list-style: none;
    text-align: left;
    margin-top: 30px;
}

.clean-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.check-icon {
    color: var(--primary-color);
}

/* Why It Works */
.why-it-works-section {
    padding: 40px 0;
}

.glow-box {
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid var(--primary-color);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.1) inset;
}

.highlight-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-top: 15px;
}

/* Offer Section */
.offer-section {
    padding: 60px 0 100px;
}

.offer-card {
    background: linear-gradient(180deg, rgba(20, 20, 40, 0.8) 0%, rgba(10, 10, 20, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.offer-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(112, 0, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.badge {
    background: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin: 20px 0;
}

.old-price {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 1.2rem;
}

.big-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.urgency {
    color: var(--accent-color);
    font-weight: 600;
    margin: 15px 0 30px;
}

.cta-button {
    background: linear-gradient(90deg, #00C6FF 0%, #0072FF 100%);
    color: white;
    text-decoration: none;
    display: block;
    padding: 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(0, 114, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
    animation: wiggle 3s infinite;
}

.cta-button:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 114, 255, 0.5);
}

.small-cta {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    margin-top: 5px;
    opacity: 0.9;
}

.guarantee {
    margin: 30px 0;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    font-size: 0.9rem;
}

.secondary-button {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.secondary-button:hover {
    color: #fff;
    border-color: #fff;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes wiggle {

    0%,
    100% {
        transform: rotate(0deg);
    }

    5% {
        transform: rotate(2deg);
    }

    10% {
        transform: rotate(-2deg);
    }

    15% {
        transform: rotate(2deg);
    }

    20% {
        transform: rotate(0deg);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Background Effects */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    /* Improve performance by ignoring mouse events */
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    will-change: transform;
    /* Hint to browser for optimization */
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    top: -100px;
    right: -50px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    bottom: -100px;
    left: -100px;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .main-title {
        font-size: 1.8rem;
        /* Smaller title on mobile */
    }

    .main-title .highlight {
        font-size: 1.4rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .big-price {
        font-size: 2.5rem;
    }

    .orb {
        filter: blur(40px);
        /* Reduce blur radius for performance */
        opacity: 0.3;
    }

    .grid-benefits {
        grid-template-columns: 1fr;
    }

    .choice {
        padding: 15px;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .choice-text {
        text-align: left;
    }

    .cta-button {
        font-size: 1rem;
        padding: 15px;
        animation: none;
        /* Disable complex animation on mobile */
        box-shadow: 0 5px 15px rgba(0, 114, 255, 0.3);
    }

    .cta-button:active {
        transform: scale(0.98);
        /* Simple touch feedback */
    }

    /* Reduce motion if preferred or on low-power mode */
    @media (prefers-reduced-motion: reduce) {

        .pulse-icon,
        .cta-button {
            animation: none;
        }

        .fade-in,
        .fade-in-up {
            transition: none;
            opacity: 1;
            transform: none;
        }
    }
}