/* Guest Showcase Styles */
.featured-guests {
    border: 2px solid var(--secondary-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: var(--light-color);
}

.guest-showcase {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.guest-feature {
    display: flex;
    align-items: center;
    gap: 20px;
}

.guest-images {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.guest-photo {
    width: 100px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.guest-logo {
    width: 100px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.guest-details {
    font-size: 1.1rem;
    color: var(--dark-color);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .guest-showcase {
        flex-direction: column;
    }

    .guest-feature {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .guest-photo, .guest-logo {
        width: 80px;
    }
}

/* End of Guest Showcase Styles */

/* Tooltip Styles */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.88);
    color: #fff;
    text-align: left;
    border-radius: 16px;
    padding: 20px;
    position: absolute;
    z-index: 1000;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
    font-size: 14px;
    line-height: 1.4;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Close button in tooltip */
.tooltip-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #dc3545;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.tooltip-close-btn:hover {
    background-color: #c82333;
}

.tooltip .tooltiptext.show {
    visibility: visible;
    opacity: 1;
}

/* About Me Button Styles */
.about-me-btn {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.about-me-btn:hover {
    background-color: #c82333;
}

.about-me-btn:active {
    transform: scale(0.98);
}

@media (max-width: 768px) {
    .tooltip .tooltiptext {
        font-size: 13px;
        padding: 15px;
    }
    
    .about-me-btn {
        font-size: 11px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .tooltip .tooltiptext {
        font-size: 12px;
        padding: 12px;
    }
    
    .about-me-btn {
        font-size: 10px;
        padding: 5px 10px;
    }
}
/* End of Tooltip Styles */

/* Music Quiz Styles */
.music-quiz {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.music-quiz::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="music-notes" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><text x="10" y="15" font-size="12" fill="%23dc262620" text-anchor="middle">♪</text></pattern></defs><rect width="100" height="100" fill="url(%23music-notes)"/></svg>') repeat;
    opacity: 0.1;
    pointer-events: none;
}

.quiz-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.quiz-feature {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.quiz-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    animation: pulse 2s infinite;
}

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

.quiz-feature h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.quiz-feature p {
    color: var(--gray-color);
    margin: 0;
}

.quiz-start-btn {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.quiz-start-btn:hover {
    animation: none;
    transform: translateY(-3px);
}

/* Quiz Container Styles */
.quiz-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.quiz-progress {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 600;
}

.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--white);
    border-radius: 4px;
    transition: width 0.5s ease;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.question-card {
    padding: 3rem 2rem;
    text-align: center;
}

.question-text {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
    line-height: 1.4;
}

.answer-options {
    display: grid;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.answer-btn {
    padding: 1rem 1.5rem;
    background: var(--light-color);
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    color: var(--dark-color);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.answer-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.answer-btn:hover {
    border-color: var(--primary-color);
    background: #fef2f2;
    transform: translateX(5px);
}

.answer-btn:hover::before {
    left: 100%;
}

.answer-btn.selected {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-color: var(--primary-color);
    transform: scale(1.02);
}

.answer-btn.correct {
    background: linear-gradient(135deg, #10b981, #059669);
    border-color: #10b981;
    color: var(--white);
}

.answer-btn.incorrect {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-color: #ef4444;
    color: var(--white);
}

.quiz-navigation {
    padding: 2rem;
    background: #f8fafc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.quiz-navigation .btn {
    min-width: 120px;
}

/* Quiz Results Styles */
.quiz-results {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.results-content {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.results-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
}

.results-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--accent-color), #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    animation: celebration 1s ease-out;
}

@keyframes celebration {
    0% { transform: scale(0) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
    100% { transform: scale(1) rotate(360deg); }
}

.results-header h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.score-display {
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-color);
}

.score-text {
    display: block;
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 0.5rem;
}

.score-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.score-percentage {
    display: block;
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 600;
}

.results-message {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark-color);
}

.results-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .quiz-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .quiz-feature {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .question-card {
        padding: 2rem 1rem;
    }
    
    .question-text {
        font-size: 1.2rem;
    }
    
    .quiz-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .quiz-navigation .btn {
        width: 100%;
    }
    
    .results-actions {
        flex-direction: column;
    }
    
    .results-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .quiz-start-btn {
        width: 100%;
        padding: 1rem;
    }
    
    .score-number {
        font-size: 2.5rem;
    }
    
    .results-content {
        padding: 2rem 1rem;
    }
}

/* Gallery Styles */
.gallery-title {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-title h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-title p {
    color: var(--text-color);
    font-size: 1.1rem;
    opacity: 0.8;
    margin: 0;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--light-color);
    color: var(--text-color);
    border: 2px solid var(--secondary-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 0;
}

.gallery-item {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
}

.gallery-image:hover img {
    transform: scale(1.05);
}

.gallery-content {
    padding: 1.5rem;
}

.gallery-item-title {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}





/* Gallery Modal Styles */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    animation: fadeIn 0.3s ease;
}

.gallery-modal-content {
    position: relative;
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    top: 50%;
    transform: translateY(-50%);
}

.gallery-modal-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.gallery-modal-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    background: none;
    border: none;
}

.gallery-modal-close:hover {
    color: var(--primary-color);
}

.gallery-modal-caption {
    text-align: center;
    color: white;
    padding: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.empty-gallery {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-color);
}

.empty-gallery i {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.empty-gallery h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1rem;
    }
    
    .gallery-title h2 {
        font-size: 1.8rem;
    }
    
    .gallery-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .gallery-modal-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .header-icon i {
        font-size: 2.5rem;
    }
    
    .circle-1 {
        width: 80px;
        height: 80px;
    }
    
    .circle-2 {
        width: 60px;
        height: 60px;
    }
    
    .circle-3 {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-title h2 {
        font-size: 1.5rem;
    }
    
    .gallery-title p {
        font-size: 1rem;
    }
    
    .gallery-content {
        padding: 1rem;
    }
    
    .gallery-item-title {
        font-size: 1rem;
    }
    
    .event-description {
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .event-description-content h3 {
        font-size: 1.5rem;
    }
    
    .event-description-content p {
        font-size: 1rem;
        text-align: left;
    }
    

    
    .header-icon i {
        font-size: 2rem;
    }
    
    .header-divider {
        width: 60px;
    }
}
/* Event Description Styles */
.event-description {
    margin-top: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.event-description-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.event-description-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.event-description-content p:last-child {
    margin-bottom: 0;
}

/* End of Gallery Styles */



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

:root {
    --primary-color: #dc2626;
    --secondary-color: #ef4444;
    --accent-color: #f97316;
    --dark-color: #2d3748;
    --light-color: #f7fafc;
    --gray-color: #718096;
    --white: #ffffff;
    --black: #000000;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
    overflow-x: hidden;
}

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

.section-padding {
    padding: 80px 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: var(--gray-color);
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Announcement Card (Domain Change) */
.announcement-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    box-shadow: var(--shadow);
}

.announcement-icon {
    font-size: 2rem;
    line-height: 1;
    color: var(--white);
}

.announcement-text h3 {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
    color: var(--white);
}

.announcement-text p {
    margin: 0 0 0.75rem;
    color: #fff;
}

.announcement-actions .btn {
    background: var(--white);
    color: var(--dark-color);
    border: none;
}

.announcement-actions .btn:hover {
    filter: brightness(0.95);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}



/* Weather Widget Styling */
.weather-widget-container {
    margin: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 120px;
}

.weather-display {
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    width: 100%;
    max-width: 280px;
}

.weather-location {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.weather-temp {
    font-size: 28px;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 5px;
}

.weather-condition {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 10px;
    font-weight: 500;
}

.weather-details {
    font-size: 12px;
    color: var(--text-color);
    margin-bottom: 8px;
}

.weather-note {
    font-size: 10px;
    color: #666;
    font-style: italic;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Hide-on-scroll state */
.header.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-circle, .station-logo, .mini-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
}

/* Logo Images */
.logo-image, .station-logo-image, .mini-logo-image, .footer-logo-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.logo-image:hover, .station-logo-image:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-logo-image {
    border: 2px solid var(--primary-color);
}

.mini-logo-image {
    width: 35px;
    height: 35px;
    border: 1px solid var(--white);
}

.logo-text h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
}

.logo-text span {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* Dropdown Navigation */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger i {
    font-size: 0.8rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg);
}

.dropdown-content {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    border-radius: var(--border-radius);
    z-index: 1001;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.dropdown-content li {
    list-style: none;
}

.dropdown-content a {
    color: var(--dark-color);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

.dropdown-content a:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.dropdown:hover .dropdown-content {
    display: block !important;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@keyframes fadeInDropdown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.listen-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.listen-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.listen-again-btn {
    background: linear-gradient(135deg, var(--accent-color), #f59e0b);
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.listen-again-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    background: linear-gradient(135deg, #f59e0b, var(--accent-color));
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Radio Player - Full Screen Experience */
.radio-player {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: blur(10px) !important;
    display: none;
    z-index: 2000 !important;
    animation: fadeInModal 0.3s ease;
}

.radio-player.active {
    display: block !important;
}

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

.player-content {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(15px) !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 2rem !important;
    color: white !important;
    animation: slideInFromTop 0.4s ease;
    overflow-y: auto;
    display: grid !important;
    grid-template-rows: auto 1fr auto !important;
    gap: 2rem !important;
    align-content: center;
    justify-items: center;
    transform: none !important;
    max-width: none !important;
    max-height: none !important;
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.player-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 800px;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.player-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.player-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.player-station-info h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

.frequency {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 500;
}

.player-controls {
    display: flex;
    gap: 0.5rem;
}

.control-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.player-live-status {
    text-align: center;
    margin-bottom: 1rem;
}

.player-live-status .live-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.player-live-status .live-dot {
    width: 16px;
    height: 16px;
    background: #00ff00;
    border-radius: 50%;
    animation: fade 2.5s infinite ease-in-out;
    box-shadow: 0 0 20px #00ff00;
}

.player-show-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    max-width: 1000px;
    align-items: center;
}

.player-show-info .current-show-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    color: white;
    width: 100%;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.player-show-info .show-presenter-image {
    flex-shrink: 0;
}

.player-show-info .presenter-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.player-show-info .presenter-photo:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
}

.player-show-info .presenter-photo[alt*="Logo"] {
    background: white;
    padding: 8px;
}

.player-show-info .show-info-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    flex: 1;
}

.player-show-info .show-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.player-show-info .show-presenter {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.player-show-info .show-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    text-align: center;
    max-width: 600px;
}

.player-show-info .current-track-display {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 600px;
}

.player-show-info .track-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 500;
}

.player-show-info .track-info i {
    color: var(--accent-color);
    font-size: 1.1rem;
    animation: musicPulse 2s infinite ease-in-out;
}

.player-controls-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    width: 100%;
    max-width: 600px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.play-button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.main-play-btn {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: 0 8px 30px rgba(221, 42, 42, 0.4);
    position: relative;
    overflow: hidden;
}

.main-play-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.main-play-btn:hover::before {
    left: 100%;
}

.main-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(221, 42, 42, 0.4);
}

.play-label {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    letter-spacing: 1px;
}

.volume-section {
    width: 100%;
    max-width: 500px;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.volume-icon {
    color: var(--accent-color);
    font-size: 1.5rem;
    min-width: 25px;
}

.volume-slider {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(221, 42, 42, 0.4);
    transition: all 0.2s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 3px 8px rgba(221, 42, 42, 0.4);
}

.volume-value {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    font-weight: 500;
    min-width: 45px;
    text-align: right;
}

.player-equalizer {
    display: flex;
    justify-content: center;
    align-items: end;
    gap: 4px;
    height: 40px;
    margin-top: 1rem;
}

.eq-bar {
    width: 4px;
    background: linear-gradient(to top, var(--accent-color), var(--primary-color));
    border-radius: 2px;
    animation: eqBounce 1.2s ease-in-out infinite alternate;
    opacity: 0.7;
}

.eq-bar:nth-child(1) { animation-delay: -0.0s; height: 10px; }
.eq-bar:nth-child(2) { animation-delay: -0.1s; height: 20px; }
.eq-bar:nth-child(3) { animation-delay: -0.2s; height: 30px; }
.eq-bar:nth-child(4) { animation-delay: -0.3s; height: 25px; }
.eq-bar:nth-child(5) { animation-delay: -0.4s; height: 15px; }

@keyframes eqBounce {
    0% { transform: scaleY(0.4); }
    100% { transform: scaleY(1); }
}

/* Player Show Info Section */
.player-show-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(230, 57, 74, 0.1), rgba(230, 57, 74, 0.05));
    border-bottom: 1px solid rgba(230, 57, 74, 0.2);
    border-radius: 0 0 12px 12px;
    margin-bottom: 1rem;
}

.player-presenter-image {
    flex-shrink: 0;
}

.player-presenter-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.player-presenter-photo:hover {
    transform: scale(1.05);
    border-color: var(--accent-color);
}

.player-presenter-photo[alt*="Logo"] {
    background: white;
    padding: 6px;
}

.player-show-details {
    flex: 1;
    min-width: 0;
}

.player-show-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.player-show-presenter {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.25rem;
}

.player-show-description {
    font-size: 0.85rem;
    color: var(--gray-color);
    line-height: 1.3;
}

/* Mini Player */
.mini-player {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--white);
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    z-index: 1500;
    width: 300px;
    animation: slideInFromBottom 0.3s ease;
}

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

.mini-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
}

.mini-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.mini-logo {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.mini-track {
    color: var(--dark-color);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mini-controls {
    display: flex;
    gap: 8px;
    align-items: center;
}

.mini-play-btn, .expand-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mini-play-btn {
    background: var(--primary-color);
    color: var(--white);
}

.expand-btn {
    background: var(--light-color);
    color: var(--gray-color);
}

.mini-play-btn:hover, .expand-btn:hover {
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding-top: 140px; /* Increased padding for more space from header */
    padding-bottom: 64px; /* Add space below to prevent content touching bottom */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('images/studio.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -1;
    transform: translateZ(0);
    will-change: transform;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: white;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: white;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.live-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.live-dot {
    width: 16px;
    height: 16px;
    background: #00ff00;
    border-radius: 50%;
    animation: fade 2.5s infinite ease-in-out;
    box-shadow: 0 0 20px #00ff00;
}

@keyframes fade {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 20px #00ff00;
    }
    50% {
        opacity: 0.3;
        box-shadow: 0 0 8px #00ff00;
    }
}

.current-show {
    text-align: center;
    color: white;
    min-height: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Hero Show Info */
.hero-show-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 600px;
    margin-bottom: 3rem; /* Add space before the end of hero section */
}

.current-show-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    color: white;
    background: rgba(0, 0, 0, 0.8);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.show-presenter-image {
    flex-shrink: 0;
}

.presenter-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.presenter-photo:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
}

/* Special styling for logo when used as presenter image */
.presenter-photo[alt*="Logo"] {
    background: white;
    padding: 8px;
}

.show-info-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    flex: 1;
    max-width: 500px;
    background: rgba(0, 0, 0, 0.6);
    padding: 1rem;
    border-radius: 10px;
}

.show-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
}

.show-presenter {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fcbf49;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.show-description {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.4;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    max-width: 500px;
    margin: 0 auto;
}

.current-track-display {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.track-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.track-info i {
    color: var(--accent-color);
    font-size: 1.2rem;
    animation: musicPulse 2s infinite ease-in-out;
}

/* Hero Show Info - More specific selectors to override conflicts */
.hero-show-info .current-show-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    color: white;
    background: rgba(0, 0, 0, 0.8) !important;
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-show-info .show-info-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    flex: 1;
    max-width: 500px;
    background: rgba(0, 0, 0, 0.6) !important;
    padding: 1rem;
    border-radius: 10px;
}

.hero-show-info .show-name {
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9) !important;
}

.hero-show-info .show-presenter {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #fcbf49 !important;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9) !important;
}

.hero-show-info .show-description {
    font-size: 1rem !important;
    color: #ffffff !important;
    font-weight: 500 !important;
    line-height: 1.4;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9) !important;
    max-width: 500px;
    margin: 0 auto;
}

.hero-show-info .current-track-display {
    text-align: center;
    padding: 1.5rem !important;
    background: rgba(0, 0, 0, 0.8) !important;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.hero-show-info .track-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #ffffff !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9) !important;
}

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

/* Coming Up Next Styles */
.coming-up-next {
    text-align: center;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.next-show-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.next-show-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.next-show-label i {
    font-size: 1rem;
    animation: clockTick 2s infinite ease-in-out;
}

.playing-now-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    margin-bottom: 0.5rem;
    justify-content: center;
}

.playing-now-label i {
    font-size: 1rem;
    animation: musicPulse 2s infinite ease-in-out;
}

.next-show-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.next-show-presenter-image {
    flex-shrink: 0;
}

.next-presenter-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.next-presenter-photo:hover {
    transform: scale(1.05);
    border-color: var(--accent-color);
}

/* Special styling for logo when used as next presenter image */
.next-presenter-photo[alt*="Logo"] {
    background: white;
    padding: 4px;
}

.next-show-time-center {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
    text-align: center;
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    white-space: nowrap;
}

.next-show-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: center;
    text-align: center;
}

.next-show-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.next-show-time {
    font-size: 0.95rem;
    font-weight: 500;
    color: #fcbf49;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

@keyframes clockTick {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(15deg);
    }
}

/* About Section */
.about {
    background: var(--light-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.05), rgba(252, 191, 73, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(230, 57, 70, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.stat {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(230, 57, 70, 0.1);
    backdrop-filter: blur(10px);
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.stat-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.stat-label {
    color: var(--gray-color);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.about-photo {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    object-fit: cover;
}

.about-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Latest News Section */
.latest-news {
    background: linear-gradient(135deg, #f8f9fc 0%, #e9ecf3 100%);
    position: relative;
}

.latest-news::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    animation: gradientShift 3s ease-in-out infinite;
}

.news-updates-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.featured-update {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.featured-update:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.featured-update .update-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}



.update-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Special styling for Kop Hill Climb image to show full content */
.update-image img[src*="kophill"] {
    object-fit: contain;
    background: #f8f9fa;
}

/* Special styling for Dung Beatles image to show full content */
.update-image img[src*="dungbeatles"] {
    object-fit: contain;
}

/* Special styling for Sue Carter image to show faces properly */
.update-image img[src*="sue-carter"] {
    object-fit: contain;
    background: #f8f9fa;
}

/* Special styling for Juanita's breakfast image to show full content */
.update-image img[src*="jhbreakfast"] {
    object-fit: contain;
    background: #f8f9fa;
}

/* Special styling for Chris Townsend's profile image to show full content */
.update-image img[src*="ChrisT"] {
    object-fit: contain;
    background: #f8f9fa;
}

.featured-update:hover .update-image img {
    transform: scale(1.05);
}

.update-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary-color), #d12a3c);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.update-content {
    padding: 2rem;
}

.update-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.update-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-color);
    font-size: 0.9rem;
}

.update-category {
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.update-content h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.update-content p {
    color: var(--gray-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}



.regular-updates {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.update-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    min-height: 180px;
}

.update-card .update-image {
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    margin-right: 1rem;
}

.update-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.update-card:hover .update-photo {
    transform: scale(1.1);
}

/* Special styling for Spotlight PNG to ensure proper fit within square card */
.update-photo[src*="spotlight/rkr-spotlight"] {
    object-fit: contain;
    background: #f8f9fa; /* subtle backdrop for transparency/letterboxing */
}

/* Ensure Eddy Smythe hero image shows the top (avoid head crop) */
.update-photo[src*="spotlight/eddy1"] {
    object-fit: contain;
    object-position: top center;
    background: #f8f9fa; /* subtle backdrop for letterboxing */
}

/* Ensure Chinnor Railway station image shows fully without cropping */
.update-photo[src*="spotlight/station"] {
    object-fit: contain;
    object-position: center;
    background: #f8f9fa; /* neutral backdrop for letterboxing */
}

/* Spacing between spotlight articles and section titles */
.section-title {
    margin-top: 28px;
}
.featured-update {
    margin-bottom: 24px;
}

.update-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.update-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #d12a3c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.update-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0.5rem;
}

.update-card .update-meta {
    margin-bottom: 0.5rem;
}

.update-card .update-date {
    font-size: 0.8rem;
    color: var(--primary-color);
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid var(--primary-color);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.update-card .update-category {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
}

/* Highlight dates in featured updates similarly */
.featured-update .update-date {
    color: var(--primary-color);
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid var(--primary-color);
    padding: 0.25rem 0.7rem;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.update-card h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.update-card p {
    color: var(--gray-color);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Featured Event Styling */
.featured-event {
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
    border: 2px solid #fb923c;
    position: relative;
    overflow: hidden;
}

.featured-event::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid #fb923c;
    border-top: 20px solid #fb923c;
    border-bottom: 20px solid transparent;
}

.featured-event::after {
    content: '★';
    position: absolute;
    top: 2px;
    right: 2px;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.event-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Remembrance Section */
.memorial-section {
    background: linear-gradient(135deg, #f8f9fc 0%, #eef2f7 100%);
    position: relative;
}

.memorial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    animation: gradientShift 3s ease-in-out infinite;
}

.memorial-quote {
    font-size: 1.1rem;
    color: var(--dark-color);
    font-style: italic;
    background: rgba(0,0,0,0.03);
    padding: 0.8rem 1rem;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .news-updates-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .update-image {
        height: 200px;
    }
    
    .update-content {
        padding: 1.5rem;
    }
    
    .update-content h3 {
        font-size: 1.3rem;
    }
    
    .update-card {
        flex-direction: column;
        text-align: center;
    }
    

}

/* Mobile overrides for Spotlight hero images and galleries */
.update-gallery .update-photo {
    object-fit: contain;
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .featured-update .update-image {
        height: 220px !important;
    }
}

/* Schedule Section */
.schedule {
    background: linear-gradient(135deg, #f8f9fc 0%, #e9ecf3 100%);
    position: relative;
    padding: 4rem 0;
}

.schedule::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

.schedule-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.schedule-day-btn {
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.schedule-day-btn.active,
.schedule-day-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.schedule-day {
    display: none;
}

.schedule-day.active {
    display: block !important;
}

/* Clean schedule container styles */
.schedule-content {
    min-height: 400px;
    background: transparent;
}

.schedule-loading {
    text-align: center; 
    padding: 3rem 2rem; 
    color: var(--gray-color);
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    border: 2px dashed rgba(230, 57, 70, 0.2);
    margin: 1rem 0;
    grid-column: 1 / -1; /* Span full width in grid */
}

/* Enhanced What's On Now Card */
.whats-on-now {
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.now-playing-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(230, 57, 70, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    color: var(--dark-color);
}

.now-playing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.now-playing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.current-time {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    background: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.current-show-info {
    text-align: center;
    color: var(--dark-color);
}

.current-show-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 700;
}

.current-show-info p {
    color: var(--gray-color);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.show-progress {
    margin: 1.5rem 0;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
    transition: width 0.3s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.show-times {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--gray-color);
    font-weight: 500;
}

.next-show {
    background: rgba(230, 57, 70, 0.1);
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    color: var(--dark-color);
}

.next-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Modern Schedule Grid Layout */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    padding: 1rem 0;
}

.show-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(220, 38, 38, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: #1f2937;
}

.show-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.show-card:hover::before {
    opacity: 1;
}

.show-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(220, 38, 38, 0.2);
}

/* Current Show Highlighting - Subtle Version */
.show-card.current-show {
    background: #fef2f2;
    border: 2px solid #dc2626;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.15);
}

.show-card.current-show::before {
    opacity: 1;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    height: 4px;
}

.show-card.current-show .show-title {
    color: #dc2626;
    font-weight: 800;
}

.show-card.current-show .show-presenter-name {
    color: #b91c1c;
}

.show-card.current-show .show-time-badge {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    text-shadow: none;
}

.show-card.current-show .show-duration {
    box-shadow: none;
    background: transparent;
    text-shadow: none;
}

.show-card.current-show .show-duration i {
    text-shadow: none;
}

.show-card.current-show .on-air-label {
    background: #10b981;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-top: 1rem;
    display: inline-block;
    width: 100%;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.show-card.current-show .on-air-label:hover {
    background: #059669;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.show-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.show-time-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    flex-shrink: 0;
}

.show-presenter-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(220, 38, 38, 0.2);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.show-presenter-avatar:hover {
    transform: scale(1.1);
    border-color: var(--primary-color);
}

.show-info {
    flex: 1;
}

.show-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    text-shadow: none;
}

.show-presenter-name {
    font-size: 1rem;
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 0.5rem;
    text-shadow: none;
}

.show-description {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-shadow: none;
}

.show-duration {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(220, 38, 38, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.show-duration i {
    font-size: 0.8rem;
}

/* Enhanced Show Cards (legacy support) */
.show {
    display: none; /* Hide old layout */
    border: 1px solid #e0e0e0;
}

.show:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    cursor: pointer;
}

.show.current-show-highlight {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(239, 68, 68, 0.05));
    border-left: 4px solid var(--primary-color);
    animation: currentShowPulse 3s infinite ease-in-out;
}

@keyframes currentShowPulse {
    0%, 100% { 
        box-shadow: 0 4px 20px rgba(220, 38, 38, 0.2);
        border-left-color: var(--primary-color);
    }
    50% { 
        box-shadow: 0 8px 30px rgba(220, 38, 38, 0.4);
        border-left-color: var(--accent-color);
    }
}

.show-time {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    min-width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 0.75rem;
    border-radius: 12px;
    border: 1px solid #dee2e6;
}

.show-time.current-time-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 0.75rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.show-details {
    flex: 1;
    color: var(--dark-color);
}

.show-details h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-size: 1.3rem;
    font-weight: 600;
}

.show-details p {
    color: var(--gray-color);
    margin: 0;
    line-height: 1.5;
}

.show-presenter {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 0.25rem;
}

.schedule-container {
    margin-top: 2rem;
}

/* Mobile Responsiveness for Schedule */
@media (max-width: 768px) {
    .now-playing-card {
        padding: 1.5rem;
        margin: 0 -1rem;
        border-radius: 12px;
    }
    
    .now-playing-header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
        margin-bottom: 1rem;
    }
    
    .current-show-info h3 {
        font-size: 1.5rem;
    }
    
    .current-show-info p {
        font-size: 1rem;
    }
    
    .show-times {
        font-size: 0.85rem;
    }
    
    .current-time {
        font-size: 1rem;
    }
    
    .next-show {
        font-size: 0.9rem;
    }
    
    .schedule-nav {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.5rem;
    }
    
    .schedule-day-btn {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .show {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .show-time {
        min-width: 100px;
        font-size: 1rem;
    }
    
    .show-details h3 {
        font-size: 1.1rem;
    }
}

/* News Section */
.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.news-category {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-color);
}

.news-header h3 {
    color: var(--primary-color);
    margin: 0;
}

.news-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 1rem 0;
}

.news-item {
    padding: 1.5rem;
    border: 1px solid var(--light-color);
    border-radius: var(--border-radius);
    background: var(--white);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.show-more-button {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: 2px dashed #ddd;
    min-height: 120px;
}

.show-more-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.show-more-btn:hover {
    background: linear-gradient(135deg, #e55a2b, #e8841a);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.show-more-btn i {
    font-size: 12px;
}

.news-item h4 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-size: 1rem;
}

.news-item p {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin: 0;
}

.news-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.news-item a:hover {
    text-decoration: underline;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.75rem;
    padding-top: 0.5rem;
    border-top: 1px solid #eee;
    font-size: 0.85rem;
}

.news-source-tag {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: capitalize;
}

.news-date {
    color: var(--gray-color);
    font-style: italic;
}

@media (max-width: 768px) {
    .news-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* News with image layout - Horizontal card design */
.news-item.with-image {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.news-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    border-radius: 8px;
    background: #f8f9fa;
    position: relative;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
}

.news-item:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Local news page specific styles - Consistent 16:9 aspect ratio */
.news-article.with-image {
    display: block;
}

.news-article .news-image {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
}

.news-article .news-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 1200px) {
    .news-items {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .news-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .news-item {
        padding: 1rem;
    }
    
    .news-image {
        height: 140px;
    }
}

@media (max-width: 600px) {
    .news-items {
        grid-template-columns: 1fr;
    }
    
    .news-image img {
        position: absolute;
        top: 0;
        left: 0;
    }
    
    .news-article .news-image {
        padding-bottom: 56.25%; /* Maintain 16:9 on mobile */
    }
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-details h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.contact-details p {
    color: var(--gray-color);
    margin: 0;
    line-height: 1.6;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--light-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-text h3 {
    margin: 0;
    color: var(--white);
}

.footer-logo-text p {
    margin: 0;
    color: var(--gray-color);
    font-size: 0.9rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--gray-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--white);
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white) !important;
    text-decoration: none;
    transition: var(--transition);
}

.social-link i {
    color: var(--white) !important;
}

.social-link:hover {
    transform: translateY(-2px);
    background: var(--secondary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
    color: var(--gray-color);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--gray-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

/* Admin link styling */
.footer-links a.admin-link {
    color: #ffd700;
    font-weight: 600;
    position: relative;
}

.footer-links a.admin-link:before {
    content: "🔐 ";
    margin-right: 4px;
}

.footer-links a.admin-link:hover {
    color: #ffed4e;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

/* Footer section links (vertical lists) */
.footer-section .footer-links {
    display: block;
}

.footer-section .footer-links li {
    margin-bottom: 0.5rem;
}

/* Animations */
.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards;
}

.animate-slide-up:nth-child(2) { animation-delay: 0.2s; }
.animate-slide-up:nth-child(3) { animation-delay: 0.4s; }
.animate-slide-up:nth-child(4) { animation-delay: 0.6s; }

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        transition: var(--transition);
        box-shadow: var(--shadow);
    }

    .nav.active {
        left: 0;
    }

    .nav-menu {
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }
    
    /* Mobile dropdown styles */
    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        border: none;
        background-color: var(--light-color);
        border-radius: 0;
        margin-left: 1rem;
        margin-top: 0.5rem;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .dropdown-content a {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .mobile-menu-btn {
        display: flex;
        margin-left: 1rem;
    }
    
    .header-actions {
        gap: 0.5rem;
    }
    
    .listen-btn,
    .listen-again-btn {
        padding: 6px 8px;
        font-size: 0.7rem;
        gap: 0.3rem;
        min-width: 90px;
        width: 90px;
        flex: 0 0 90px;
        text-align: center;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        height: 32px;
        line-height: 1;
        vertical-align: top;
    }
    
    .listen-btn i,
    .listen-again-btn i {
        font-size: 0.65rem;
        flex-shrink: 0;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero {
        min-height: 100vh;
        min-height: 100dvh; /* Dynamic viewport height for mobile browsers */
        padding-top: 100px;
        justify-content: center;
        align-items: center;
    }
    
    .hero-content {
        margin-top: 0;
        padding-top: 3rem;
        width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 200px;
        justify-content: center;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .stat {
        padding: 1rem 0.5rem;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }

    .schedule-nav {
        gap: 0.5rem;
    }

    .schedule-day-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0.5rem 0;
    }
    
    .show-card {
        padding: 1rem;
    }
    
    .show-header {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .show-time-badge {
        align-self: center;
    }
    
    .show-title {
        font-size: 1.1rem;
    }
    
    .show {
        display: none; /* Hide legacy layout */
    }

    .live-status {
        flex-direction: column;
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .mini-player {
        width: 250px;
        bottom: 10px;
        right: 10px;
    }

    .radio-player .player-content {
        width: 100%;
        height: 100%;
        padding: 1rem;
        gap: 1rem;
    }
    
    .player-header {
        max-width: 100%;
        padding: 1rem;
    }
    
    .player-show-info {
        gap: 1rem;
        max-width: 100%;
    }
    
    .player-controls-section {
        gap: 1rem;
        max-width: 100%;
        padding: 1.5rem;
    }
    
    .main-play-btn {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .volume-section {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .show-presenter-avatar {
        width: 60px;
        height: 60px;
    }

    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding-top: 90px;
        justify-content: center;
        align-items: center;
    }
    
    .hero-content {
        margin-top: 0;
        padding-top: 2rem;
        width: 100%;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .radio-player .player-content {
        width: 100%;
        height: 100%;
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .player-header {
        max-width: 100%;
        padding: 0.75rem;
    }
    
    .player-show-info {
        gap: 0.75rem;
        max-width: 100%;
    }
    
    .player-show-info .current-show-display {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .player-show-info .presenter-photo {
        width: 120px;
        height: 120px;
    }
    
    .player-show-info .show-info-text {
        padding: 0.75rem;
        text-align: center;
    }
    
    .player-show-info .current-track-display {
        padding: 1rem;
        max-width: 100%;
    }
    
    .player-controls-section {
        gap: 0.75rem;
        max-width: 100%;
        padding: 1rem;
    }
    
    .main-play-btn {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .volume-section {
        max-width: 100%;
    }
    
    .volume-control {
        padding: 0.75rem 1rem;
    }

    .mini-player {
        width: 220px;
    }

    .shows-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
    }
    
    /* Extra small screen button styles */
    .header-actions {
        gap: 0.25rem;
    }
    
    .listen-btn,
    .listen-again-btn {
        padding: 4px 6px;
        font-size: 0.65rem;
        gap: 0.25rem;
        border-radius: 4px;
        min-width: 80px;
        width: 80px;
        flex: 0 0 80px;
        text-align: center;
        justify-content: center;
        white-space: nowrap;
        align-items: center;
        overflow: hidden;
        text-overflow: ellipsis;
        height: 28px;
        line-height: 1;
        vertical-align: top;
    }
    
    .listen-btn i,
    .listen-again-btn i {
        font-size: 0.6rem;
        flex-shrink: 0;
    }
    
    /* Make buttons stack vertically on very small screens if needed */
    .header-actions {
        flex-wrap: wrap;
    }
    
    .mobile-menu-btn {
        margin-left: 0.75rem;
    }
}

/* Live Track Info Integration */
.hero-track-info {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.track-display {
    color: white;
    text-align: center;
}

.track-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--accent-color);
}

.track-artist {
    font-size: 1rem;
    opacity: 0.9;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .live-status {
        padding: 1.5rem;
        gap: 1.5rem;
        background: rgba(0, 0, 0, 0.6);
    }
    
    .live-indicator {
        font-size: 1.4rem;
        gap: 0.75rem;
        color: white;
        text-shadow: none;
    }
    
    .current-show {
        font-size: 1.4rem;
        color: white;
        text-shadow: none;
    }
    
    .hero-show-info {
        gap: 1.5rem;
    }
    
    .show-name {
        font-size: 1.6rem;
        color: white;
        text-shadow: none;
    }
    
    .show-presenter {
        font-size: 1.1rem;
        color: var(--accent-color);
        text-shadow: none;
    }
    
    .show-description {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.95);
        text-shadow: none;
    }
    
    .current-track-display {
        padding: 1rem;
        background: rgba(255, 255, 255, 0.15);
    }
    
    .track-info {
        font-size: 1.1rem;
        gap: 0.75rem;
        color: white;
        text-shadow: none;
    }
    
    .current-show-display {
        flex-direction: column;
        gap: 1rem;
    }
    
    .presenter-photo {
        width: 100px;
        height: 100px;
        border: 3px solid rgba(255, 255, 255, 0.9);
    }
    
    .player-show-info .presenter-photo {
        width: 100px;
        height: 100px;
    }
    
    .show-info-text {
        text-align: center;
    }
    
    .coming-up-next {
        padding: 0.75rem 1rem;
        margin-top: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .next-show-content {
        gap: 0.75rem;
        flex-direction: column;
    }
    
    .next-presenter-photo {
        width: 100px;
        height: 100px;
    }
    
    .next-show-time-center {
        font-size: 0.8rem;
        padding: 0.2rem 0.4rem;
        order: 1;
    }
    
    .next-show-details {
        order: 2;
    }
    
    .next-show-presenter-image {
        order: 0;
    }
    
    .next-show-label {
        font-size: 0.8rem;
    }
    
    .next-show-name {
        font-size: 1rem;
    }
    
    .now-playing-card {
        padding: 1.5rem;
    }
    
    .current-show-info h3 {
        font-size: 1.5rem;
    }
    
    .show-time {
        min-width: 100px;
        font-size: 1rem;
    }
    
    .show-details h3 {
        font-size: 1.1rem;
    }
}

/* Enhanced Schedule Integration */
.schedule-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 10px;
    padding: 0.5rem 1rem;
    margin: 0.5rem 0;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
    animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 25px rgba(230, 57, 70, 0.5);
        transform: scale(1.02);
    }
}

.show-presenter-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.presenter-name {
    font-size: 1.1rem;
    opacity: 0.9;
    color: var(--accent-color);
    font-weight: 600;
}

.show-description {
    font-size: 0.95rem;
    opacity: 0.8;
    text-align: center;
    max-width: 400px;
    line-height: 1.4;
}

/* Professional Show Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
    transform: scale(0.8) translateY(50px);
    transition: all 0.3s ease;
    border: 1px solid rgba(230, 57, 70, 0.1);
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.modal-show-image {
    flex-shrink: 0;
}

.modal-presenter-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.modal-presenter-photo[alt*="Logo"] {
    background: white;
    padding: 8px;
}

.modal-show-info {
    flex: 1;
    min-width: 0;
}

.modal-show-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: white;
    line-height: 1.2;
}

.modal-presenter-name {
    font-size: 1.1rem;
    margin: 0 0 1rem 0;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.modal-show-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.modal-show-time i {
    color: rgba(255, 255, 255, 0.9);
}

.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem;
}

.modal-description h3 {
    color: var(--dark-color);
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-description h3::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.modal-description p {
    color: var(--gray-color);
    line-height: 1.6;
    font-size: 1.1rem;
    margin: 0 0 2rem 0;
}

.modal-footer {
    border-top: 1px solid #e9ecef;
    padding-top: 1.5rem;
}

.modal-frequency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    color: var(--dark-color);
    font-weight: 600;
    border: 1px solid #dee2e6;
}

.modal-frequency i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Modal Animations */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Mobile Responsive Modal */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 1rem;
    }
    
    .modal-container {
        max-height: 90vh;
    }
    
    .modal-header {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .modal-presenter-photo {
        width: 70px;
        height: 70px;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-close-btn {
        top: 1rem;
        right: 1rem;
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .modal-header {
        padding: 1rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .modal-show-title {
        font-size: 1.3rem;
    }
    
    .modal-presenter-name {
        font-size: 1rem;
    }
}

/* Presenters Section Styles */
.presenters {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.presenters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.presenter-card {
    background: white;
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.presenter-card .presenter-image {
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.presenter-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.presenter-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.presenter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.presenter-card:hover .presenter-image img {
    transform: scale(1.05);
}

/* Placeholder image styling */
.placeholder-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 2px dashed #dee2e6;
}

.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: #6c757d;
    text-align: center;
}

.image-placeholder i {
    font-size: 2.5rem;
    opacity: 0.7;
}

.image-placeholder span {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.presenter-info {
    padding: 1.5rem;
    text-align: center;
}

.presenter-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.02em;
}

.presenter-shows {
    color: #e6394a;
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.presenter-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    display: block;
}

/* Add a subtle pattern overlay */
.presenter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(230, 57, 74, 0.02) 50%, transparent 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.presenter-card:hover::before {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .presenters-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .presenter-image {
        height: 280px;
        background-color: #f8f9fa;
    }
    
    .presenter-image img {
        object-fit: contain;
        object-position: center;
    }
    
    .presenter-info {
        padding: 1.25rem;
    }
    
    .presenter-info h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .presenter-image {
        height: 250px;
        background-color: #f8f9fa;
    }
    
    .presenter-image img {
        object-fit: contain;
        object-position: center;
    }
    
    .presenter-info {
        padding: 1rem;
    }
}

/* Animation effects */
.presenter-card {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpFade 0.6s ease forwards;
}

.presenter-card:nth-child(1) { animation-delay: 0.1s; }
.presenter-card:nth-child(2) { animation-delay: 0.2s; }
.presenter-card:nth-child(3) { animation-delay: 0.3s; }
.presenter-card:nth-child(4) { animation-delay: 0.4s; }
.presenter-card:nth-child(5) { animation-delay: 0.5s; }
.presenter-card:nth-child(6) { animation-delay: 0.6s; }
.presenter-card:nth-child(7) { animation-delay: 0.7s; }
.presenter-card:nth-child(8) { animation-delay: 0.8s; }
.presenter-card:nth-child(9) { animation-delay: 0.9s; }

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Presenters Section Styles End */

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #d12a3c);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(230, 57, 74, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #d12a3c, var(--primary-color));
    box-shadow: 0 8px 30px rgba(230, 57, 74, 0.4);
    transform: translateY(-3px);
}

.scroll-to-top:active {
    transform: translateY(0) scale(0.95);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .scroll-to-top {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        bottom: 20px;
        right: 20px;
    }
}



/* Advertising Section */
.advertising {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.advertising::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23e63946" opacity="0.1"/></svg>') repeat;
    background-size: 50px 50px;
    pointer-events: none;
}

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

.advertising-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.advertising-intro h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.advertising-intro p {
    font-size: 1.1rem;
    color: var(--gray-color);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #e2e8f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 1.5rem;
}

.feature-card h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--gray-color);
    line-height: 1.6;
}

/* Advertising Packages */
.advertising-packages {
    margin-bottom: 4rem;
}

.advertising-packages h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 3rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.package-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.package-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.package-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-bottom-left-radius: var(--border-radius);
}

.package-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.package-header h4 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
}

.package-price span {
    font-size: 1rem;
    color: var(--gray-color);
    font-weight: 400;
}

.package-features {
    padding: 1rem 2rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-features ul {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.package-features li {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    color: var(--dark-color);
}

.package-features li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 0.9rem;
}

.package-btn {
    width: calc(100% - 4rem);
    margin: 0 2rem 2rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: auto;
}

.package-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

/* Testimonials */
.advertising-testimonials {
    margin-bottom: 4rem;
}

.advertising-testimonials h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-content p {
    font-style: italic;
    color: var(--gray-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    color: var(--dark-color);
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Call to Action */
.advertising-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.advertising-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    background: var(--white);
    color: var(--primary-color);
    font-weight: 600;
    border: 2px solid var(--white);
}

.cta-buttons .btn:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.contact-info {
    margin-top: 1rem;
}

.contact-info p {
    margin: 0.5rem 0;
    font-size: 1rem;
    opacity: 0.9;
}

/* Responsive Design for Advertising */
@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
        .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .package-card.featured {
        transform: none;
    }

    .package-card.featured:hover {
        transform: translateY(-5px);
    }

    .package-card.premium {
        transform: none;
    }

    .package-card.premium:hover {
        transform: translateY(-5px);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .advertising-cta {
        padding: 2rem 1rem;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .advertising-intro h3 {
        font-size: 1.6rem;
    }
    
    .advertising-packages h3,
    .advertising-testimonials h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .feature-card {
        padding: 1.5rem;
    }
    
    .package-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .package-features {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .package-btn {
        margin: 0 1.5rem 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .advertising-intro p {
        font-size: 1rem;
    }
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 120px 0 80px;
    margin-top: 80px !important;
    text-align: center;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Overview Section */
.overview {
    background: #f8f9fa;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.overview-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #e2e8f0;
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.overview-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.overview-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.overview-card p {
    color: var(--gray-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.overview-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.overview-link:hover {
    color: var(--secondary-color);
    gap: 0.75rem;
}

.overview-link i {
    transition: var(--transition);
}

/* Responsive Design for Overview and Page Headers */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .overview-card {
        padding: 2rem 1.5rem;
    }
    
    .overview-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .overview-card {
        padding: 1.5rem;
    }
    
    .overview-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Listen Again Feature Section */
.listen-again-feature {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.listen-again-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.listen-again-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.listen-again-text {
    padding: 2rem 0;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.feature-badge i {
    font-size: 1rem;
}

.feature-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.feature-description {
    font-size: 1.1rem;
    color: var(--gray-color);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark-color);
    font-weight: 500;
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
}

.feature-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    text-decoration: none;
    align-self: flex-start;
}

.feature-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.feature-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-color);
    font-size: 0.9rem;
}

.feature-note i {
    color: var(--primary-color);
}

.listen-again-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.listen-again-preview {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    border: 1px solid #e2e8f0;
    display: none;
    position: relative;
}

.listen-again-preview.active {
    display: block;
}

.preview-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.preview-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
}

.preview-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.preview-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.preview-content {
    position: relative;
    height: 400px;
    background: #f8fafc;
}

.preview-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.preview-overlay:hover {
    background: rgba(0, 0, 0, 0.9);
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.overlay-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.overlay-content p {
    font-size: 0.9rem;
    opacity: 0.8;
}

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

.preview-footer {
    background: #f8fafc;
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e2e8f0;
    font-size: 0.9rem;
}

.preview-footer span {
    color: var(--gray-color);
    font-weight: 500;
}

.full-site-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.full-site-link:hover {
    color: var(--secondary-color);
    transform: translateX(2px);
}

.feature-btn.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin-top: 0.5rem;
}

.feature-btn.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.feature-mockup {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    border: 1px solid #e2e8f0;
}

.mockup-header {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mockup-controls {
    display: flex;
    gap: 0.5rem;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background-color: #ef4444; }
.control.yellow { background-color: #f59e0b; }
.control.green { background-color: #10b981; }

.mockup-title {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1rem;
}

.mockup-content {
    padding: 1.5rem;
}

.mockup-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tab {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-color);
    background: #f1f5f9;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.mockup-shows {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.show-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.show-item:hover {
    background: #f1f5f9;
    border-color: var(--primary-color);
}

.show-time {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    min-width: 80px;
}

.show-info {
    flex: 1;
}

.show-name {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.show-presenter {
    color: var(--gray-color);
    font-size: 0.8rem;
}

.play-icon {
    color: var(--primary-color);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-icon:hover {
    color: var(--secondary-color);
    transform: scale(1.1);
}

/* Responsive Design for Listen Again Feature */
@media (max-width: 768px) {
    .listen-again-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .feature-title {
        font-size: 2rem;
    }

    .feature-description {
        font-size: 1rem;
    }

    .feature-mockup,
    .listen-again-preview {
        max-width: 350px;
    }

    .mockup-content {
        padding: 1rem;
    }

    .preview-content {
        height: 350px;
    }

    .feature-highlights {
        align-items: center;
    }

    .highlight-item {
        justify-content: center;
    }

    .feature-actions {
        align-items: center;
        gap: 0.75rem;
    }

    .feature-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .listen-again-feature {
        padding: 60px 0;
    }

    .feature-title {
        font-size: 1.8rem;
    }

    .feature-mockup,
    .listen-again-preview {
        max-width: 300px;
    }

    .mockup-header,
    .preview-header {
        padding: 0.75rem;
    }

    .mockup-content {
        padding: 0.75rem;
    }

    .preview-content {
        height: 300px;
    }

    .show-item {
        padding: 0.5rem;
        gap: 0.75rem;
    }

    .show-time {
        min-width: 70px;
        font-size: 0.75rem;
    }

    .show-name {
        font-size: 0.85rem;
    }

    .show-presenter {
        font-size: 0.75rem;
    }

    .feature-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .preview-footer {
        padding: 0.5rem;
        font-size: 0.8rem;
    }

    .overlay-content i {
        font-size: 2.5rem;
    }

    .overlay-content h4 {
        font-size: 1rem;
    }
}

/* Presenters Page Specific Styles */
.presenters-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.presenters-intro h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.presenters-intro p {
    font-size: 1.1rem;
    color: var(--gray-color);
    line-height: 1.7;
}

/* Join Team Section */
.join-team {
    background: var(--primary-color);
    border-radius: var(--border-radius);
    padding: 3rem;
    margin-top: 4rem;
    text-align: center;
    color: var(--white);
}

.join-team-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.join-team-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.join-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.benefit i {
    font-size: 1.2rem;
    opacity: 0.9;
}

.join-team .btn {
    background: var(--white);
    color: var(--primary-color);
    font-weight: 600;
    border: 2px solid var(--white);
}

.join-team .btn:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

/* Responsive Design for Presenters Page */
@media (max-width: 768px) {
    .presenters-intro h3 {
        font-size: 1.6rem;
    }
    
    .join-team {
        padding: 2rem 1rem;
    }
    
    .join-team-content h3 {
        font-size: 1.8rem;
    }
    
    .join-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .presenters-intro p {
        font-size: 1rem;
    }
    
    .join-team-content h3 {
        font-size: 1.6rem;
    }
    
    .join-team-content p {
        font-size: 1rem;
    }
}

/* Schedule Page Specific Styles */
.schedule-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.schedule-intro h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.schedule-intro p {
    font-size: 1.1rem;
    color: var(--gray-color);
    line-height: 1.7;
}

/* Schedule Information Cards */
.schedule-info {
    margin-top: 4rem;
}

.schedule-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.info-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.info-card h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.info-card p {
    color: var(--gray-color);
    line-height: 1.6;
}

/* Schedule CTA Section */
.schedule-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    color: var(--white);
    margin-top: 3rem;
}

.schedule-cta h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.schedule-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.schedule-cta .btn {
    background: var(--white);
    color: var(--primary-color);
    font-weight: 600;
    border: 2px solid var(--white);
}

.schedule-cta .btn:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

.schedule-cta .btn.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.schedule-cta .btn.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Responsive Design for Schedule Page */
@media (max-width: 768px) {
    .schedule-intro h3 {
        font-size: 1.6rem;
    }
    
    .schedule-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .schedule-cta {
        padding: 2rem 1rem;
    }
    
    .schedule-cta h3 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .schedule-intro p {
        font-size: 1rem;
    }
    
    .info-card h4 {
        font-size: 1.1rem;
    }
    
    .info-card p {
        font-size: 0.9rem;
    }
    
    .schedule-cta h3 {
        font-size: 1.6rem;
    }
    
    .schedule-cta p {
        font-size: 1rem;
    }
}

/* News Page Styles */
.news-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.news-intro h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.news-intro p {
    font-size: 1.1rem;
    color: var(--gray-color);
    line-height: 1.7;
}

.news-features {
    margin-top: 4rem;
}

.news-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.news-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.news-cta .cta-content {
    position: relative;
    z-index: 1;
}

.news-cta h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.news-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.news-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.news-cta .btn {
    min-width: 180px;
    padding: 15px 30px;
    font-weight: 600;
}

.news-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.news-cta .btn.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--white);
    color: var(--white);
}

.news-cta .btn.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .news-intro h3 {
        font-size: 1.7rem;
    }
    
    .news-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .news-cta {
        padding: 2rem 1.5rem;
    }
    
    .news-cta h3 {
        font-size: 1.6rem;
    }
    
    .news-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .news-cta .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .news-intro p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .news-cta h3 {
        font-size: 1.4rem;
    }
    
    .news-cta p {
        font-size: 1rem;
    }
}

/* Additional Advertising Package Styles */
.package-yearly {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    font-style: italic;
}

.package-card.premium {
    border: 2px solid var(--primary-color);
    position: relative;
    transform: scale(1.02);
}

.package-card.premium:hover {
    transform: scale(1.02) translateY(-5px);
}

/* Premium Badge Styling */
.premium-badge {
    background: linear-gradient(135deg, #ffd700, #ffed4a) !important;
    color: #333 !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.additional-options {
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: var(--border-radius);
}

.additional-options h4 {
    text-align: center;
    color: var(--dark-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.option-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.option-card h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.option-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.option-card li {
    padding: 0.3rem 0;
    color: var(--dark-color);
    font-size: 0.9rem;
}

.option-card p {
    margin: 0.5rem 0;
    color: var(--dark-color);
    font-size: 0.9rem;
    line-height: 1.5;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: var(--border-radius);
}

.pricing-note p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.pricing-note a {
    color: white;
    text-decoration: underline;
}

.pricing-note a:hover {
    color: #f0f0f0;
}

/* Support Us Section Styles */
.support-us-section {
    background: #f8f9fa;
    border: 3px solid var(--primary-color);
    border-radius: 15px;
    padding: 2.5rem;
    margin: 3rem 0;
    text-align: center;
    position: relative;
}

.support-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.support-description {
    margin-bottom: 2rem;
}

.support-description p {
    font-size: 1.1rem;
    color: var(--dark-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.lottery-showcase {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0;
    gap: 2rem;
}

.lottery-logo {
    text-align: left;
}

.lottery-text {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.lottery-circles {
    display: flex;
    gap: 0.3rem;
}

.circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    color: white;
}

.circle.red { background-color: #e74c3c; }
.circle.orange { background-color: #f39c12; }
.circle.yellow { background-color: #f1c40f; color: #333; }
.circle.green { background-color: #27ae60; }
.circle.blue { background-color: #3498db; }
.circle.purple { background-color: #9b59b6; }
.circle.pink { background-color: #e91e63; }

.lottery-prize {
    flex: 1;
    max-width: 400px;
}

.prize-box {
    background: linear-gradient(135deg, #4a69bd, #3c5aa6);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.prize-box h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.prize-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.win-text {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.support-stamp {
    margin: 2rem 0;
    transform: rotate(-15deg);
    display: inline-block;
}

.stamp-content {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: 4px solid var(--primary-color);
    border-radius: 10px;
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stamp-content::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px dashed white;
    border-radius: 10px;
}

.thank-you {
    display: block;
    font-size: 1.3rem;
    line-height: 1;
}

.for-support {
    display: block;
    font-size: 1rem;
    margin-top: 0.2rem;
}

.support-button {
    margin-top: 1.5rem;
}

.lottery-btn {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lottery-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

/* Responsive Design for Support Section */
@media (max-width: 768px) {
    .support-us-section {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .support-header h2 {
        font-size: 2rem;
    }
    
    .lottery-showcase {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .lottery-logo {
        text-align: center;
    }
    
    .circle {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .prize-box {
        padding: 1.5rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .support-stamp {
        transform: rotate(-10deg);
    }
}

/* Current Advertisers Section */
.current-advertisers {
    margin-bottom: 4rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: var(--border-radius);
    border: 1px solid #e2e8f0;
}

.current-advertisers h3 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

/* Advertisers Showcase Styles */
.advertisers-showcase {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    background: #f8f9fa;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.partners-subtitle {
    text-align: center;
    color: var(--gray-color);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.advertisers-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.logo-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    position: relative;
    overflow: hidden;
}

.logo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #e63946, #d12a3c);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.logo-item:hover::before {
    transform: scaleX(1);
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #e63946;
}

.advertiser-logo {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%);
    transition: all 0.3s ease;
}

.logo-item:hover .advertiser-logo {
    transform: scale(1.05);
}

.advertisers-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    columns: 2;
    column-gap: 2rem;
}

.advertisers-list li {
    padding: 0.4rem 0;
    color: var(--dark-color);
    font-size: 1rem;
    position: relative;
    break-inside: avoid;
}

.advertisers-list li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.effective-radio-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #4a90a4, #5aa3b8);
    padding: 2rem;
    border-radius: var(--border-radius);
    color: white;
    min-width: 280px;
}

.radio-graphic {
    font-size: 3rem;
    color: white;
    opacity: 0.9;
}

.banner-text h4 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.1;
}

.banner-text .radio-red {
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.banner-text .advertising-red {
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.advertisers-note {
    text-align: center;
    margin-top: 1.5rem;
}

.advertisers-note p {
    color: var(--gray-color);
    font-size: 1.1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .advertisers-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .advertisers-list ul {
        columns: 1;
    }
    
    .effective-radio-banner {
        justify-content: center;
        text-align: center;
        min-width: auto;
    }
    
    .banner-text h4 {
        font-size: 1.5rem;
    }
    
    .radio-graphic {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .advertisers-showcase {
        padding: 1.5rem;
    }
    
    .banner-text h4 {
        font-size: 1.3rem;
    }
    
    .radio-graphic {
        font-size: 2rem;
    }
}

/* Contact Page Specific Styles */
.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-intro h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.contact-intro p {
    font-size: 1.1rem;
    color: var(--gray-color);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Options */
.contact-options {
    margin: 4rem 0;
}

.contact-options h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 3rem;
}

.contact-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-option {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact-option:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.option-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--white);
}

.contact-option h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-option p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.option-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.option-link:hover {
    color: var(--secondary-color);
}

/* Map Section */
.contact-map {
    margin: 4rem 0;
}

.contact-map h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 3rem;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.map-placeholder {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.map-content {
    text-align: center;
}

.map-content i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.map-content h4 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.map-content p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.map-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

.map-info {
    padding: 2rem;
}

.map-info h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.transport-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.transport-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.transport-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
    min-width: 20px;
}

.transport-item strong {
    color: var(--dark-color);
    display: block;
    margin-bottom: 0.25rem;
}

.transport-item p {
    color: var(--gray-color);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* FAQ Section */
.contact-faq {
    margin: 4rem 0;
}

.contact-faq h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.faq-item h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--gray-color);
    line-height: 1.6;
    margin: 0;
}

/* Enhanced Form Styling */
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
    color: var(--dark-color);
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-intro h3 {
        font-size: 1.5rem;
    }
    
    .contact-options h3,
    .contact-map h3,
    .contact-faq h3 {
        font-size: 1.5rem;
    }
    
    .contact-options-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .map-container {
        grid-template-columns: 1fr;
    }
    
    .map-placeholder {
        padding: 2rem;
        min-height: 250px;
    }
    
    .map-content i {
        font-size: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .transport-info {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-intro p {
        font-size: 1rem;
    }
    
    .contact-option {
        padding: 1.5rem;
    }
    
    .option-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .map-info {
        padding: 1.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
}


/* News Article Modal Styles */
.news-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.news-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.news-modal {
    background: var(--white);
    border-radius: 12px;
    max-width: 800px;
    max-height: 90vh;
    width: 90%;
    overflow: hidden;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.news-modal-overlay.active .news-modal {
    transform: scale(1) translateY(0);
}

.news-modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 2rem;
    position: relative;
}

.news-modal-header h2 {
    margin: 0 3rem 0.5rem 0;
    font-size: 1.8rem;
    line-height: 1.3;
}

.news-modal-meta {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    opacity: 0.9;
}

.news-modal-date,
.news-modal-category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.news-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.news-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.news-modal-body {
    padding: 2rem;
    max-height: 60vh;
    overflow-y: auto;
}

.news-modal-content {
    line-height: 1.7;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.news-modal-content h3 {
    color: var(--primary-color);
    margin: 1.5rem 0 1rem 0;
    font-size: 1.3rem;
}

.news-modal-content p {
    margin-bottom: 1.2rem;
}

.news-modal-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.news-modal-highlight {
    background: linear-gradient(135deg, #fef3c7, #fbbf24);
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--accent-color);
}

.news-modal-actions {
    padding: 1.5rem 2rem;
    background: var(--light-color);
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.news-modal-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.news-modal-btn.primary {
    background: var(--primary-color);
    color: var(--white);
}

.news-modal-btn.primary:hover {
    background: var(--secondary-color);
    transform: translateY(-1px);
}

.news-modal-btn.secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.news-modal-btn.secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Make news cards clickable */
.update-card,
.featured-update {
    transition: all 0.3s ease;
    position: relative;
}

.update-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}





@media (max-width: 768px) {
    .news-modal {
        width: 95%;
        max-height: 95vh;
    }

    .news-modal-header {
        padding: 1.5rem;
    }

    .news-modal-header h2 {
        font-size: 1.5rem;
        margin-right: 2.5rem;
    }

    .news-modal-body {
        padding: 1.5rem;
        max-height: 70vh;
    }

    .news-modal-actions {
        padding: 1rem 1.5rem;
        flex-direction: column;
    }

    .news-modal-btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .news-modal-header {
        padding: 1rem;
    }

    .news-modal-header h2 {
        font-size: 1.3rem;
    }

    .news-modal-body {
        padding: 1rem;
    }

    .news-modal-content {
        font-size: 1rem;
    }

    .news-modal-actions {
        padding: 1rem;
    }
}

/* Sponsor Shows Section */
.sponsor-shows {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.sponsor-shows::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1.5" fill="%23e63946" opacity="0.08"/></svg>') repeat;
    background-size: 60px 60px;
    animation: slowFloat 30s ease-in-out infinite;
    pointer-events: none;
}

@keyframes slowFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, -30px) rotate(180deg); }
}

.sponsor-content {
    position: relative;
    z-index: 1;
}

/* Cherry Waller Sponsor Section Styles */
.cherry-presenter-layout {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 15px;
}

.cherry-presenter-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.cherry-presenter-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.cherry-presenter-details h5 {
    margin: 0;
    font-size: 1.2em;
    color: #2c3e50;
}

.cherry-presenter-details small {
    color: #666;
}

.cherry-show-image {
    width: 180px;
    height: auto;
    border-radius: 8px;
    flex-shrink: 0;
}

.sponsor-profile {
    display: flex;
    align-items: center;
    margin: 15px 0;
    gap: 12px;
}

.sponsor-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.sponsor-details h5 {
    margin: 0;
    font-size: 1.2em;
    color: #2c3e50;
}

.sponsor-details small {
    color: #666;
}

/* Current Sponsor Spotlight */
.current-sponsor {
    margin-bottom: 4rem;
}

.sponsor-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #e63946, #d12a3c);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.sponsor-badge i {
    color: #ffd700;
}

.sponsor-spotlight {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid #e2e8f0;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
}

.sponsor-show-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.show-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e63946, #d12a3c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
}

.show-details h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.show-time {
    color: #e63946;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.show-presenter {
    color: #333333;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: none;
}

.show-description {
    color: var(--gray-color);
    font-size: 0.95rem;
}

.sponsor-info h4 {
    color: var(--dark-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.sponsor-info p {
    color: var(--gray-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.sponsor-appreciation {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e63946;
    font-weight: 600;
    background: #fef2f2;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border-left: 4px solid #e63946;
}

.sponsor-appreciation i {
    color: #ef4444;
}

/* Sponsorship Benefits */
.sponsorship-benefits {
    margin-bottom: 4rem;
}

.sponsorship-benefits h3 {
    font-size: 2rem;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.sponsor-benefit-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.sponsor-benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: #e63946;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e63946, #d12a3c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.sponsor-benefit-item h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.sponsor-benefit-item p {
    color: var(--gray-color);
    line-height: 1.6;
}

/* Available Shows */
.available-shows {
    margin-bottom: 4rem;
}

.available-shows h3 {
    font-size: 2rem;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 1rem;
}

.available-shows > p {
    text-align: center;
    color: var(--gray-color);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.available-shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.available-show {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid #e2e8f0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.available-show::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #e63946, #d12a3c);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.available-show:hover::before {
    transform: scaleX(1);
}

.available-show:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: #e63946;
}

.show-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.show-header h4 {
    color: var(--dark-color);
    font-size: 1.3rem;
    margin: 0;
    flex: 1;
    min-width: 0;
}

.available-show .show-time {
    background: #f1f5f9;
    color: #64748b;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    text-align: center;
    min-width: fit-content;
}

.available-show p {
    color: var(--gray-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.show-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.show-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.9rem;
}

.show-stats i {
    color: #e63946;
}

/* Call to Action */
.sponsor-cta {
    background: linear-gradient(135deg, #e63946, #d12a3c);
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sponsor-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23ffffff" opacity="0.1"/></svg>') repeat;
    background-size: 40px 40px;
    animation: rotate 60s linear infinite;
    pointer-events: none;
}

.sponsor-cta .cta-content {
    position: relative;
    z-index: 1;
}

.sponsor-cta h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.sponsor-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.sponsor-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.sponsor-cta .btn {
    background: white;
    color: #e63946;
    border: 2px solid white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 30px;
}

.sponsor-cta .btn:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.sponsor-cta .btn.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.sponsor-cta .btn.btn-secondary:hover {
    background: white;
    color: #e63946;
    border-color: white;
}

/* Special Guest Card Styling */
.special-guest-card {
    background: linear-gradient(135deg, #fef7cd, #fbbf24);
    border: 2px solid #f59e0b;
    position: relative;
    overflow: hidden;
}

.special-guest-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.special-guest-card .guest-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.special-guest-card .update-category {
    background: #f59e0b;
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.special-guest-card h4 {
    color: #92400e;
    font-weight: 700;
}

.special-guest-card p {
    color: #78350f;
    font-weight: 500;
}

.guest-update-note {
    background: rgba(217, 119, 6, 0.1);
    padding: 0.5rem;
    border-radius: 6px;
    margin-top: 0.75rem;
    border-left: 3px solid #f59e0b;
}

.guest-update-note small {
    color: #92400e;
    font-weight: 500;
}

.guest-update-note i {
    color: #f59e0b;
    margin-right: 0.25rem;
}

/* Show Card Guest Styling */
.show-with-guests {
    border: 2px solid #3b82f6;
    background: linear-gradient(135deg, #ffffff, #f0f9ff);
    position: relative;
}

.show-with-guests::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}

.show-with-guests:hover {
    border-color: #1d4ed8;
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.15);
}

.guest-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    margin: 0.5rem 0;
    width: fit-content;
}

.guest-indicator i {
    font-size: 0.9rem;
}

.guest-indicator span {
    white-space: nowrap;
}

/* Contact Form Spam Protection Styles */
.captcha-group {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border: 2px solid #0ea5e9;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0.75rem 0;
}

.captcha-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0c4a6e;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #0ea5e9;
    min-width: 120px;
    text-align: center;
}

.captcha-group input[type="number"] {
    width: 80px;
    padding: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    border: 2px solid #0ea5e9;
    border-radius: 8px;
    background: white;
}

.captcha-group input[type="number"]:focus {
    outline: none;
    border-color: #0284c7;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.captcha-help {
    color: #0c4a6e;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: block;
}

.form-notice {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: #92400e;
}

.form-notice i {
    color: #f59e0b;
}

.btn-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Form validation states */
.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    border-color: #dc2626;
    background-color: #fef2f2;
}

.form-group.success input,
.form-group.success textarea,
.form-group.success select {
    border-color: #16a34a;
    background-color: #f0fdf4;
}

.error-message {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.error-message i {
    font-size: 0.75rem;
}

.success-message {
    color: #16a34a;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.success-message i {
    font-size: 0.75rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sponsor-spotlight {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .sponsor-show-info {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    /* Cherry Waller mobile layout */
    .cherry-presenter-layout {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        text-align: center;
    }
    
    .cherry-presenter-info {
        justify-content: center;
        margin-top: 0;
    }
    
    .cherry-show-image {
        width: 150px;
        max-width: 100%;
    }
    
    .show-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .show-details h3 {
        font-size: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .available-shows-grid {
        grid-template-columns: 1fr;
    }
    
    .show-header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: start;
    }
    
    .show-stats {
        justify-content: center;
    }
    
    .sponsor-cta {
        padding: 2rem 1.5rem;
    }
    
    .sponsor-cta h3 {
        font-size: 1.6rem;
    }
    
    .sponsor-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .sponsor-cta .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .sponsor-spotlight {
        padding: 1.5rem;
    }
    
    .sponsor-badge {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    .sponsorship-benefits h3,
    .available-shows h3 {
        font-size: 1.6rem;
    }
    
    .sponsor-benefit-item {
        padding: 1.5rem;
    }
    
    .available-show {
        padding: 1.5rem;
    }
    
    .show-header h4 {
        font-size: 1.1rem;
    }
    
    .sponsor-cta h3 {
        font-size: 1.4rem;
    }
    
    .sponsor-cta p {
        font-size: 1rem;
    }
}

/* Privacy Policy Modal */
.privacy-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: none;
    z-index: 9999;
    animation: fadeInModal 0.3s ease;
}

.privacy-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-modal-content {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    animation: slideInFromTop 0.4s ease;
}

.privacy-modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px 20px 0 0;
}

.privacy-modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.privacy-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.privacy-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.privacy-modal-body {
    padding: 2rem;
    max-height: calc(90vh - 120px);
    overflow-y: auto;
    line-height: 1.6;
}

.privacy-section {
    margin-bottom: 2rem;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-section h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.privacy-section h4 {
    color: var(--dark-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem 0;
}

.privacy-section p {
    color: var(--gray-color);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.privacy-section p:last-child {
    margin-bottom: 0;
}

.privacy-section strong {
    color: var(--dark-color);
    font-weight: 600;
}

.privacy-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.privacy-section a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Scrollbar styling for privacy modal */
.privacy-modal-body::-webkit-scrollbar {
    width: 8px;
}

.privacy-modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.privacy-modal-body::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.privacy-modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

@media (max-width: 768px) {
    .privacy-modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .privacy-modal-header {
        padding: 1rem 1.5rem;
    }
    
    .privacy-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .privacy-modal-body {
        padding: 1.5rem;
        max-height: calc(95vh - 100px);
    }
    
    .privacy-section h3 {
        font-size: 1.2rem;
    }
    
    .privacy-section h4 {
        font-size: 1rem;
    }
    
    .privacy-section p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .privacy-modal-content {
        width: 98%;
        border-radius: 15px;
    }
    
    .privacy-modal-header {
        padding: 1rem;
        border-radius: 15px 15px 0 0;
    }
    
    .privacy-modal-header h2 {
        font-size: 1.3rem;
    }
    
    .privacy-modal-body {
        padding: 1rem;
    }
    
    .privacy-section h3 {
        font-size: 1.1rem;
    }
}

/* Chrome-specific styles to match Safari/Brave appearance */
@supports (-webkit-appearance: none) and (not (-moz-appearance: none)) {
    .hero {
        min-height: calc(100vh - 2rem);
        min-height: calc(100dvh - 2rem);
    }
    
    .coming-up-next {
        margin-bottom: 0;
    }
    
    .overview {
        padding-top: 40px;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--primary-color);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text h4 {
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
    opacity: 0.9;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cookie-accept {
    background: var(--primary-color);
    color: white;
}

.cookie-accept:hover {
    background: #c5303f;
    transform: translateY(-1px);
}

.cookie-decline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.cookie-link:hover {
    text-decoration: underline;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cookie-text h4 {
        font-size: 1.1rem;
    }
    
    .cookie-text p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 1rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
}
/* Remembrance memorial image sizing: show full image, not oversized */
.memorial-section .update-image {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.memorial-section .update-image .update-photo {
  width: 50%;
  height: auto;
  max-width: 50%;
  max-height: none;
  object-fit: contain;
}

@media (max-width: 768px) {
  .memorial-section .update-image {
    max-height: none;
  }
  .memorial-section .update-image .update-photo {
    width: 90%;
    max-width: 90%;
  }
}