@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Inter:wght@300;400;600;800&family=Orbitron:wght@500;700;900&display=swap');

:root {
    --bg-color: #09090b;
    --text-color: #f4f4f5;
    --text-muted: #a1a1aa;
    --hazard-orange: #ff6b00;
    --cyber-red: #ef4444;
    --warning-yellow: #eab308;
    --neon-blue: #06b6d4;
    --dark-purple: #1e1b4b;
    --accent-glow: rgba(255, 107, 0, 0.15);
    
    --header-font: 'Orbitron', sans-serif;
    --mono-font: 'Share Tech Mono', monospace;
    --body-font: 'Inter', sans-serif;
    
    --glass-bg: rgba(15, 15, 20, 0.85);
    --glass-border: rgba(255, 107, 0, 0.2);
    --gold: #eab308;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--body-font);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(239, 68, 68, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.03) 0%, transparent 40%),
        linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 30px 30px, 30px 30px;
    position: relative;
}

/* scanline effect overlay */
body::after {
    content: " ";
    display: block;
    position: fixed;
    top: 0; left: 0; bottom: 0; right: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
    z-index: 9999;
    background-size: 100% 4px, 6px 100%;
    pointer-events: none;
    opacity: 0.45;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--header-font);
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-color);
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-transform: uppercase;
    background: linear-gradient(135deg, #fff 30%, var(--hazard-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 20px rgba(255, 107, 0, 0.2);
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    border-left: 4px solid var(--hazard-orange);
    padding-left: 12px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

h3 {
    font-size: 1.4rem;
    color: var(--hazard-orange);
}

p {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    font-weight: 300;
}

a {
    color: var(--hazard-orange);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

a:hover {
    color: #fff;
    text-shadow: 0 0 8px var(--hazard-orange);
}

/* Sticky Alert Ticker */
.alert-ticker {
    background-color: rgba(239, 68, 68, 0.15);
    border-bottom: 1px solid var(--cyber-red);
    color: #fca5a5;
    font-family: var(--mono-font);
    font-size: 0.95rem;
    padding: 10px 0;
    z-index: 101;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 2px 15px rgba(239, 68, 68, 0.2);
}

.ticker-wrapper {
    display: flex;
    align-items: center;
}

.alert-ticker strong {
    color: #fff;
    background-color: var(--cyber-red);
    padding: 2px 10px;
    font-weight: bold;
    border-radius: 2px;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
    animation: flash 1.5s infinite alternate;
}

@keyframes flash {
    0% { opacity: 0.7; }
    100% { opacity: 1; filter: brightness(1.2); }
}

.ticker-content {
    display: inline-block;
    padding-left: 100%;
    animation: ticker 35s linear infinite;
}

@keyframes ticker {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* Header & Navigation */
header {
    background-color: rgba(9, 9, 11, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 107, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-family: var(--header-font);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-text span {
    color: var(--hazard-orange);
    text-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid transparent;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--hazard-orange);
    border: 1px solid rgba(255, 107, 0, 0.2);
    background-color: rgba(255, 107, 0, 0.05);
}

/* Doomsday Clock Widget in Nav */
.doomsday-nav-widget {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 6px 14px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono-font);
    box-shadow: inset 0 0 10px rgba(239, 68, 68, 0.1);
}

.doomsday-nav-widget .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #fca5a5;
    letter-spacing: 1px;
}

.doomsday-nav-widget .time {
    color: var(--cyber-red);
    font-size: 1.1rem;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(239, 68, 68, 0.6);
    letter-spacing: 0.5px;
}

/* Hero Section */
.hero-section {
    padding: 100px 0 80px;
    position: relative;
    text-align: center;
    background: radial-gradient(circle at center, rgba(30, 27, 75, 0.4) 0%, transparent 70%);
}

.hero-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60%; height: 60%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.hero-subtitle {
    font-family: var(--mono-font);
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--warning-yellow);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 8px rgba(234, 179, 8, 0.3);
}

.hero-desc {
    max-width: 750px;
    margin: 0 auto 2.5rem;
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* Buttons */
.btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--header-font);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background-color: var(--hazard-orange);
    color: #000;
    border: 2px solid var(--hazard-orange);
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--hazard-orange);
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.5);
    text-shadow: none;
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: var(--hazard-orange);
    color: var(--hazard-orange);
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.2);
}

/* Grid & Layout elements */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

@media (max-width: 600px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

/* Cyber Glass Cards */
.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--hazard-orange), transparent);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 0, 0.4);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.1), 0 0 15px rgba(255, 107, 0, 0.05);
}

