/* =========================================
   VARIABLES & CORE SETUP
   ========================================= */
:root {
    --bg-dark: #0a0c10;
    --bg-card: rgba(255, 255, 255, 0.05);
    --neon-blue: #00d4ff;
    --neon-glow: 0 0 15px rgba(0, 212, 255, 0.6);
    --text-main: #ffffff;
    --text-muted: #b0b3b8;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, .logo {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-neon {
    color: var(--neon-blue);
    text-shadow: var(--neon-glow);
}

/* =========================================
   GLASSMORPHISM UTILITY
   ========================================= */
.glass {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: var(--transition);
}

.glass:hover {
    border-color: var(--neon-blue);
    box-shadow: var(--neon-glow);
    transform: translateY(-5px);
}

/* =========================================
   NAVIGATION
   ========================================= */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 12, 16, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.5rem;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: var(--neon-blue);
    font-weight: bold;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.9rem;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--neon-blue);
    text-shadow: var(--neon-glow);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: var(--transition);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(45deg, #0a0c10 30%, #161b22 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,212,255,0.1) 0%, transparent 70%);
    top: -50%;
    left: -50%;
    animation: rotateBG 20s linear infinite;
}

@keyframes rotateBG {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary {
    background: var(--neon-blue);
    color: var(--bg-dark);
    box-shadow: var(--neon-glow);
}

.btn-primary:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

/* =========================================
   GENERAL SECTIONS
   ========================================= */
.section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.about-card ul {
    list-style: none;
    padding: 2rem;
}

.about-card li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Link Cards */
.link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.link-card {
    padding: 3rem 2rem;
    text-align: center;
    text-decoration: none;
    color: white;
}

.link-card i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--neon-blue);
}

.link-card h3 {
    margin-bottom: 1rem;
}

.link-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Projects */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-item {
    padding: 2rem;
    position: relative;
}

.project-status {
    display: inline-block;
    font-size: 0.7rem;
    background: var(--neon-blue);
    color: var(--bg-dark);
    padding: 2px 10px;
    border-radius: 5px;
    margin-bottom: 1rem;
    font-weight: bold;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-card h3 {
    font-size: 3rem;
    color: var(--neon-blue);
    margin-bottom: 0.5rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: var(--transition);
    cursor: pointer;
}

.gallery-img:hover {
    filter: brightness(1.2) saturate(1.2);
    transform: scale(1.02);
}

/* =========================================
   STAFF PAGE
   ========================================= */
.page-header {
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(to bottom, #0a0c10, #161b22);
}

.rank-title {
    margin: 3rem 0 1.5rem;
    border-left: 5px solid var(--neon-blue);
    padding-left: 1rem;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.staff-card {
    padding: 2rem;
    text-align: center;
}

.staff-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--neon-blue);
    margin-bottom: 1rem;
    object-fit: cover;
}

.callsign {
    display: block;
    font-family: 'Orbitron';
    color: var(--neon-blue);
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.role {
    display: block;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
}

.bio {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* =========================================
   SCHEDULE PAGE
   ========================================= */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.day-card {
    padding: 1.5rem;
}

.day-card h3 {
    border-bottom: 2px solid var(--neon-blue);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
}

.event-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.event-time {
    color: var(--neon-blue);
    font-weight: bold;
    font-size: 0.9rem;
}

.rules-card {
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.rules-list {
    list-style: none;
    margin-top: 2rem;
}

.rules-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* =========================================
   RADIO PAGE
   ========================================= */
.radio-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.radio-card {
    padding: 4rem;
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.radio-header i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.now-playing {
    margin: 2rem 0;
}

.now-playing p {
    font-size: 0.8rem;
    color: var(--neon-blue);
    letter-spacing: 4px;
}

.radio-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.ctrl-btn {
    background: transparent;
    border: 2px solid var(--neon-blue);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.ctrl-btn:hover {
    background: var(--neon-blue);
    color: var(--bg-dark);
}

.volume-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

#volume-slider {
    accent-color: var(--neon-blue);
    cursor: pointer;
}

.radio-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 2rem;
}

/* Visualizer Animation */
.visualizer {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 5px;
    height: 40px;
    margin-bottom: 1rem;
}

.bar {
    width: 6px;
    background: var(--neon-blue);
    animation: bounce 1s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { height: 5px; }
    50% { height: 30px; }
}

.bar:nth-child(2) { animation-delay: 0.1s; }
.bar:nth-child(3) { animation-delay: 0.2s; }
.bar:nth-child(4) { animation-delay: 0.3s; }
.bar:nth-child(5) { animation-delay: 0.4s; }
.bar:nth-child(6) { animation-delay: 0.5s; }

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    padding: 3rem 2rem;
    text-align: center;
}

.contact-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* =========================================
   FOOTER
   ========================================= */
footer {
    background: #05070a;
    padding: 4rem 0 2rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo {
    font-family: 'Orbitron';
    font-size: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--neon-blue);
}

.copyright {
    font-size: 0.8rem;
    color: #555;
}

/* =========================================
   ANIMATIONS & RESPONSIVE
   ========================================= */
.fade-in {
    animation: fadeIn 1s ease forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); text-shadow: var(--neon-glow); }
    50% { transform: scale(1.1); text-shadow: 0 0 30px var(--neon-blue); }
    100% { transform: scale(1); text-shadow: var(--neon-glow); }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hidden by default on mobile */
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
    }

    .nav-links.active { display: flex; }

    .hamburger { display: flex; }

    .hero h1 { font-size: 2.5rem; }
    .about-grid { grid-template-columns: 1fr; }
}
