:root {
    --primary-color: #00e5ff; /* Cyan Neon */
    --secondary-color: #ff0055; /* Magenta Neon */
    --dark-bg: #0a0a0a;
    --card-bg: #151515;
    --text-color: #ffffff;
    --text-muted: #b0b0b0;
    --font-main: 'Montserrat', sans-serif;
    --font-condensed: 'Oswald', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================================
   LAYOUT UTILITIES
   ========================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #000;
}

.btn-primary:hover {
    background-color: #fff;
    box-shadow: 0 0 15px var(--primary-color);
}

.btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #000;
}

.btn-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.btn-icon:hover {
    background: var(--primary-color);
    color: #000;
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
header {
    background: rgba(0, 0, 0, 0.9);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.logo-container img {
    height: 50px;
}

nav ul {
    display: flex;
    gap: 25px;
}

nav a {
    font-family: var(--font-condensed);
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 1px;
    position: relative;
}

nav a:hover, nav a.active {
    color: var(--primary-color);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

nav a:hover::after, nav a.active::after {
    width: 100%;
}

.btn-donate-nav {
    border: 1px solid var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
}

.btn-donate-nav:hover {
    background: var(--primary-color);
    color: #000;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-live {
    background: #ff0000;
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

.btn-play-header {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* =========================================
   HERO SLIDER (RESTORED)
   ========================================= */
.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: 0; 
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 20px;
    margin-top: 60px; /* Offset for fixed header */
}

.hero-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: #000;
    padding: 5px 15px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-title {
    font-family: var(--font-condensed);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    text-transform: uppercase;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 10px 20px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.slider-btn:hover {
    background: var(--primary-color);
    color: #000;
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background-color: var(--primary-color);
}

/* =========================================
   ON AIR SECTION
   ========================================= */
.on-air-section {
    background: #000;
    padding: 40px 20px;
    text-align: center;
    border-bottom: 1px solid #222;
}

.on-air-label {
    color: var(--primary-color);
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.program-title {
    font-family: var(--font-condensed);
    font-size: 2.5rem;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.program-subtitle {
    color: #bbb;
    margin-bottom: 20px;
}

.play-btn-large {
    display: inline-flex;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.5rem;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
    transition: transform 0.3s;
}

.play-btn-large:hover {
    transform: scale(1.1);
}

/* =========================================
   PROGRAM GRID
   ========================================= */
.program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* No gap to make images touch like reference often do, or small gap */
    gap: 0; 
}

.program-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    group: relative;
}

.program-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.program-item:hover img {
    transform: scale(1.1);
}

.program-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    z-index: 2;
}

.program-time {
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.program-name {
    font-family: var(--font-condensed);
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* =========================================
   TOP 10 SECTION
   ========================================= */
.top10-section {
    padding: 80px 0;
    background: #111;
    background-image: radial-gradient(circle at 20% 20%, rgba(30,30,30,1) 0%, rgba(10,10,10,1) 100%);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
}

.section-title {
    font-family: var(--font-condensed);
    font-size: 2rem;
    text-transform: uppercase;
}

.top10-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.top10-item {
    display: flex;
    align-items: center;
    background: #1a1a1a;
    padding: 10px 20px;
    border-radius: 5px;
    transition: transform 0.2s, background 0.2s;
}

.top10-item:hover {
    transform: translateX(10px);
    background: #222;
    border-left: 3px solid var(--primary-color);
}

.rank-num {
    font-size: 2rem;
    font-family: var(--font-condensed);
    font-weight: bold;
    color: #444;
    width: 50px;
}

.top10-item:nth-child(1) .rank-num { color: var(--primary-color); }
.top10-item:nth-child(2) .rank-num { color: #fff; }
.top10-item:nth-child(3) .rank-num { color: #cd7f32; }

.song-img {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    object-fit: cover;
    margin: 0 20px;
}

.song-info {
    flex-grow: 1;
}

.song-title {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.song-artist {
    color: #bbb;
    font-size: 0.9rem;
}

/* =========================================
   NEWS SECTION
   ========================================= */
.news-section {
    padding: 80px 0;
}

.news-grid-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.main-news-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.main-news-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.main-news-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.news-tag {
    background: var(--primary-color);
    color: #000;
    padding: 2px 10px;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 10px;
}

.secondary-news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.news-card-small {
    background: #1a1a1a;
    border-radius: 5px;
    overflow: hidden;
}

.news-card-small img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.news-card-body {
    padding: 15px;
}

.news-title-small {
    font-size: 1rem;
    margin-top: 5px;
    line-height: 1.4;
}

.sidebar-widget {
    background: #1a1a1a;
    padding: 0; /* Adjusted for image widget */
    margin-bottom: 30px;
    border-radius: 5px;
    overflow: hidden;
}

.widget-title {
    font-family: var(--font-condensed);
    font-size: 1.2rem;
    padding: 15px;
    border-bottom: 1px solid #333;
    background: #222;
}

.artist-card img {
    width: 100%;
    height: auto;
}

/* =========================================
   SPONSORS SECTION
   ========================================= */
.sponsors-section {
    background: #fff;
    padding: 40px 0;
}

.sponsors-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    opacity: 0.7;
}

/* =========================================
   FOOTER (RESTORED)
   ========================================= */
footer {
    background: #000;
    color: #fff;
    padding-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-bottom: 50px;
    border-bottom: 1px solid #222;
}

.footer-title {
    font-family: var(--font-condensed);
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 5px;
}

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

.footer-links a {
    color: #bbb;
}

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

.social-links-footer {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links-footer a {
    font-size: 1.2rem;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* =========================================
   PAGE HEADERS & INTERNAL PAGES
   ========================================= */
.page-header {
    background-color: #111;
    padding: 150px 0 60px; /* More top padding for fixed header */
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-title {
    font-family: var(--font-condensed);
    font-size: 3rem;
    margin-bottom: 10px;
}

.donation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 50px 0;
}

.donation-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #333;
    transition: transform 0.3s;
}

.donation-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.donation-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* =========================================
   FLOATING WHATSAPP
   ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* =========================================
   RESPONSIVE STYLES
   ========================================= */
@media (max-width: 992px) {
    .menu-toggle {
        display: block;
        color: #fff;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0,0,0,0.95);
        padding: 20px;
        text-align: center;
    }

    nav ul.show {
        display: flex;
    }

    .program-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid-container {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .program-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .header-right {
        display: none; /* Hide extra buttons on small mobile for cleaner nav */
    }
    
    .hero-title {
        font-size: 2rem;
    }
}
