/* KNF-7 GOLDEN BUNKER BROADCAST - WARM MILITARY WITH PIP-BOY ACCENTS */
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,700;1,400&family=Special+Elite&display=swap');

:root {
    --bunker-gold: #d4a574;
    --bunker-tan: #c9b896;
    --bunker-brown: #8b7355;
    --rust-metal: #a67c52;
    --warm-cream: #e8d7be;
    --military-green: #6b7c5c;
    --ink-black: #2d2520;
    --pipboy-green: #33ff33;
    --pipboy-glow: #00ff00;
    --accent-green: #4dff4d;
}

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

body {
    font-family: 'Crimson Text', serif;
    background: linear-gradient(rgba(42, 36, 25, 0.45), rgba(42, 36, 25, 0.45)), url('/images/vault-door.png') center/cover fixed no-repeat, linear-gradient(135deg, #4a3f2f 0%, #5c4d38 50%, #4a3f2f 100%);
    background-attachment: fixed;
    color: var(--ink-black);
    line-height: 1.7;
    position: relative;
}

/* Subtle scanline overlay */

/* BUNKER HEADER */
header {
    background: linear-gradient(135deg, #5a4d38 0%, #6b5d48 50%, #5a4d38 100%);
    border-top: 6px solid var(--bunker-gold);
    border-bottom: 6px solid var(--bunker-gold);
    padding: 2rem 2rem 2.5rem 2rem;
    text-align: center;
    box-shadow: 
        inset 0 3px 20px rgba(0,0,0,0.5),
        0 10px 30px rgba(0,0,0,0.6),
        0 0 40px rgba(51,255,51,0.08);
    position: relative;
}

/* PIP-BOY GREEN ACCENT STRIP */
header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--pipboy-green) 50%, 
        transparent 100%);
    box-shadow: 0 0 10px var(--pipboy-glow);
}

/* BUNKER STATUS INDICATOR */
header::after {
    content: '● TRANSMISSION ACTIVE';
    position: absolute;
    top: 15px;
    right: 20px;
    font-family: 'Special Elite', cursive;
    font-size: 0.7rem;
    color: var(--pipboy-green);
    text-shadow: 0 0 10px var(--pipboy-glow);
    letter-spacing: 2px;
    animation: pulse-text 2s infinite;
}

@keyframes pulse-text {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.logo-container {
    display: inline-block;
    margin-bottom: 1rem;
}

.logo-container img {
    height: 120px;
    width: auto;
    filter: 
        drop-shadow(0 0 20px rgba(212,165,116,0.5))
        drop-shadow(0 0 5px rgba(51,255,51,0.2));
}

header h1 {
    font-family: 'Special Elite', cursive;
    font-size: 3.5rem;
    color: var(--warm-cream);
    text-shadow: 
        3px 3px 0px rgba(0,0,0,0.4),
        -1px -1px 0px rgba(255,255,255,0.1),
        0 0 30px rgba(212,165,116,0.4),
        0 0 60px rgba(51,255,51,0.1);
    letter-spacing: 8px;
    margin-top: 0.5rem;
}

.tagline {
    font-family: 'Crimson Text', serif;
    font-style: italic;
    font-size: 1.3rem;
    margin-top: 1rem;
    color: var(--bunker-tan);
    letter-spacing: 2px;
    text-shadow: 
        2px 2px 4px rgba(0,0,0,0.6),
        0 0 8px rgba(51,255,51,0.15);
}

/* MILITARY NAVIGATION WITH GREEN ACCENTS */
nav {
    background: linear-gradient(to bottom, #5c4d38 0%, #4a3f2f 100%);
    padding: 0;
    text-align: center;
    border-bottom: 3px solid var(--rust-metal);
    box-shadow: 
        inset 0 -3px 10px rgba(0,0,0,0.5),
        0 4px 10px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(51,255,51,0.1);
    position: relative;
}

/* GREEN GLOW STRIP UNDER NAV */
nav::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(51,255,51,0.3) 50%, 
        transparent 100%);
    box-shadow: 0 0 15px rgba(51,255,51,0.3);
}

