* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, serif;
    line-height: 1.6;
    color: #333;
    background: #f8f8f8;
}

.container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.header {
    background: linear-gradient(135deg, #c41e3a, #8b0000);
    color: white;
    padding: 15px 30px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.article {
    padding: 40px 30px;
}

.headline {
    font-size: 36px;
    font-weight: bold;
    color: #c41e3a;
    margin-bottom: 15px;
    line-height: 1.2;
    text-align: center;
}

.subheadline {
    font-size: 18px;
    color: #666;
    font-style: italic;
    text-align: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

.divider {
    height: 3px;
    background: linear-gradient(to right, #c41e3a, #8b0000);
    margin: 30px 0;
}

.section-header {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    margin: 30px 0 15px 0;
    border-left: 4px solid #c41e3a;
    padding-left: 15px;
}

.paragraph {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.quote {
    background: #f9f9f9;
    border-left: 4px solid #c41e3a;
    padding: 20px;
    margin: 25px 0;
    font-style: italic;
    font-size: 18px;
}

.highlight {
    background: linear-gradient(120deg, #fff3cd 0%, #fff3cd 100%);
    padding: 2px 6px;
    font-weight: bold;
}

.urgent-text {
    color: #c41e3a;
    font-weight: bold;
}

.video-section {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 40px 30px;
    text-align: center;
    margin: 40px 0;
}

.video-thumbnail {
    position: relative;
    max-width: 500px;
    margin: 0 auto 30px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover {
    transform: scale(1.05);
}

.thumbnail-img {
    width: 100%;
    height: 280px;
    background: linear-gradient(45deg, #8b0000, #c41e3a);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #c41e3a;
    position: absolute;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 20px 20px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 20px 40px;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    background: linear-gradient(135deg, #c0392b, #a93226);
}

.cta-subtext {
    font-size: 16px;
    margin-top: 15px;
    opacity: 0.9;
}

.warning-badge {
    background: #ff6b6b;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    margin: 10px 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.footer {
    background: #2c3e50;
    color: #bdc3c7;
    padding: 20px 30px;
    text-align: center;
    font-size: 12px;
}

@media (max-width: 768px) {
    .headline {
        font-size: 28px;
        padding: 0 15px;
    }
    
    .article {
        padding: 30px 20px;
    }
    
    .paragraph {
        font-size: 16px;
    }
    
    .video-section {
        padding: 30px 20px;
    }
    
    .cta-button {
        padding: 18px 30px;
        font-size: 18px;
    }
}

.video-container{
    width: 100%;
    display: flex;
    justify-content: center;
}

#leaked-video{
    max-width: 88%;
    margin: 0 auto;
}
