:root {
    --red: #e63946;
    --red-dark: #c1121f;
    --red-glow: rgba(230, 57, 70, 0.35);
    --dark: #0d1117;
    --dark-2: #161b22;
    --dark-3: #21262d;
    --surface: #ffffff;
    --surface-dim: #f6f8fa;
    --text: #1f2937;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --border: #e5e7eb;
    --accent-blue: #dbeafe;
    --accent-yellow: #fef3c7;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--dark);
    -webkit-font-smoothing: antialiased;
}

/* === HEADER === */
.header-nav {
    background-color: var(--dark);
    padding: 10px 0;
    text-align: center;
    font-size: 10px;
    color: #484f58;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom: 1px solid var(--dark-3);
}

.header-nav span {
    margin: 0 16px;
    display: inline-block;
    cursor: pointer;
    transition: color 0.2s;
}

.header-nav span:hover {
    color: #8b949e;
}

.logo-section {
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
    padding: 18px 20px;
    text-align: center;
    border-bottom: 3px solid var(--red);
    position: relative;
}

.logo-section::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-dark));
    box-shadow: 0 2px 20px var(--red-glow);
}

.logo-image {
    max-width: 100%;
    height: auto;
    max-height: 50px;
    display: inline-block;
    vertical-align: middle;
}

/* === MAIN CONTAINER === */
.container {
    max-width: 680px;
    margin: 0 auto;
    background-color: var(--surface);
    padding: 40px 32px;
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.3);
}

/* === NEWS BADGE === */
.news-badge {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: white;
    display: inline-block;
    padding: 5px 14px;
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 16px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px var(--red-glow);
}

/* === HEADLINE === */
h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 32px;
    line-height: 1.2;
    color: #000;
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.highlight-red {
    color: var(--red);
    position: relative;
}

.highlight-red::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    opacity: 0.25;
    border-radius: 2px;
}

/* === SUBHEADING === */
.subheading {
    font-size: 19px;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-weight: 500;
    line-height: 1.6;
}

/* === MAIN IMAGE === */
.main-image-container {
    margin-bottom: 28px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.main-content-image {
    width: 100%;
    height: auto;
    display: block;
}

/* === MEDIA CREDIBILITY === */
.media-credibility {
    margin-bottom: 28px;
    text-align: center;
}

.as-seen-in-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* === VIDEO === */
.video-container {
    position: relative;
    width: 100%;
    margin: 28px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.video-placeholder {
    width: 100%;
    height: 380px;
    background: url('../cta.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(230, 57, 70, 0.08) 0%, transparent 60%);
}

.play-button-wrap {
    position: relative;
    z-index: 2;
}

.play-button {
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 30px var(--red-glow);
    position: relative;
}

.play-button::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(230, 57, 70, 0.3);
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.play-button:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 40px rgba(230, 57, 70, 0.5);
}

.play-button::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14px 0 14px 24px;
    border-color: transparent transparent transparent white;
    margin-left: 4px;
}

.video-duration {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    color: white;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
}

.video-title {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 12px;
    font-weight: 500;
}

/* === URGENCY BOX === */
.urgency-box {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 2px solid #f59e0b;
    padding: 14px 18px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 13px;
    color: #92400e;
    margin: 20px 0;
}

/* === CTA BUTTON === */
.cta-button {
    display: block;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: white;
    padding: 20px 24px;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    width: 100%;
    margin: 22px 0;
    box-shadow: 0 4px 20px var(--red-glow);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(230, 57, 70, 0.45);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(0);
}

.cta-sub {
    display: block;
    font-size: 11px;
    font-weight: 500;
    opacity: 0.85;
    margin-top: 4px;
    text-transform: none;
    letter-spacing: 0;
}

/* === SOCIAL POST === */
.social-post {
    background: white;
    border-radius: 8px;
    padding: 16px;
    margin: 24px 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.post-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.post-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e4e6eb;
    object-fit: cover;
}

.post-author {
    font-weight: 600;
    font-size: 15px;
    color: #050505;
}

.post-time {
    font-size: 13px;
    color: #65676b;
    margin-top: 2px;
}

.post-title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 6px;
    color: #050505;
}

.post-text {
    font-size: 15px;
    color: #050505;
    margin-bottom: 12px;
    line-height: 1.5;
}

.post-image-container {
    margin: 0 -16px;
    /* Bleed to edges like Facebook */
}

.post-main-image {
    width: 100%;
    height: auto;
    display: block;
}