nav a {
    font-family: 'Special Elite', cursive;
    color: var(--warm-cream);
    text-decoration: none;
    padding: 1.2rem 2rem;
    margin: 0;
    display: inline-block;
    border-right: 2px solid rgba(0,0,0,0.4);
    border-left: 2px solid rgba(255,255,255,0.05);
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
    transition: all 0.3s;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

nav a:first-child {
    border-left: none;
}

nav a:last-child {
    border-right: none;
}

nav a:hover {
    background: linear-gradient(to bottom, 
        rgba(51,255,51,0.15) 0%, 
        rgba(51,255,51,0.25) 100%);
    color: #fff;
    text-shadow: 
        0 0 15px var(--pipboy-glow),
        0 0 25px var(--pipboy-green),
        2px 2px 4px rgba(0,0,0,0.9);
    box-shadow: 
        inset 0 0 20px rgba(51,255,51,0.2),
        0 4px 15px rgba(51,255,51,0.3);
}

nav a::before {
    content: '◈';
    margin-right: 8px;
    color: var(--pipboy-green);
    opacity: 0.6;
    text-shadow: 0 0 8px var(--pipboy-glow);
}

/* MAIN BUNKER CONTENT */
main {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* WARM BUNKER PANELS */
.hero {
    background: linear-gradient(135deg, 
        rgba(232,215,190,0.70) 0%, 
        rgba(201,184,150,0.70) 100%);
    padding: 3rem;
    margin-bottom: 3rem;
    border: 5px solid var(--bunker-brown);
    box-shadow: 
        0 12px 40px rgba(0,0,0,0.6),
        inset 0 0 60px rgba(139,115,85,0.15),
        0 0 30px rgba(51,255,51,0.1);
    position: relative;
}

/* GREEN INDICATOR LIGHT */
.hero::after {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, var(--pipboy-green) 0%, transparent 70%);
    border-radius: 50%;
    box-shadow: 
        0 0 15px var(--pipboy-glow),
        0 0 25px var(--pipboy-green);
    animation: pulse-indicator 2s infinite;
}

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

/* GREEN ACCENT UNDERLINE */
.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(51,255,51,0.4) 50%, 
        transparent 100%);
}

.hero h2 {
    font-family: 'Special Elite', cursive;
    color: var(--bunker-brown);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 4px solid var(--bunker-gold);
    padding-bottom: 1rem;
    text-shadow: 
        2px 2px 0px rgba(212,165,116,0.3),
        0 0 10px rgba(51,255,51,0.08);
}

.hero p {
    font-size: 1.35rem;
    color: var(--ink-black);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-weight: 500;
    text-shadow: 1px 1px 1px rgba(255,255,255,0.3);
}

/* BUNKER SECTION PANELS */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.feature {
    background: linear-gradient(135deg, 
        rgba(232,215,190,0.70) 0%, 
        rgba(201,184,150,0.70) 100%);
    padding: 2.5rem;
    border: 5px solid var(--bunker-brown);
    text-align: center;
    box-shadow: 
        0 12px 30px rgba(0,0,0,0.6),
        inset 0 0 40px rgba(139,115,85,0.12),
        0 0 25px rgba(51,255,51,0.08);
    position: relative;
    transition: all 0.3s;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 50px rgba(0,0,0,0.7),
        inset 0 0 50px rgba(139,115,85,0.18),
        0 0 40px rgba(51,255,51,0.2);
    border-color: var(--rust-metal);
}

/* GREEN ACCENT CORNER */
.feature::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 6px;
    height: 6px;
    background: var(--pipboy-green);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--pipboy-glow);
    animation: pulse-indicator 2s infinite;
}

.feature h3 {
    font-family: 'Special Elite', cursive;
    color: var(--bunker-brown);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-shadow: 
        1px 1px 0px rgba(212,165,116,0.3),
        0 0 8px rgba(51,255,51,0.05);
}

.feature p {
    color: var(--ink-black);
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.7;
}

