/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'VT323', 'Courier New', monospace;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #0d0d0d;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cover Banner (Facebook-style) */
.cover-banner {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
    background: #000;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.2);
}

.cover-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #0d0d0d);
}

/* Header */
.main-header {
    background: rgba(13, 13, 13, 0.95);
    padding: 1rem 0;
    border-bottom: 1px solid #00cc00;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.1);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 5px #00ff00);
}

.main-header nav {
    display: flex;
    gap: 1.5rem;
}

.main-header nav a {
    text-decoration: none;
    color: #00ff00;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s;
    text-shadow: 0 0 5px transparent;
}

.main-header nav a:hover {
    color: #fff;
    text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00;
}

/* Hero / Player Section */
.hero {
    background: linear-gradient(rgba(13,13,13,0.8), rgba(13,13,13,0.9)), url('backshot.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 0, 0.03) 2px,
        rgba(0, 255, 0, 0.03) 4px
    );
    pointer-events: none;
}

.glitch-text {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00, 0 0 40px #00cc00;
    animation: flicker 4s infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    92% { opacity: 1; }
    93% { opacity: 0.8; }
    94% { opacity: 1; }
    96% { opacity: 0.9; }
    97% { opacity: 1; }
}

.tagline {
    opacity: 0.9;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #00ff00;
    letter-spacing: 3px;
}

.player-wrapper {
    background: rgba(0, 20, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid #00cc00;
    border-radius: 4px;
    padding: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.2);
}

.now-playing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.live-badge {
    background: #00ff00;
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 0;
    font-size: 0.75rem;
    animation: blink 1.5s infinite;
    box-shadow: 0 0 10px #00ff00;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

audio {
    width: 100%;
    margin: 1rem 0;
    filter: invert(0.1);
}

.volume-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #00ff00;
    letter-spacing: 1px;
}

input[type="range"] {
    accent-color: #00ff00;
}

/* About Section */
.about {
    padding: 3rem 0;
    text-align: center;
    background: #0f0f0f;
    border-top: 1px solid #00cc00;
    border-bottom: 1px solid #00cc00;
}

.about h2 {
    margin-bottom: 1rem;
    color: #00ff00;
    letter-spacing: 2px;
}

.about p {
    max-width: 600px;
    margin: 0 auto;
    color: #aaa;
    font-size: 1.1rem;
}

/* Genres */
.genres {
    padding: 2.5rem 0;
    background: #0d0d0d;
    border-bottom: 1px solid #003300;
}

.genre-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.genre-tags span {
    background: transparent;
    padding: 0.5rem 1.25rem;
    border: 1px solid #00ff00;
    color: #00ff00;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.genre-tags span:hover {
    background: #00ff00;
    color: #000;
    box-shadow: 0 0 15px #00ff00;
}

/* Requests Form */
.requests {
    padding: 3rem 0;
    background: #0f0f0f;
    text-align: center;
    border-bottom: 1px solid #00cc00;
}

.requests h2 {
    margin-bottom: 1.5rem;
    color: #00ff00;
    letter-spacing: 2px;
}

#request-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

#request-form input {
    padding: 0.75rem 1rem;
    background: #0a0a0a;
    border: 1px solid #00cc00;
    color: #00ff00;
    border-radius: 0;
    font-family: 'VT323', 'Courier New', monospace;
    font-size: 1rem;
    flex: 1;
    min-width: 200px;
    letter-spacing: 1px;
}

#request-form input:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

#request-form input::placeholder {
    color: #444;
}

#request-form button {
    padding: 0.75rem 2rem;
    background: #00ff00;
    color: #000;
    border: 1px solid #00ff00;
    font-family: 'VT323', 'Courier New', monospace;
    font-size: 1rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

#request-form button:hover {
    background: #000;
    color: #00ff00;
    box-shadow: 0 0 20px #00ff00;
}

/* Footer */
footer {
    background: #0a0a0a;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #003300;
}

footer p {
    margin: 0.25rem 0;
    color: #666;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    color: #00ff00;
    margin: 0 0.75rem;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.social-links a:hover {
    color: #fff;
    text-shadow: 0 0 10px #00ff00;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cover-banner {
        height: 200px;
    }
    
    .main-header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .glitch-text {
        font-size: 2.5rem;
    }
    
    #request-form {
        flex-direction: column;
    }
}

/* Scanline Effect */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 999;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0.1) 1px,
        transparent 1px,
        transparent 2px
    );
}

/* CRT Glow */
.crt-glow {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 998;
    box-shadow: inset 0 0 100px rgba(0, 255, 0, 0.05);
}

/* Archive Pages Styles */
.page-hero {
    background: linear-gradient(rgba(0,20,0,0.7), rgba(0,20,0,0.9));
    color: #00ff00;
    padding: 4rem 0;
    text-align: center;
    border-bottom: 1px solid #00cc00;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px #00ff00;
}

.archive-list {
    padding: 3rem 0;
}

.archive-item {
    background: #0a0a0a;
    border: 1px solid #003300;
    border-left: 3px solid #00ff00;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.archive-item:hover {
    border-left-color: #00ff00;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
}

.archive-item.full {
    background: #0d0d0d;
}

.archive-item h3 {
    margin-bottom: 0.5rem;
    color: #00ff00;
    letter-spacing: 1px;
}

.archive-item .date,
.archive-item .duration {
    display: inline-block;
    font-size: 0.85rem;
    color: #666;
    margin-right: 1.5rem;
}

.archive-item audio {
    margin-top: 1rem;
    width: 100%;
    filter: invert(0.1);
}

/* About Page Specific Styles */
.about-content {
    padding: 4rem 0;
}

.content-block {
    background: #0a0a0a;
    border: 1px solid #003300;
    border-left: 3px solid #00ff00;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s;
}

.content-block:hover {
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.15);
    border-left-color: #00ff00;
}

.content-block.highlight {
    background: #0d0d0d;
    border-left: 3px solid #00cc00;
}

.content-block h2 {
    color: #00ff00;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.content-block p {
    color: #bbb;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    margin: 1.5rem 0;
}

.feature-list li {
    color: #888;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.location {
    font-size: 1rem;
    color: #00ff00;
    font-weight: bold;
    margin-top: 1.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #00cc00 0%, #00ff00 100%);
    padding: 4rem 0;
    text-align: center;
    color: #000;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 3px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: #000;
    color: #00ff00;
    padding: 1rem 3rem;
    text-decoration: none;
    font-family: 'VT323', monospace;
    font-size: 1.2rem;
    letter-spacing: 2px;
    border: 2px solid #000;
    transition: all 0.3s;
}

.cta-button:hover {
    background: transparent;
    color: #000;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .content-block {
        padding: 1.5rem;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }
}

/* Language Selector */
.lang-selector {
    background: rgba(13, 13, 13, 0.95);
    border-bottom: 1px solid #00cc00;
    padding: 0.5rem 0;
    position: sticky;
    top: 70px; /* Below header */
    z-index: 99;
}

.lang-selector .container {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.lang-btn {
    background: transparent;
    border: 1px solid #00cc00;
    color: #00ff00;
    padding: 0.4rem 1rem;
    font-family: 'VT323', monospace;
    font-size: 0.95rem;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.lang-btn:hover {
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.4);
}

.lang-btn.active {
    background: #00ff00;
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

/* Adjust header top spacing for lang selector */
.main-header {
    top: 0;
}

.lang-selector {
    top: 65px; /* Header height */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .lang-selector .container {
        flex-wrap: wrap;
    }
    
    .lang-btn {
        font-size: 0.85rem;
        padding: 0.3rem 0.8rem;
    }
}