:root {
    --cnn-red: #cc0000;
    --text-dark: #262626;
    --text-muted: #555;
    --border-color: #ddd;
    --font-main: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Base */
.main-header {
    background: #fff;
    padding: 12px 0;
}

.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left Section */
.left-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cnn-logo {
    height: 32px;
}

.brand-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

/* Center Nav */
.center-nav ul {
    list-style: none;
    display: flex;
    gap: 24px;
}

.center-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 15px;
    transition: color 0.2s;
}

.center-nav a:hover {
    color: var(--cnn-red);
}

.center-nav .dropdown i {
    font-size: 12px;
    margin-left: 4px;
    color: var(--text-muted);
}

/* Right Section */
.right-section {
    display: flex;
    align-items: center;
    gap: 25px;
}

.action-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.watch-live,
.listen-audio {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: var(--cnn-red);
    border-radius: 50%;
}

.search-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--text-dark);
}

.sign-in-btn {
    padding: 8px 24px;
    border: 1px solid var(--border-color);
    background: #fff;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.sign-in-btn:hover {
    background: #f5f5f5;
}

/* Meta Section */
.meta-section {
    border-top: 1px solid var(--border-color);
    padding: 20px 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 11px;
}

.separator {
    font-size: 10px;
    color: var(--text-muted);
}

.category {
    letter-spacing: 0.5px;
}

.reading-time {
    color: var(--text-muted);
}

.date-container {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 10px;
}

.date-container i {
    font-size: 10px;
    color: var(--text-muted);
}

/* Author Section */
.author-section {
    padding: 10px 0;
}

.author-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.by-text {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-dark);
}

.author-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.doctor-thumb {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    background: url('images/doctor_profile_1772156004979.png');
    background-size: cover;
}

.author-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-dark);
}

/* Article & VSL Sections */
.article-content {
    width: 100%;
}

.headline-block {
    background-color: #fff;
    /* Changed to white */
    color: var(--text-dark);
    /* Changed to black/dark text */
    padding: 30px 0 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.headline-header {
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 400;
}

.show-name {
    font-weight: 900;
    margin-right: 15px;
}

.about-link {
    color: var(--text-muted);
    cursor: pointer;
}

.main-title {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 20px;
    max-width: 800px;
    color: #000;
}

.main-title .highlight {
    font-weight: 900;
}

.sub-headline {
    font-size: 22px;
    line-height: 1.4;
    font-weight: 400;
    color: var(--text-muted);
    max-width: 800px;
}

/* VSL Section */
.vsl-section {
    background-color: #fff;
    padding: 0;
}

.vsl-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 20px 0;
}

.vsl-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border: 1px solid #333;
}

.vsl-overlay {
    text-align: center;
    padding: 20px;
    color: #000;
}

.vsl-overlay i {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.vsl-overlay p {
    font-size: 11px;
    max-width: 300px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Quiz & Offer Sections */
:root {
    --primary-sugar: #136c5d;
    /* Teal */
    --secondary-sugar: #136c5d;
    /* Dark Blue */
    --accent-red: #cc0000;
}

.quiz-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.quiz-box {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quiz-title {
    font-size: 32px;
    color: var(--secondary-sugar);
    margin-bottom: 5px;
}

.quiz-title span {
    color: var(--accent-red);
    font-weight: 900;
}

.quiz-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.quiz-question h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.question-note {
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 30px;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.quiz-opt {
    padding: 20px;
    border: 2px solid #eee;
    background: #fff;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-dark);
}

.quiz-opt:hover {
    border-color: var(--primary-sugar);
    background: #f0fbfc;
}

/* Loading Seq */
.loading-animation {
    padding: 30px 0;
}

.circle-loader {
    width: 60px;
    height: 60px;
    border: 5px solid #eee;
    border-top: 5px solid var(--primary-sugar);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-title {
    color: var(--primary-sugar);
    margin-bottom: 30px;
}

.loading-steps {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.load-step {
    padding: 15px;
    margin-bottom: 10px;
    border: 1px solid #eee;
    border-radius: 10px;
    opacity: 0.3;
    transition: opacity 0.5s;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
}

.load-step.active {
    opacity: 1;
    border-color: var(--primary-sugar);
    box-shadow: 0 4px 12px rgba(0, 139, 163, 0.1);
}

.step-num {
    width: 30px;
    height: 30px;
    background: var(--primary-sugar);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}

/* Offer Section */
.offer-section {
    padding: 80px 0;
    background-color: #fff;
}

.offer-card {
    border: 3px solid var(--primary-sugar);
    border-radius: 24px;
    padding: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.offer-header {
    text-align: center;
    margin-bottom: 50px;
}

.brand-name {
    color: var(--primary-sugar);
    font-weight: 900;
}

.product-display {
    display: flex;
    gap: 50px;
    align-items: center;
}

.product-img {
    width: 100%;
    max-width: 400px;
}

.benefits-list {
    list-style: none;
    margin-bottom: 30px;
}

.benefits-list li {
    margin-bottom: 15px;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefits-list li i {
    color: var(--primary-sugar);
}

.price-box {
    margin-bottom: 30px;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 20px;
    margin-right: 15px;
}

.new-price {
    font-size: 36px;
    font-weight: 900;
    color: var(--accent-red);
}

.buy-button {
    display: inline-block;
    padding: 20px 40px;
    background: var(--accent-red);
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    font-size: 22px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(204, 0, 0, 0.3);
    transition: transform 0.2s;
    text-align: center;
    width: 100%;
}

.buy-button:hover {
    transform: scale(1.02);
}

.guarantee-badge {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 14px;
}

/* Mobile Responsiveness adjustments */
@media (max-width: 900px) {
    .center-nav {
        display: none;
    }

    .action-text {
        display: none;
    }

    .main-title {
        font-size: 32px;
    }

    .sub-headline {
        font-size: 18px;
    }
}

/* Response Adjustments */
@media (max-width: 800px) {
    .product-display {
        flex-direction: column;
        text-align: center;
    }

    .benefits-list li {
        justify-content: center;
    }
}