.card:hover::before {
    opacity: 1;
}

.card-tag {
    font-family: var(--mono-font);
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--warning-yellow);
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 12px;
}

.card-title {
    margin-top: 0;
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #fff;
}

.card-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Pulsing Cyber Badges */
.threat-level-badge {
    position: absolute;
    top: 20px; right: 20px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid var(--cyber-red);
    color: var(--cyber-red);
    font-family: var(--mono-font);
    font-size: 0.75rem;
    padding: 3px 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.2);
}

.threat-level-badge.warning {
    border-color: var(--warning-yellow);
    color: var(--warning-yellow);
    background: rgba(234, 179, 8, 0.1);
}

/* TikTok-Style Conspiracy Reel Section */
.conspiracy-reels-section {
    padding: 60px 0;
    background: linear-gradient(180deg, transparent, rgba(30, 27, 75, 0.2), transparent);
}

.reels-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--hazard-orange) var(--bg-color);
}

.reels-container::-webkit-scrollbar {
    height: 6px;
}

.reels-container::-webkit-scrollbar-track {
    background: var(--bg-color);
}

.reels-container::-webkit-scrollbar-thumb {
    background-color: var(--hazard-orange);
    border-radius: 3px;
}

.reel-card {
    flex: 0 0 320px;
    height: 480px;
    background: #121214;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    transition: all 0.3s ease;
}

.reel-card:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 15px 35px rgba(6, 182, 212, 0.15);
    transform: scale(1.02);
}

.reel-video-placeholder {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    transition: opacity 0.3s ease;
}

.reel-card:hover .reel-video-placeholder {
    opacity: 0.5;
}

.reel-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.reel-meta {
    position: relative;
    z-index: 2;
}

.reel-tag {
    background: var(--neon-blue);
    color: #000;
    font-family: var(--mono-font);
    font-size: 0.7rem;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.reel-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: #fff;
    line-height: 1.3;
}

.reel-snippet {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.reel-stats {
    display: flex;
    gap: 15px;
    font-family: var(--mono-font);
    font-size: 0.75rem;
    color: var(--neon-blue);
}

/* Interactive Survival Quiz */
.quiz-section {
    padding: 60px 0;
}

.quiz-card {
    background: linear-gradient(135deg, rgba(15, 15, 20, 0.95) 0%, rgba(20, 10, 5, 0.95) 100%);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}

.quiz-header {
    text-align: center;
    margin-bottom: 30px;
}

.quiz-subtitle {
    font-family: var(--mono-font);
    color: var(--warning-yellow);
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 2px;
}

.quiz-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-top: 15px;
    overflow: hidden;
}

.quiz-progress-fill {
    width: 0%;
    height: 100%;
    background: var(--hazard-orange);
    transition: width 0.3s ease;
    box-shadow: 0 0 8px var(--hazard-orange);
}

.quiz-question-container {
    min-height: 200px;
}

.quiz-question {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
}

.quiz-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.quiz-option {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
    border-radius: 6px;
    cursor: pointer;
    text-align: left;
    color: var(--text-color);
    font-size: 1rem;
    font-family: var(--body-font);
    transition: all 0.25s ease;
}

.quiz-option:hover {
    background: rgba(255, 107, 0, 0.08);
    border-color: rgba(255, 107, 0, 0.4);
    transform: translateX(4px);
    color: #fff;
}

.quiz-results-container {
    text-align: center;
}

.quiz-score-meter {
    font-family: var(--header-font);
    font-size: 3rem;
    font-weight: 900;
    color: var(--cyber-red);
    margin: 20px 0;
    text-shadow: 0 0 15px rgba(239, 68, 68, 0.5);
}

.quiz-verdict {
    font-size: 1.25rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: #fff;
}

.quiz-recommendations {
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: left;
}

/* Amazon Affiliate Store Styling */
.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.product-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.product-card:hover {
    border-color: var(--warning-yellow);
    box-shadow: 0 15px 30px rgba(234, 179, 8, 0.1);
    transform: translateY(-4px);
}

.product-image {
    width: 100%;
    height: 220px;
    background-color: rgba(255, 255, 255, 0.02);
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.product-image img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    mix-blend-mode: lighten;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}