/* BUNKER CONTROL BUTTONS WITH GREEN GLOW */
.button {
    display: inline-block;
    background: linear-gradient(135deg, 
        var(--bunker-brown) 0%, 
        var(--rust-metal) 50%, 
        var(--bunker-brown) 100%);
    color: var(--warm-cream);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border: 4px solid var(--bunker-gold);
    margin-top: 1.5rem;
    font-family: 'Special Elite', cursive;
    font-size: 1.1rem;
    letter-spacing: 2px;
    transition: all 0.3s;
    box-shadow: 
        0 6px 15px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.2),
        0 0 20px rgba(51,255,51,0.1);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
}

.button:hover {
    background: linear-gradient(135deg, 
        var(--rust-metal) 0%, 
        var(--bunker-gold) 50%, 
        var(--rust-metal) 100%);
    color: var(--ink-black);
    transform: translateY(-3px);
    border-color: var(--pipboy-green);
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.6),
        inset 0 1px 0 rgba(255,255,255,0.4),
        0 0 35px var(--pipboy-glow),
        0 0 50px rgba(51,255,51,0.4);
    text-shadow: 
        0 0 10px rgba(51,255,51,0.5),
        1px 1px 3px rgba(0,0,0,0.6);
}

/* BUNKER FOOTER */
footer {
    background: linear-gradient(to bottom, #4a3f2f 0%, #3d3327 100%);
    color: var(--bunker-tan);
    text-align: center;
    padding: 2.5rem 2rem;
    margin-top: 4rem;
    border-top: 6px solid var(--bunker-gold);
    box-shadow: 
        inset 0 5px 20px rgba(0,0,0,0.6),
        0 -4px 20px rgba(0,0,0,0.6),
        inset 0 2px 0 rgba(51,255,51,0.1);
    position: relative;
    z-index: 2;
}

/* GREEN ACCENT ON TOP */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--pipboy-green) 50%, 
        transparent 100%);
    box-shadow: 0 0 15px var(--pipboy-glow);
}

footer p {
    margin: 0.8rem 0;
    font-family: 'Special Elite', cursive;
    letter-spacing: 1px;
    text-shadow: 
        1px 1px 3px rgba(0,0,0,0.9),
        0 0 8px rgba(51,255,51,0.1);
}

/* CONTENT PAGES */
.content {
    background: linear-gradient(135deg, 
        rgba(232,215,190,0.70) 0%, 
        rgba(201,184,150,0.70) 100%);
    padding: 3rem;
    border: 5px solid var(--bunker-brown);
    box-shadow: 
        0 12px 40px rgba(0,0,0,0.6),
        inset 0 0 70px rgba(139,115,85,0.12),
        0 0 30px rgba(51,255,51,0.08);
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.content::after {
    content: '';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 8px;
    height: 8px;
    background: var(--pipboy-green);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--pipboy-glow);
    animation: pulse-indicator 2s infinite;
}

.content h2 {
    font-family: 'Special Elite', cursive;
    color: var(--bunker-brown);
    font-size: 2.5rem;
    border-bottom: 4px solid var(--bunker-gold);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    text-shadow: 
        2px 2px 0px rgba(212,165,116,0.3),
        0 0 10px rgba(51,255,51,0.05);
}

.content h3 {
    font-family: 'Special Elite', cursive;
    color: var(--rust-metal);
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content p {
    font-size: 1.25rem;
    color: var(--ink-black);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-weight: 500;
}

ul, ol {
    margin-left: 3rem;
    margin-top: 1rem;
    font-size: 1.15rem;
}

li {
    margin-bottom: 0.8rem;
    color: var(--ink-black);
    font-weight: 500;
}

/* MOBILE */
@media (max-width: 768px) {
    .logo-container img {
        height: 80px;
    }
    
    header h1 {
        font-size: 2rem;
        letter-spacing: 4px;
    }
    
    nav a {
        display: block;
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.3);
    }
    
    .features {
        grid-template-columns: 1fr;
    }
}
