:root { 
    --sdf-blue: #1a3668; 
    --sdf-red: #c00; 
    --bg-gray: #f8f9fa; 
    --success-green: #28a745; 
}
body { 
    font-family: 'Segoe UI', sans-serif; 
    margin: 0; 
    background: var(--bg-gray); 
    color: #222; 
    overflow-x: hidden; 
}

.main-nav { 
    background: var(--sdf-blue); 
    color: white; 
    padding: 8px 0; 
}
.nav-container { 
    max-width: 1240px; 
    margin: 0 auto; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 0 20px; 
}
.logo { 
    font-size: 24px; 
    font-weight: 900; 
    background: white; 
    color: var(--sdf-blue); 
    padding: 2px 10px; 
    border-radius: 2px; 
}
.desktop-links { 
    display: flex; 
    gap: 18px; 
    margin-left: 25px; 
    align-items: center; 
    justify-content: center;
}
.desktop-links a { 
    color: #fff; 
    text-decoration: none; 
    font-size: 13px; 
    font-weight: 600; 
}
.nav-left { 
    display: flex; 
    flex-direction: row;
}
.btn-watch { 
    background: var(--sdf-red); 
    color: white; 
    border: none; 
    padding: 6px 14px; 
    font-weight: bold; 
    cursor: pointer; 
    border-radius: 3px; 
    font-size: 12px; 
}
.desktop-links a:hover { 
    opacity: 1; 
    text-decoration: underline; 
}
.nav-right { 
    display: flex; 
    align-items: center; 
    gap: 20px; 
}
.sub-nav { 
    background: white; 
    border-bottom: 1px solid #ddd; 
    padding: 6px 0; 
    font-size: 11px; 
    font-weight: bold; 
}
.down { 
    color: var(--sdf-red); 
}
.trending-tag { 
    background: var(--sdf-red); 
    color: white; 
    padding: 2px 6px; 
    font-weight: bold; 
    margin-right: 10px; 
}
.urgency-band { 
    background: #333; 
    color: white; 
    text-align: center; 
    padding: 10px; 
    font-size: 14px; 
}

.article-subtitle {
    font-size: 18px;
    color: #555;
    margin: 10px 0 20px 0;
    font-style: italic;
    line-height: 1.4;
    max-width: 700px;
}

/* Content Area */
.category-pill { 
    color: var(--sdf-blue); 
}
.content-area { 
    max-width: 900px; 
    margin: 40px auto; 
    padding: 0 20px; 
}
h1 { 
    font-size: 42px; 
    line-height: 1.1; 
    margin: 10px 0; 
}
.clean-highlight { 
    color: var(--sdf-red); 
}
.media-container { 
    position: relative; 
    margin: 30px 0; 
}
.media-container img { 
    width: 100%; 
    border-radius: 4px; 
}
.live-overlay { 
    position: absolute; 
    bottom: 20px; 
    left: 20px; 
    background: rgba(204, 0, 0, 0.9); 
    color: white; 
    padding: 5px 10px; 
    font-weight: bold; 
}

/* Quiz & Results */
.quiz-card, .result-card { 
    background: white; 
    border: 1px solid #ddd; 
    padding:10px 30px 20px; 
    border-radius: 8px; 
    text-align: center; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.05); 
}
.progress-bar-bg { 
    background: #eee; 
    height: 8px; 
    border-radius: 4px; 
    margin: 20px 0; 
    overflow: hidden; 
}
.progress-fill { 
    background: var(--success-green); 
    width: 50%; 
    height: 100%; 
}
.quiz-btns { 
    display: flex; 
    gap: 20px; 
    justify-content: center; 
    margin-top: 30px; 
}
.quiz-opt { 
    flex: 1; 
    max-width: 200px; 
    padding: 15px; 
    border: 2px solid #ddd; 
    background: white; 
    font-weight: bold; 
    cursor: pointer; 
    border-radius: 6px; 
}

/* Result Specifics */
.result-content { 
    animation: fadeIn 0.6s ease-out; 
}
.claim-timer-box { 
    background: #fff3f3; 
    border: 1px solid #ffcdd2; 
    color: #b71c1c; 
    padding: 15px; 
    border-radius: 6px; 
    margin-bottom: 25px; 
    display: inline-block; 
    font-weight: bold; 
}
.big-amt { 
    font-size: 72px; 
    font-weight: 900; 
    margin: 10px 0; 
    color: #111; 
}
.slots-text { 
    color: var(--sdf-red); 
    font-weight: bold; 
    margin: 10px 0; 
}
.btn-final { 
    background: var(--sdf-red); 
    color: white; 
    padding: 20px 50px; 
    font-size: 22px; 
    border: none; 
    border-radius: 50px; 
    cursor: pointer; 
    font-weight: 900; 
    margin-top: 20px; 
}

