* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #f8f9fa;
}

.container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    min-height: 100vh;
}

.header-bar {
    background: linear-gradient(135deg, #c41e3a, #8b0000);
    color: white;
    padding: 12px 20px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 1px;
}

.content {
    padding: 30px;
}

.main-headline {
    font-size: 36px;
    font-weight: bold;
    color: #c41e3a;
    line-height: 1.2;
    margin-bottom: 15px;
    text-align: center;
}

.subheadline {
    font-size: 20px;
    color: #34495e;
    text-align: center;
    margin-bottom: 30px;
    font-style: italic;
}

/* Top CTA Section */
.top-cta-section {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 30px;
    margin: 30px -30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.warning-badge {
    display: inline-block;
    background: #c41e3a;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
    font-family: Arial, sans-serif;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.video-thumbnail {
    position: relative;
    background: url('../assets/thumbnail.webp') center center / cover no-repeat;
    border-radius: 10px;
    padding: 60px 20px;
    margin: 20px 0;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 3px solid #c41e3a;
    min-height: 330px;
}

.video-thumbnail:hover {
    transform: scale(1.02);
}

.play-button {
    font-size: 60px;
    color: #c41e3a;
    margin-bottom: 15px;
}

.video-overlay-text {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.cta-button {
    background: linear-gradient(135deg, #c41e3a, #8b0000);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
    font-family: Arial, sans-serif;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

.cta-subtext {
    font-size: 14px;
    color: #bbb;
    margin-top: 10px;
    font-style: italic;
}

.section-header {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    margin: 40px 0 20px 0;
    padding-left: 15px;
    border-left: 4px solid #c41e3a;
    font-family: Arial, sans-serif;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.section-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.body-text {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: justify;
}

.highlight {
    background: linear-gradient(120deg, #fff3cd 0%, #fff3cd 100%);
    padding: 2px 4px;
    font-weight: bold;
    color: #c41e3a;
    text-decoration: none;
}

.quote-box {
    background: #f8f9fa;
    border-left: 4px solid #c41e3a;
    padding: 20px;
    margin: 25px 0;
    font-style: italic;
    border-radius: 0 5px 5px 0;
}

.urgent-text {
    color: #c41e3a;
    font-weight: bold;
}

.gradient-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #c41e3a, transparent);
    margin: 30px 0;
}

/* Bottom CTA Section */
.bottom-cta-section {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 40px 30px;
    margin: 40px -30px 0 -30px;
    text-align: center;
}

.bottom-cta-headline {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
}

.bottom-cta-text {
    font-size: 16px;
    margin-bottom: 30px;
    color: #bbb;
}

.footer-disclaimer {
    background: #34495e;
    color: #bbb;
    padding: 20px 30px;
    font-size: 12px;
    text-align: center;
    margin: 0 -30px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        margin: 0;
        box-shadow: none;
    }

    .content {
        padding: 20px;
    }

    .main-headline {
        font-size: 28px;
    }

    .subheadline {
        font-size: 18px;
    }

    .section-header {
        font-size: 20px;
    }

    .body-text {
        font-size: 16px;
    }

    .top-cta-section,
    .bottom-cta-section {
        margin-left: -20px;
        margin-right: -20px;
        padding: 20px;
    }

    .footer-disclaimer {
        margin: 0 -20px;
        padding: 15px 20px;
    }
}

a{
    text-decoration: none;
}