.product-badge {
    position: absolute;
    top: 15px; left: 15px;
    background: var(--warning-yellow);
    color: #000;
    font-family: var(--mono-font);
    font-size: 0.7rem;
    font-weight: bold;
    padding: 2px 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-info {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.15rem;
    margin: 0 0 10px;
    color: #fff;
    font-weight: 600;
}

.product-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.4;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.product-price {
    font-family: var(--mono-font);
    font-size: 1.2rem;
    color: var(--warning-yellow);
    font-weight: bold;
}

.product-buy-btn {
    background: transparent;
    border: 1px solid var(--warning-yellow);
    color: var(--warning-yellow);
    padding: 8px 16px;
    font-family: var(--mono-font);
    font-size: 0.8rem;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: bold;
    border-radius: 2px;
    transition: all 0.25s ease;
}

.product-buy-btn:hover {
    background: var(--warning-yellow);
    color: #000;
    box-shadow: 0 0 10px rgba(234, 179, 8, 0.4);
}

/* Premium Digital Guide Checkout Card */
.premium-checkout-banner {
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.8) 0%, rgba(239, 68, 68, 0.15) 100%);
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-left: 5px solid var(--cyber-red);
    padding: 40px;
    border-radius: 8px;
    margin: 50px 0;
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
    gap: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

