* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #FF4444;
    --color-primary-dark: #CC0000;
    --color-secondary: #FFB800;
    --color-success: #00C853;
    --color-warning: #FF6D00;
    --color-dark: #1a1a1a;
    --color-gray: #666;
    --color-light: #f5f5f5;
    --color-white: #ffffff;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--color-white);
    line-height: 1.6;
    min-height: 100vh;
    padding: 0;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
}

/* Alert Banner */
.alert-banner {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 4px 20px rgba(255, 68, 68, 0.4);
    animation: pulse 2s infinite;
    position: sticky;
    top: 0;
    z-index: 1000;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

.alert-icon {
    font-size: 32px;
    animation: shake 0.5s infinite;
}

@keyframes shake {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(10deg);
    }
}

.alert-text {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

#timer {
    display: inline-block;
    background: var(--color-white);
    color: var(--color-primary);
    padding: 2px 10px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 18px;
    margin-left: 5px;
}

/* Content */
.content {
    padding: 40px 20px;
}

.warning-box {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.1) 0%, rgba(255, 68, 68, 0.05) 100%);
    border: 3px solid var(--color-primary);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(255, 68, 68, 0.3);
}

.headline {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.highlight {
    color: var(--color-secondary);
    display: block;
    font-size: 56px;
    text-shadow: 0 0 30px rgba(255, 184, 0, 0.5);
}

.urgent-message {
    margin-top: 30px;
}

.big-text {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.emphasis {
    font-size: 28px;
    color: var(--color-secondary);
    font-weight: 700;
    line-height: 1.4;
}

/* Offer Box */
.offer-box {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    border: 2px solid var(--color-secondary);
    box-shadow: 0 10px 50px rgba(255, 184, 0, 0.3);
}

.offer-header {
    text-align: center;
    margin-bottom: 30px;
}

.label {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.timer-box {
    background: rgba(255, 68, 68, 0.1);
    border: 2px solid var(--color-primary);
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
}

.timer-label {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

.countdown {
    font-size: 48px;
    font-weight: 900;
    color: var(--color-primary);
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 20px rgba(255, 68, 68, 0.5);
}

/* Price Comparison */
.price-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.old-price-section,
.new-price-section {
    text-align: center;
}

.label-small {
    font-size: 14px;
    color: var(--color-gray);
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 600;
}

.old-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-gray);
    text-decoration: line-through;
    opacity: 0.6;
}

.arrow {
    font-size: 48px;
    color: var(--color-secondary);
    font-weight: 900;
}

.new-price {
    font-size: 64px;
    font-weight: 900;
    color: var(--color-success);
    text-shadow: 0 0 30px rgba(0, 200, 83, 0.5);
    line-height: 1;
}

.save-badge {
    background: var(--color-success);
    color: var(--color-white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    display: inline-block;
    margin-top: 10px;
    animation: bounce 1s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.discount-tag {
    background: linear-gradient(135deg, var(--color-warning) 0%, var(--color-primary) 100%);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    margin-top: 30px;
}

.percentage {
    font-size: 36px;
    font-weight: 900;
    display: block;
    margin-bottom: 5px;
}

.text {
    font-size: 16px;
    font-weight: 600;
}

/* Loss Aversion Section */
.loss-box {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.15) 0%, rgba(255, 68, 68, 0.05) 100%);
    border: 3px solid var(--color-primary);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
}

.loss-title {
    font-size: 28px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 30px;
    color: var(--color-primary);
    text-transform: uppercase;
}

.loss-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.loss-item {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 68, 68, 0.4);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
}

.loss-item:hover {
    transform: scale(1.05);
}

.loss-icon {
    font-size: 48px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(255, 68, 68, 0.5));
}

.loss-item p {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
}

/* Prosperity Section */
.prosperity-box {
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.15) 0%, rgba(0, 200, 83, 0.1) 100%);
    border: 3px solid var(--color-secondary);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
}

.prosperity-title {
    font-size: 28px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 30px;
    color: var(--color-secondary);
}

.prosperity-list {
    list-style: none;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
}

.prosperity-list li {
    padding: 15px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--color-success);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.prosperity-list li:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.prosperity-question {
    text-align: center;
    font-size: 22px;
    color: var(--color-secondary);
    margin-top: 25px;
    padding: 20px;
    background: rgba(255, 68, 68, 0.1);
    border-radius: 10px;
}

/* Choice Grid */
.choice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0 40px;
}

.choice {
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 3px solid;
    transition: all 0.3s ease;
}

