:root {
    --bg-color: #050505;
    --text-primary: #F3F4F6;
    --text-secondary: #9CA3AF;
    --accent-red: #EF4444;
    --accent-gold: #F59E0B;
    --accent-gold-glow: rgba(245, 158, 11, 0.4);
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --btn-gradient: linear-gradient(135deg, #10B981 0%, #059669 100%);
    --btn-shadow: rgba(16, 185, 129, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Effects */
.background-glow {
    position: fixed;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--accent-gold-glow) 0%, rgba(5, 5, 5, 0) 60%);
    z-index: -1;
    opacity: 0.5;
    pointer-events: none;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Headings */
h1,
h2,
h3 {
    font-family: 'Outfit', sans-serif;
}

.hero-section {
    text-align: center;
    margin-top: 20px;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(239, 68, 68, 0.1);
    color: var(--accent-red);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.headline {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.headline .highlight {
    color: var(--accent-gold);
    font-size: 2.8rem;
    display: block;
    margin-bottom: 10px;
    text-shadow: 0 0 20px var(--accent-gold-glow);
}

/* Mockup Image */
.mockup-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.image-wrapper {
    position: relative;
    max-width: 400px;
    width: 100%;
}

.product-mockup {
    width: 100%;
    height: auto;
    display: block;
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.mockup-shadow {
    position: absolute;
    bottom: -20px;
    left: 10%;
    width: 80%;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    border-radius: 50%;
    filter: blur(5px);
    animation: shadowPulse 6s ease-in-out infinite;
}

/* Glass Cards */
.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.glass-card p {
    margin-bottom: 15px;
}

.glass-card p:last-child {
    margin-bottom: 0;
}

.red-text {
    color: var(--accent-red);
    font-weight: 600;
}

.outline-card {
    border: 1px solid rgba(245, 158, 11, 0.3);
    background: linear-gradient(to bottom, rgba(245, 158, 11, 0.05), transparent);
}

.outline-card h2 {
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Discover Section */
.discover-section {
    margin-top: 20px;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.price-highlight {
    color: #10B981;
    font-weight: 800;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 25px;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(245, 158, 11, 0.4);
}

.benefit-card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 1.2rem;
    color: #FFF;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.urgency-box {
    background: rgba(239, 68, 68, 0.05);
    border-left: 4px solid var(--accent-red);
    border-radius: 0 8px 8px 0;
    padding: 20px;
    text-align: left;
    max-width: 600px;
}

.urgency-box p {
    color: #F87171;
    font-size: 0.95rem;
}

.cta-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--btn-gradient);
    color: white;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 50px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 10px 30px var(--btn-shadow);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px var(--btn-shadow);
}

.cta-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.cta-price {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 5px;
}

.safe-checkout {
    color: var(--text-secondary);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes shadowPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(0.85);
        opacity: 0.4;
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--btn-gradient);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 1px;
    box-shadow: 0 10px 25px var(--btn-shadow);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px var(--btn-shadow);
}

/* Responsive */
@media (max-width: 768px) {
    .headline {
        font-size: 1.8rem;
    }

    .headline .highlight {
        font-size: 2.2rem;
    }

    .container {
        padding: 30px 15px;
        gap: 30px;
    }

    .cta-text {
        font-size: 1.1rem;
    }

    .floating-cta {
        bottom: 20px;
        right: 20px;
        padding: 12px 25px;
        font-size: 1rem;
    }
}