@media (max-width: 768px) {
    .premium-checkout-banner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.checkout-desc h3 {
    margin-top: 0;
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.checkout-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pp-submit-btn {
    width: 100%;
    max-width: 220px;
    padding: 14px;
    background-color: #ffc439;
    color: #000;
    border: none;
    border-radius: 25px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 196, 57, 0.3);
    transition: all 0.25s ease;
}

.pp-submit-btn:hover {
    background-color: #f2ba36;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 196, 57, 0.5);
}

/* Google AdSense Styled Placements */
.native-adsense-slot {
    width: 100%;
    margin: 35px auto;
    padding: 10px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px dashed rgba(255, 107, 0, 0.15);
    border-radius: 4px;
    text-align: center;
    position: relative;
}

.native-adsense-slot::before {
    content: 'DECRYPTED COMMERCIAL FEED (SPONSOR)';
    position: absolute;
    top: -10px; left: 15px;
    background: var(--bg-color);
    padding: 0 8px;
    font-family: var(--mono-font);
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Article Page Layouts */
.breadcrumbs {
    font-family: var(--mono-font);
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.breadcrumbs a {
    color: var(--hazard-orange);
}

.breadcrumbs span {
    margin: 0 8px;
    color: rgba(255,255,255,0.15);
}

.content-wrapper {
    max-width: 840px;
    margin: 0 auto 50px;
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(244, 244, 245, 0.95);
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.article-body ul, .article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 24px;
    color: var(--text-muted);
}

.article-body li {
    margin-bottom: 8px;
}

.toc-box {
    background: rgba(255, 107, 0, 0.03);
    border-left: 3px solid var(--hazard-orange);
    padding: 20px;
    margin-bottom: 30px;
}

.toc-box h3 {
    margin-top: 0;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.toc-box ul {
    list-style: none;
    padding-left: 0;
}

.toc-box li {
    margin-bottom: 6px;
}

.toc-box a {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.toc-box a:hover {
    color: var(--hazard-orange);
    padding-left: 4px;
}

/* EEAT Multi-Author Section */
.eeat-author-bio {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--hazard-orange);
    padding: 24px;
    margin: 40px 0;
    border-radius: 4px;
    position: relative;
}

.eeat-author-bio::before {
    content: 'INTELLIGENCE NODE - VERIFIED AUTHORITY';
    position: absolute;
    top: -10px; right: 15px;
    background: var(--hazard-orange);
    color: #000;
    font-family: var(--mono-font);
    font-size: 0.6rem;
    font-weight: bold;
    padding: 2px 8px;
    letter-spacing: 1px;
    border-radius: 2px;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid var(--hazard-orange);
    color: var(--hazard-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--header-font);
    font-size: 1.1rem;
    font-weight: bold;
}

.author-meta h4 {
    margin: 0;
    color: #fff;
    font-size: 1.1rem;
}

.author-meta .role {
    font-family: var(--mono-font);
    font-size: 0.75rem;
    color: var(--warning-yellow);
    text-transform: uppercase;
}

/* Encrypted Terminal Contact Form */
.terminal-card {
    background: #000;
    border: 1px solid var(--neon-blue);
    border-radius: 6px;
    padding: 30px;
    font-family: var(--mono-font);
    box-shadow: 0 15px 35px rgba(6, 182, 212, 0.1);
}

.terminal-header {
    border-bottom: 1px solid rgba(6, 182, 212, 0.3);
    padding-bottom: 15px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.terminal-title {
    color: var(--neon-blue);
    font-size: 1.1rem;
    text-transform: uppercase;
}

.terminal-controls {
    display: flex;
    gap: 6px;
}

.terminal-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.2);
}

.terminal-dot.red { background-color: var(--cyber-red); }
.terminal-dot.yellow { background-color: var(--warning-yellow); }
.terminal-dot.green { background-color: #22c55e; }

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--neon-blue);
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.form-control {
    width: 100%;
    background: rgba(6, 182, 212, 0.05);
    border: 1px solid rgba(6, 182, 212, 0.3);
    padding: 12px;
    color: #fff;
    font-family: var(--mono-font);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--neon-blue);
    outline: none;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
    background: rgba(6, 182, 212, 0.1);
}

.btn-terminal {
    background: transparent;
    border: 1px solid var(--neon-blue);
    color: var(--neon-blue);
    padding: 12px 28px;
    font-family: var(--mono-font);
    font-size: 0.9rem;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-terminal:hover {
    background: var(--neon-blue);
    color: #000;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.5);
}

/* FAQ accordion styling */
.faq-list {
    margin: 40px 0;
}

.faq-item {
    background: rgba(255,255,255,0.01);
    border: 1px solid rgba(255, 107, 0, 0.1);
    margin-bottom: 15px;
    border-radius: 4px;
    overflow: hidden;
}

.faq-trigger {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px;
    text-align: left;
    font-family: var(--header-font);
    font-size: 1.15rem;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-trigger:hover {
    background: rgba(255, 107, 0, 0.03);
}

.faq-trigger::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--hazard-orange);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-trigger::after {
    content: '-';
}

.faq-content {
    padding: 0 20px 20px 20px;
    color: var(--text-muted);
    font-size: 1rem;
    display: none;
}

.faq-item.active .faq-content {
    display: block;
}

/* Footer styling */
footer {
    background-color: #050507;
    border-top: 1px solid rgba(255, 107, 0, 0.2);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.footer-col h4 {
    margin-top: 0;
    color: #fff;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-links-list {
    list-style: none;
    padding-left: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links-list a:hover {
    color: var(--hazard-orange);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Responsive navigation toggle */
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #fff;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 10px;
        padding-top: 15px;
    }
    .nav-links.show {
        display: flex;
    }
    .nav-toggle {
        display: block;
    }
    .doomsday-nav-widget {
        order: -1;
        margin-left: auto;
    }
}

/* ==========================================
   Phase 2 Upgrades: Threat Map & Audio CSS
   ========================================== */
.threat-map-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    margin-top: 25px;
}

@media (max-width: 900px) {
    .threat-map-grid {
        grid-template-columns: 1fr;
    }
}

.threat-map-svg-container {
    background: rgba(10, 10, 15, 0.95);
    border: 1px solid var(--glass-border);
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.threat-svg {
    width: 100%;
    height: auto;
    max-height: 400px;
}

.threat-region {
    fill: rgba(255, 107, 0, 0.05);
    stroke: rgba(255, 107, 0, 0.22);
    stroke-width: 1.5px;
    transition: fill 0.25s ease, stroke 0.25s ease;
    cursor: pointer;
}

.threat-region:hover {
    fill: rgba(255, 107, 0, 0.2);
    stroke: var(--hazard-orange);
    filter: drop-shadow(0 0 6px rgba(255, 107, 0, 0.4));
}

.threat-region.active {
    fill: rgba(239, 68, 68, 0.22);
    stroke: var(--cyber-red);
    filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.5));
}

.blinking-node {
    animation: pulse-node 2s infinite ease-in-out;
    pointer-events: none;
}

@keyframes pulse-node {
    0% {
        r: 3px;
        opacity: 0.9;
    }
    50% {
        r: 6px;
        opacity: 0.4;
    }
    100% {
        r: 3px;
        opacity: 0.9;
    }
}

.threat-terminal {
    background: #050508;
    border: 1px solid rgba(255, 107, 0, 0.25);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    font-family: var(--mono-font);
    min-height: 300px;
    box-shadow: inset 0 0 25px rgba(0,0,0,0.9);
}

.terminal-header {
    background: rgba(255, 107, 0, 0.08);
    padding: 12px 18px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--hazard-orange);
    border-bottom: 1px solid rgba(255, 107, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyber-red);
    box-shadow: 0 0 8px var(--cyber-red);
    animation: pulse-status 1.5s infinite;
}

@keyframes pulse-status {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

.threat-terminal-content {
    padding: 20px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.terminal-line {
    margin-bottom: 8px;
    line-height: 1.4;
}

.terminal-prompt {
    color: var(--neon-blue);
    font-weight: bold;
    margin-right: 5px;
}

.threat-critical {
    color: var(--cyber-red);
    text-shadow: 0 0 6px rgba(239, 68, 68, 0.4);
}

.threat-warning {
    color: var(--warning-yellow);
    text-shadow: 0 0 6px rgba(234, 179, 8, 0.4);
}

.threat-low {
    color: var(--neon-blue);
    text-shadow: 0 0 6px rgba(6, 182, 212, 0.4);
}

.terminal-report-desc {
    margin-top: 15px;
    border-left: 2px solid rgba(255, 107, 0, 0.35);
    padding-left: 15px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #e4e4e7;
    flex-grow: 1;
}

.audio-toggle.audio-active {
    color: var(--cyber-red) !important;
    border-color: rgba(239, 68, 68, 0.4) !important;
    background: rgba(239, 68, 68, 0.1) !important;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.25);
}

/* ============================================================
   Cookie Consent banner (CMP / Google Consent Mode v2)
   ============================================================ */
.etw-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2147483000;
    background: rgba(9, 9, 11, 0.97);
    border-top: 2px solid var(--hazard-orange);
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--text-color);
    font-family: var(--body-font);
    animation: etwConsentUp 0.35s ease-out;
}
@keyframes etwConsentUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.etw-consent__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.etw-consent__body { flex: 1 1 420px; min-width: 280px; }
.etw-consent__title {
    font-family: var(--header-font);
    font-size: 1.05rem;
    margin: 0 0 6px;
    color: var(--hazard-orange);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.etw-consent__text { font-size: 0.9rem; line-height: 1.5; margin: 0; color: var(--text-muted); }
.etw-consent__text a { color: var(--neon-blue); }
.etw-consent__options { margin-top: 14px; display: flex; flex-direction: column; gap: 10px; }
.etw-consent__options[hidden] { display: none; }
.etw-consent__opt {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--text-muted);
}
.etw-consent__opt input { margin-top: 3px; accent-color: var(--hazard-orange); }
.etw-consent__opt strong { color: var(--text-color); }
.etw-consent__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}
.etw-consent__btn {
    font-family: var(--header-font);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 11px 18px;
    border-radius: 6px;
    border: 1px solid var(--hazard-orange);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    background: transparent;
}
.etw-consent__btn--ghost { color: var(--text-color); background: transparent; }
.etw-consent__btn--ghost:hover { background: rgba(255, 255, 255, 0.08); }
.etw-consent__btn--primary {
    background: var(--hazard-orange);
    color: #09090b;
    font-weight: 700;
}
.etw-consent__btn--primary:hover { box-shadow: 0 0 16px rgba(255, 107, 0, 0.5); }
.etw-consent__btn:focus-visible { outline: 2px solid var(--neon-blue); outline-offset: 2px; }
.footer-bottom .js-cookie-prefs { cursor: pointer; }
@media (max-width: 768px) {
    .etw-consent__inner { padding: 16px; gap: 16px; }
    .etw-consent__actions { width: 100%; }
    .etw-consent__btn { flex: 1 1 auto; text-align: center; }
}


.ad-container-leaderboard { min-height:100px; width:100%; margin:1rem 0; display:block; overflow:hidden; text-align:center; }
.ad-container-leaderboard .adsbygoogle { display:block; min-height:90px; }
.btn-payment { background:#0070ba; color:#fff !important; padding:12px 24px; border-radius:6px; text-decoration:none !important; display:inline-flex; align-items:center; justify-content:center; min-width:44px; min-height:44px; font-weight:600; }
.sovereign-footer { background:#09090b; color:#cbd5e1; padding:2rem 1rem; margin-top:3rem; text-align:center; border-top:1px solid #27272a; }
.sovereign-footer a { color:#f59e0b; }
.sovereign-support { display:flex; flex-wrap:wrap; gap:1rem; justify-content:center; align-items:center; margin:1.5rem 0; }
.ymyl-disclaimer { font-size:0.85rem; color:#94a3b8; max-width:920px; margin:1rem auto 0; line-height:1.6; padding-top:1rem; border-top:1px solid #27272a; }
button, .btn, nav a { min-height:44px; min-width:44px; }
#paypal-container-83T2VYEH7ZFPJ { min-height:44px; min-width:44px; }