.post-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 13px;
    color: #65676b;
    border-bottom: 1px solid #ced0d4;
}

.post-actions {
    display: flex;
    justify-content: space-between;
    padding-top: 4px;
}

.post-action-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 8px 0;
    font-size: 14px;
    color: #65676b;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
}

.post-action-btn:hover {
    background: #f0f2f5;
}

/* === TESTIMONIALS (Fallback) === */
.testimonial-card {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
    border-left: 4px solid var(--red);
    padding: 20px 22px;
    border-radius: 0 12px 12px 0;
    margin: 24px 0;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    color: var(--red);
    opacity: 0.15;
    position: absolute;
    top: -5px;
    right: 18px;
    line-height: 1;
}

.testimonial-title {
    font-weight: 700;
    font-size: 15px;
    color: #000;
    margin-bottom: 8px;
}

.testimonial-text {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 12px;
}

.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.testimonial-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--red);
}

.testimonial-author {
    font-weight: 700;
    font-size: 13px;
    color: var(--text);
}

.testimonial-location {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 1px;
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 13px;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

/* === ARTICLE TEXT === */
.article-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.article-text p {
    margin-bottom: 18px;
}

.article-text strong {
    font-size: 19px;
    color: #000;
}

/* === BENEFITS === */
.benefits-list {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 18px 0;
    list-style: none;
}

.benefits-list li {
    margin-bottom: 10px;
    padding-left: 32px;
    position: relative;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: white;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* === SOCIAL PROOF === */
.social-proof {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    padding: 16px 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin: 22px 0;
    border: 1px solid #bfdbfe;
}

.social-proof strong {
    color: var(--red);
    font-weight: 700;
}

.live-viewers {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    display: inline-block;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* === GUARANTEE === */
.guarantee-box {
    background: var(--surface-dim);
    border: 1px solid var(--border);
    padding: 18px 22px;
    border-radius: 10px;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin: 22px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.guarantee-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.guarantee-box strong {
    color: #000;
}

/* === COUNTDOWN === */
.countdown {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: white;
    padding: 16px 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    margin: 22px 0;
    box-shadow: 0 4px 20px var(--red-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.countdown-timer {
    display: inline-flex;
    gap: 6px;
}

.countdown-block {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    padding: 6px 10px;
    border-radius: 6px;
    min-width: 38px;
    text-align: center;
}

.countdown-num {
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
}

.countdown-label {
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    font-weight: 600;
}

/* === DIVIDER === */
.divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 28px 0;
}

/* === DOCTOR QUOTE === */
.doctor-quote {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f1f3 100%);
    border-left: 4px solid #1a1f2e;
    padding: 24px 28px;
    border-radius: 0 12px 12px 0;
    margin: 28px 0;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text);
    font-style: italic;
}

.doctor-attribution {
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 12px;
}

/* === KEY FINDING === */
.key-finding {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    padding: 24px 28px;
    border-radius: 10px;
    margin: 28px 0;
    font-size: 18px;
    line-height: 1.7;
    color: #78350f;
}

.key-finding-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #92400e;
    margin-bottom: 8px;
    display: inline-block;
    background: rgba(146, 64, 14, 0.12);
    padding: 3px 10px;
    border-radius: 4px;
}

.key-finding strong {
    color: #78350f;
}

/* === RESPONSIVE === */
@media (max-width: 640px) {
    .container {
        padding: 28px 18px;
    }

    h1 {
        font-size: 25px;
    }

    .subheading {
        font-size: 17px;
    }

    .article-text {
        font-size: 17px;
    }

    .doctor-quote,
    .key-finding {
        font-size: 17px;
    }

    .video-placeholder {
        height: 260px;
    }

    .play-button {
        width: 70px;
        height: 70px;
    }

    .play-button::after {
        border-width: 11px 0 11px 20px;
    }

    .cta-button {
        padding: 18px 18px;
        font-size: 14px;
        border-radius: 10px;
    }

    .media-logos {
        gap: 6px;
    }

    .media-logo {
        font-size: 9px;
        padding: 5px 8px;
    }

    .countdown {
        flex-direction: column;
        gap: 8px;
    }

    .guarantee-box {
        flex-direction: column;
        gap: 8px;
    }
}

/* === ANIMATIONS === */
.fade-in {
    opacity: 0;
    transform: translateY(16px);
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}.site-footer {
    padding: 60px 20px;
}
