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

body {
    font-family: 'Arial Black', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
}

.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: backgroundPulse 10s ease-in-out infinite;
    z-index: -1;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.main-header {
    padding: 40px 20px;
    text-align: center;
    position: relative;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    display: inline-block;
}

.hero-image {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 400px;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Mission Section */
.mission-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.1), rgba(255, 0, 0, 0.1));
    text-align: center;
}

.mission-content h2 {
    font-size: 2.5rem;
    color: #ffeb3b;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.mission-statement {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto 40px;
}

.quotes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.quote-card {
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #00ff00;
    transition: transform 0.3s ease;
}

.quote-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.3);
}

.quote-card blockquote {
    font-size: 1.1rem;
    color: #ffffff;
    font-style: italic;
    margin: 0;
    line-height: 1.6;
}

/* Topics Section */
.topics-section {
    padding: 60px 20px;
    background: rgba(0, 0, 0, 0.6);
    text-align: center;
}

.topics-section h2 {
    font-size: 2.5rem;
    color: #00ff00;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.topic-card {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 30px;
    border-radius: 10px;
    border-top: 3px solid #ff0000;
    transition: all 0.3s ease;
}

.topic-card:hover {
    transform: scale(1.05);
    border-top-color: #ffeb3b;
    box-shadow: 0 15px 40px rgba(255, 235, 59, 0.3);
}

.topic-card h3 {
    color: #ffeb3b;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.topic-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Removed old title and microphone styles since we're using the hero image now */

@keyframes soundWave {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

.station-info {
    margin: 40px 0;
    animation: fadeIn 2s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.station {
    font-size: 4rem;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 10px;
}

.wfbr {
    color: #00ff00;
    animation: pulse 1.5s ease-in-out infinite;
}

.freq {
    color: #ffeb3b;
    font-size: 3.5rem;
    animation: pulse 1.5s ease-in-out infinite 0.5s;
}

.am {
    color: #ffeb3b;
    font-size: 2.5rem;
    animation: pulse 1.5s ease-in-out infinite 1s;
}

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

.schedule {
    margin: 30px 0;
    font-size: 1.5rem;
}

.time-slot {
    color: #ffffff;
    margin-bottom: 10px;
    animation: slideRight 1.5s ease-out;
}

.host {
    color: #ffeb3b;
    animation: slideLeft 1.5s ease-out;
}

@keyframes slideRight {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideLeft {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.guests-section {
    padding: 60px 20px;
    background: rgba(0, 0, 0, 0.5);
}

.guests-title {
    text-align: center;
    font-size: 2.5rem;
    color: #00ff00;
    margin-bottom: 40px;
    animation: glow 2s ease-in-out infinite;
}

.guests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.guest-card {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.guest-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.3);
}

.guest-image {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #00ff00, #ffeb3b);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 3px solid #00ff00;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.guest-info h3 {
    color: #ffeb3b;
    margin-bottom: 10px;
}

.guest-info p {
    color: #00ff00;
    font-size: 0.9rem;
}

.live-indicator {
    padding: 40px 20px;
    text-align: center;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 0, 0, 0.2);
    border: 2px solid #ff0000;
    border-radius: 30px;
    margin-bottom: 30px;
}

.live-dot {
    width: 15px;
    height: 15px;
    background: #ff0000;
    border-radius: 50%;
    animation: blink 1s ease-in-out infinite;
}

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

.live-text {
    color: #ff0000;
    font-weight: bold;
    font-size: 1.2rem;
}

.frequency-display {
    width: 80%;
    max-width: 600px;
    height: 60px;
    background: linear-gradient(90deg, 
        #00ff00 0%, 
        #ffeb3b 25%, 
        #ff0000 50%, 
        #ffeb3b 75%, 
        #00ff00 100%);
    margin: 0 auto;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.frequency-bar {
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 10px,
        rgba(0, 0, 0, 0.3) 10px,
        rgba(0, 0, 0, 0.3) 11px
    );
}

.frequency-needle {
    position: absolute;
    width: 4px;
    height: 80%;
    background: #ffffff;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation: scan 5s ease-in-out infinite;
}

@keyframes scan {
    0%, 100% { left: 10%; }
    50% { left: 90%; }
}

.footer {
    background: #0a0a0a;
    padding: 40px 20px;
    margin-top: 60px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-info h3 {
    color: #00ff00;
    margin-bottom: 15px;
}

.contact-info p {
    color: #ffffff;
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-link {
    color: #ffeb3b;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #ffeb3b;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ffeb3b;
    color: #1a1a1a;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .animated-title {
        font-size: 3rem;
    }
    
    .radio-show {
        font-size: 2rem;
    }
    
    .station {
        font-size: 2.5rem;
    }
    
    .freq {
        font-size: 2rem;
    }
    
    .am {
        font-size: 1.5rem;
    }
    
    .schedule {
        font-size: 1.2rem;
    }
    
    .guests-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .hero-image {
        max-height: 250px;
    }
    
    .main-header {
        min-height: 350px;
        padding: 20px 10px;
    }
}