/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    color: #1a1a1a;
    line-height: 1.6;
}

.page-wrapper {
    width: 100%;
    max-width: 100%;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Urgent Header */
.urgent-header {
    background-color: #dc2626;
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.blink {
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Restricted Badge */
.restricted-badge {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    margin-top: 20px;
    border-bottom: 1px solid #e5e5e5;
    flex-wrap: wrap;
    gap: 10px;
}

.badge-text {
    background-color: #1a1a1a;
    color: white;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.live-viewers {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #dc2626;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: #22c55e;
    border-radius: 50%;
    animation: pulse-green 1.5s ease-in-out infinite;
}

@keyframes pulse-green {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

/* Main Headline */
.main-headline {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.25;
    margin: 25px 0;
    color: #1a1a1a;
}

.highlight {
    background: linear-gradient(180deg, transparent 60%, #fef08a 60%);
    padding: 0 4px;
}

.watch-warning {
    color: #dc2626;
    font-weight: 700;
}

/* Author Info */
.author-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 25px;
    color: #666;
}

.author-name {
    font-weight: 600;
    color: #1a1a1a;
}

.divider {
    color: #ccc;
}

.confirmed {
    color: #22c55e;
    font-weight: 600;
}

/* Hero Image Section */
.hero-image-container {
    position: relative;
    margin: 20px 0 30px;
    border: 3px solid #1a1a1a;
    border-radius: 4px;
    overflow: hidden;
}

.confidential-stamp {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #1a1a1a;
    color: white;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 10;
}

.top-secret-stamp {
    position: absolute;
    top: 30px;
    right: -30px;
    background-color: #dc2626;
    color: white;
    padding: 8px 50px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    transform: rotate(25deg);
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-image {
    width: 100%;
    display: block;
}

.image-caption {
    background-color: #dc2626;
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
}

/* Body Copy */
.body-copy {
    margin: 30px 0;
}

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

.big-letter {
    float: left;
    font-size: 72px;
    font-weight: 800;
    line-height: 0.8;
    margin-right: 10px;
    margin-top: 5px;
    color: #1a1a1a;
}

.bold-copy {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background-color: #1a1a1a;
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    margin: 40px 0;
}

.timer-text {
    color: #dc2626;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.cta-headline {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.cta-button {
    display: inline-block;
    background-color: #facc15;
    color: #1a1a1a;
    padding: 20px 50px;
    font-size: 20px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(250, 204, 21, 0.4);
}

.cta-button:hover {
    background-color: #fde047;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(250, 204, 21, 0.5);
}

.warning-text {
    color: #9ca3af;
    font-size: 13px;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* As Seen On */
.as-seen-on {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    padding: 30px 0;
    flex-wrap: wrap;
    border-top: 1px solid #e5e5e5;
    margin-top: 20px;
}

.as-seen-on .label {
    color: #9ca3af;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.as-seen-on .outlet {
    color: #6b7280;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    color: #9ca3af;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .main-headline {
        font-size: 24px;
    }

    .big-letter {
        font-size: 56px;
    }

    .drop-cap,
    .bold-copy {
        font-size: 16px;
    }

    .cta-headline {
        font-size: 22px;
    }

    .cta-button {
        padding: 18px 35px;
        font-size: 18px;
    }

    .restricted-badge {
        justify-content: center;
        text-align: center;
    }

    .as-seen-on {
        gap: 15px;
    }

    .as-seen-on .outlet {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .main-headline {
        font-size: 20px;
    }

    .urgent-header,
    .info-header {
        font-size: 12px;
        padding: 10px 15px;
    }

    .cta-section,
    .cta-section-safe {
        padding: 30px 20px;
    }

    .cta-button {
        padding: 16px 30px;
        font-size: 16px;
        width: 100%;
    }
}

/* Safe Page Styles (Taboola Compliant) */
.info-header {
    background-color: #2563eb;
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-image-container-safe {
    position: relative;
    margin: 20px 0 30px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}

.image-caption-safe {
    background-color: #f3f4f6;
    color: #4b5563;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    font-style: italic;
}

.regular-copy {
    font-size: 18px;
    line-height: 1.7;
    color: #374151;
}

.cta-section-safe {
    background-color: #f8fafc;
    border: 2px solid #e2e8f0;
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    margin: 40px 0;
}

.cta-headline-safe {
    color: #1a1a1a;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}

.disclaimer-text {
    color: #6b7280;
    font-size: 12px;
    margin-top: 20px;
    font-style: italic;
}