.activity-box { 
    margin-top: 30px; 
    text-align: left; 
    background: #f9fdfa; 
    border: 1px solid #e2eee5; 
    padding: 20px; 
    border-radius: 4px;
}

.activity-header { 
    font-weight: bold; 
    color: #2d5a3d; 
    margin-bottom: 15px; 
    border-bottom: 1px solid #e2eee5; 
    padding-bottom: 10px; 
}
.slider-viewport { 
    height: 135px; 
    overflow: hidden; 
    position: relative; 
} 

.slider-container { 
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); 
}

.activity-item { 
    height: 45px; 
    display: flex; 
    align-items: center; 
    font-size: 14px; 
    color: #444; 
    border-bottom: 1px solid #f0f0f0; 
}
.dot { 
    height: 6px; 
    width: 6px; 
    background: var(--success-green); 
    border-radius: 50%; 
    margin-right: 12px; 
}
.time-ago { 
    margin-left: auto; 
    color: #16a34a; 
    font-weight: 600; 
    font-size: 12px; 
}

.result-card .big-amt { 
    font-size: 82px; 
    font-weight: 900; 
    margin: 10px 0; 
    color: #000; 
}
.claim-timer-box { 
    background: #fff3f3; 
    color: #c00; 
    padding: 12px; 
    font-weight: 900; 
    font-size: 18px; 
    margin-bottom: 20px; 
    display: inline-block; 
    border-radius: 4px; 
}
.btn-final { 
    background: var(--sdf-red); 
    color: white; 
    padding: 18px 40px; 
    font-size: 24px; 
    border: none; 
    border-radius: 4px; 
    cursor: pointer; 
    font-weight: 900; 
    width: 100%; 
    margin-top: 15px; 
}

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

.banner-warning {
    background: #fff9c4; border: 2px solid #fdd835; 
    border-radius: 10px;
    padding: 15px; 
    margin: 20px 0; 
    color: #827717; 
    font-weight: bold;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px;
}
.banner-privacy {
    margin-top: 20px;
}

.banner-secondary {
    background: #feffe5; 
    border: 1px solid #fff59d; 
    border-radius: 8px;
    padding: 15px; 
    margin-top: 15px; 
    text-align: left;
}

@keyframes legitFade {
    0% { 
        opacity: 0.7; 
    } 
    50% { 
        opacity: 1; 
    } 
    100% { 
        opacity: 0.7; 
    }
}
.fade-animation { 
    animation: legitFade 3s infinite ease-in-out; 
}

.result-card {
    min-height: 60vh;
}

/* --- MOBILE & HAMBURGER ADDITIONS --- */
.menu-toggle { 
    display: none; 
    background: none; 
    border: none; 
    color: white; 
    font-size: 24px; 
    cursor: pointer; 
}

@media (max-width: 900px) {
    .menu-toggle { 
        display: block; 
        margin-right: 15px; 
    }
    .desktop-links { 
        display: none; 
        flex-direction: column; 
        position: absolute; 
        top: 45px; left: 0; width: 100%; 
        background: var(--sdf-blue); 
        padding: 20px; z-index: 1000; 
    }
    .desktop-links.active { 
        display: flex; 
    }
    .nav-left { 
        position: relative; 
        width: 100%; 
    }
    h1 { 
        font-size: 32px; 
    }
    .btn-final { 
        font-size: 20px; 
    }
    .activity-box {
        padding: 12px; 
        margin-top: 20px;
    }

    .activity-header {
        font-size: 13px; 
        margin-bottom: 10px;
    }

    .slider-viewport {
        height: 120px; 
    }

    .activity-item {
        height: 40px; 
        font-size: 12px; 
        gap: 8px;
    }

    /* Hide the city/location on very small phones to prevent text wrapping */
    .activity-item span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .time-ago {
        font-size: 10px;
        min-width: fit-content;
    }

    .dot {
        height: 5px;
        width: 5px;
        margin-right: 8px;
    }
    .activity-item {
        display: flex;
        justify-content: space-between; 
        align-items: center;
        height: 40px; 
        font-size: 12px;
        padding: 0 4px;
    }

    .activity-item span:nth-of-type(2) {
        flex: 1; 
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis; 
        margin-right: 10px;
    }

    .time-ago {
        flex-shrink: 0; 
        font-size: 10px;
        font-weight: bold;
        color: var(--success-green);
    }

    .banner-warning span {
        text-align: center;
    }
}