.choice.bad {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.2) 0%, rgba(255, 68, 68, 0.05) 100%);
    border-color: var(--color-primary);
}

.choice.good {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.2) 0%, rgba(0, 200, 83, 0.05) 100%);
    border-color: var(--color-success);
    animation: glow-green 2s infinite;
}

@keyframes glow-green {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 200, 83, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(0, 200, 83, 0.6);
    }
}

.choice:hover {
    transform: translateY(-5px);
}

.choice-icon {
    font-size: 64px;
    margin-bottom: 15px;
}

.choice p {
    font-size: 16px;
    line-height: 1.6;
}

.choice strong {
    font-size: 20px;
    display: block;
    margin-bottom: 10px;
}

.final-cta {
    margin-top: 30px;
}

/* Benefits Section - REMOVED, keeping for compatibility */
.benefits-section {
    margin: 50px 0;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-secondary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.1) 0%, rgba(255, 184, 0, 0.05) 100%);
    border: 2px solid rgba(255, 184, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 184, 0, 0.3);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-secondary);
}

.benefit-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Urgency Box */
.urgency-box {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.2) 0%, rgba(255, 68, 68, 0.1) 100%);
    border: 3px solid var(--color-primary);
    border-radius: 15px;
    padding: 35px;
    margin: 40px 0;
}

.urgency-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 25px;
    text-align: center;
    color: var(--color-primary);
}

.urgency-list {
    list-style: none;
    font-size: 18px;
    font-weight: 600;
}

.urgency-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.urgency-list li:last-child {
    border-bottom: none;
}

.red-text {
    color: var(--color-primary);
    font-weight: 800;
}

/* CTA Section */
.cta-section {
    margin: 50px 0;
    text-align: center;
}

.cta-button {
    display: block;
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    padding: 25px 40px;
    border-radius: 15px;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--color-success) 0%, #00A843 100%);
    color: var(--color-white);
    animation: glow 2s infinite;
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(0, 200, 83, 0.4);
    }

    50% {
        box-shadow: 0 10px 50px rgba(0, 200, 83, 0.7);
    }
}

.cta-button.primary:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 200, 83, 0.5);
}

.cta-button.secondary {
    background: transparent;
    color: var(--color-gray);
    border: 2px solid var(--color-gray);
    font-size: 14px;
    padding: 15px 30px;
    font-weight: 600;
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.05);
}

.cta-text {
    display: block;
    font-size: 24px;
    line-height: 1.2;
}

.cta-subtext {
    display: block;
    font-size: 14px;
    margin-top: 8px;
    font-weight: 600;
    opacity: 0.9;
}

/* Guarantee */
.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.guarantee-icon {
    font-size: 40px;
}

.guarantee-text {
    text-align: left;
    font-size: 14px;
    line-height: 1.4;
}

/* Social Proof */
.social-proof {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.1) 0%, rgba(0, 200, 83, 0.05) 100%);
    border: 2px solid rgba(0, 200, 83, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
}

.proof-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    text-align: center;
}

.live-indicator {
    background: var(--color-primary);
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.proof-text {
    font-size: 16px;
    font-weight: 600;
}

.testimonials {
    display: grid;
    gap: 20px;
}

.testimonial {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--color-secondary);
    padding: 20px;
    border-radius: 10px;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.testimonial-header strong {
    font-size: 16px;
    color: var(--color-secondary);
}

.stars {
    font-size: 14px;
}

.testimonial p {
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.time {
    font-size: 12px;
    color: var(--color-gray);
    font-style: italic;
}

/* Final Warning */
.final-warning {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.2) 0%, rgba(255, 68, 68, 0.1) 100%);
    border: 3px solid var(--color-primary);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin: 50px 0;
}

.final-warning h3 {
    font-size: 32px;
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.final-warning p {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.warning-emphasis {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-secondary);
    margin: 25px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .headline {
        font-size: 32px;
    }

    .highlight {
        font-size: 38px;
    }

    .big-text {
        font-size: 20px;
    }

    .emphasis {
        font-size: 22px;
    }

    .countdown {
        font-size: 36px;
    }

    .new-price {
        font-size: 48px;
    }

    .arrow {
        font-size: 32px;
    }

    .price-comparison {
        gap: 15px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .cta-text {
        font-size: 18px;
    }

    .section-title {
        font-size: 24px;
    }

    .content {
        padding: 20px 15px;
    }

    .warning-box,
    .offer-box,
    .final-warning {
        padding: 25px 20px;
    }
}