:root {
    --bg-color: #070709;
    --text-color: #e0e0e0;
    --accent-red: #ff2a2a;
    --accent-gold: #ffd700;
    --btn-color: #ff4500;
    --btn-hover: #ff5722;
    --box-bg: #111115;
    --border-color: #222;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    background-image: radial-gradient(circle at 50% 0%, #1a1a24 0%, #070709 60%);
    overflow-x: hidden;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Typography */
h1, h2, h3 {
    line-height: 1.2;
}

.headline {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 42, 42, 0.4);
    letter-spacing: -1px;
}

.highlight-red {
    color: var(--accent-red);
}

.highlight-price {
    color: var(--accent-gold);
}

.alert-badge {
    background-color: rgba(255, 42, 42, 0.05);
    color: var(--accent-red);
    border: 1px solid rgba(255, 42, 42, 0.5);
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    margin: 20px auto 25px auto;
    display: table;
    letter-spacing: 1px;
}

.sub-headline {
    font-size: 1.25rem;
    text-align: center;
    font-weight: 400;
    color: #b0b0b0;
    margin-bottom: 40px;
}

.sub-headline strong {
    color: #fff;
}

/* Mockup Image */
.video-mockup {
    margin: 30px 0;
    text-align: center;
    position: relative;
}

.mockup-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.8), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* Copy Section */
.copy-section {
    font-size: 1.15rem;
    margin-bottom: 50px;
    color: #d0d0d0;
}

.copy-section p {
    margin-bottom: 25px;
}

.copy-section strong {
    color: #fff;
}

.info-box {
    background: var(--box-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--accent-red);
}

.benefits-list {
    list-style: none;
    margin-top: 20px;
}

.benefits-list li {
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    font-size: 1.1rem;
}

.benefits-list .check {
    position: absolute;
    left: 0;
    color: #00ff88;
    font-weight: bold;
    font-size: 1.2rem;
}

.imagine-text {
    font-size: 1.3rem;
    font-style: italic;
    text-align: center;
    margin: 40px 0;
    color: #e8e8e8;
    line-height: 1.7;
}

.price-justification {
    background: linear-gradient(135deg, rgba(17,17,17,0.8) 0%, rgba(10,10,10,0.9) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--accent-red);
    padding: 25px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-right: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.price-justification h3 {
    color: var(--accent-red);
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
}

/* Call to Action */
.offer-section {
    text-align: center;
    margin: 60px 0 40px 0;
}

.cta-headline {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 35px;
    font-family: 'Oswald', sans-serif;
    letter-spacing: -0.5px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(to bottom, #ff5722, #dd2c00);
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 800;
    padding: 20px 30px;
    border-radius: 10px;
    text-transform: uppercase;
    box-shadow: 0 6px 0 #9f1c00, 0 15px 30px rgba(255, 87, 34, 0.4);
    transition: all 0.1s ease;
    width: 100%;
    margin-bottom: 15px;
    border: 1px solid #ff8a65;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    letter-spacing: 0.5px;
}

.cta-button.large {
    font-size: 1.2rem;
    padding: 24px 20px;
}

.cta-button:active {
    transform: translateY(6px);
    box-shadow: 0 0px 0 #9f1c00;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 6px 0 #9f1c00, 0 0 0 0 rgba(255, 87, 34, 0.7); }
    50% { transform: scale(1.02); box-shadow: 0 6px 0 #9f1c00, 0 0 0 15px rgba(255, 87, 34, 0); }
    100% { transform: scale(1); box-shadow: 0 6px 0 #9f1c00, 0 0 0 0 rgba(255, 87, 34, 0); }
}

.secure-checkout {
    font-size: 0.95rem;
    color: #00ff88;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
}

/* Guarantee */
.guarantee {
    background: var(--box-bg);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 30px;
    margin: 50px 0;
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.guarantee-icon {
    font-size: 4rem;
    line-height: 1;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.guarantee h3 {
    color: var(--accent-gold);
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    letter-spacing: -0.5px;
}

.guarantee p {
    color: #c0c0c0;
    font-size: 1.05rem;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 60px;
    padding: 30px 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.85rem;
    color: #555;
}

footer .disclaimer {
    margin-top: 15px;
    font-size: 0.75rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Media Queries */
@media (max-width: 600px) {
    .headline {
        font-size: 2rem;
    }
    .sub-headline {
        font-size: 1.15rem;
    }
    .cta-headline {
        font-size: 1.6rem;
    }
    .cta-button {
        font-size: 1rem;
        padding: 18px 20px;
    }
    .cta-button.large {
        font-size: 1.05rem;
        padding: 20px 15px;
    }
    .guarantee-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .info-box {
        padding: 20px;
    }
}
