/* Modern Mobile Bottom Nav - Robust override */
/* Modern 3D dark mode toggle styles */
.modern-toggle {
    position: static;
    top: 1.3rem;
    padding-left: 20px;
    right: 1.2rem;
    z-index: 1000;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    outline: none;
    transition: top 0.3s, right 0.3s;
}

.toggle-track {
    background: var(--card-bg, #eaf4fb);
    border-radius: 24px;
    width: 56px;
    height: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 1.5px 4px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    position: relative;
    transition: background 0.3s;
}

.toggle-thumb {
    position: absolute;
    left: 6px;
    top: 6px;
    width: 20px;
    height: 20px;
    background: linear-gradient(145deg, #e0e0e0, #cfcfcf);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    transition: left 0.3s cubic-bezier(.4, 2, .6, 1), background 0.3s cubic-bezier(.4, 2, .6, 1), box-shadow 0.3s;
}

.modern-toggle.dark .toggle-thumb {
    left: 30px;
    background: linear-gradient(145deg, #222, #444);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
}

.toggle-icon {
    position: absolute;
    right: 8px;
    padding-bottom: 2px;
    top: 3px;
    color: var(--text-color, #223a5e);
    font-size: 1.2rem;
    pointer-events: none;
    transition: color 0.3s;
}

@media (max-width: 991px) {
    .modern-toggle {
        top: 1.2rem;
        right: 1.2rem;
    }
}

@media (max-width: 576px) {
    .modern-toggle {
        top: 0.7rem;
        right: 0.7rem;
    }
}


/* Shows Carousel Styles (Grid, Responsive) */
.shows-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2rem;
    padding: 1.5rem 0 2rem 0;
}

.show-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    min-width: 0;
}

.show-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
}

.show-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px 14px 0 0;
}

.show-info {
    padding: 1.2rem 1.2rem 1.5rem 1.2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.show-info h3 {
    font-size: 1.3rem;
    margin: 0 0 0.5rem 0;
    color: #1a1a1a;
}

.show-info p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.7rem;
}

.show-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.98rem;
    color: #888;
    margin-top: 0.2rem;
}

@media (max-width: 900px) {
    .shows-carousel {
        gap: 1rem;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .show-card img {
        height: 120px;
    }
}

@media (max-width: 600px) {
    .shows-carousel {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding-left: 0;
        padding-right: 0;
    }

    .show-card {
        min-width: 0;
        max-width: 100%;
    }

    .show-card img {
        height: 120px;
    }

    .show-info h3 {
        font-size: 1.05rem;
    }

    .show-info p {
        font-size: 0.92rem;
    }
}

/* Related Articles in Modal (Home & News) */
#relatedArticlesHome,
#relatedArticlesNews {
    margin-top: 2.5rem;
}

#relatedArticlesHome h3,
#relatedArticlesNews h3 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
}

.related-articles-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.related-article-card {
    background: #f7f7f7;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    width: 200px;
    min-width: 0;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}

.related-article-card:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.13);
    transform: translateY(-3px) scale(1.03);
}

.related-img-container {
    width: 100%;
    height: 110px;
    overflow: hidden;
}

.related-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.related-content {
    padding: 0.8rem 1rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.related-content h4 {
    font-size: 1.05rem;
    margin: 0 0 0.2rem 0;
    color: #222;
    font-weight: 600;
}

.related-date {
    font-size: 0.92rem;
    color: #888;
    margin-bottom: 0.3rem;
}

.read-more-related {
    color: #0077cc;
    font-size: 0.97rem;
    text-decoration: none;
    margin-top: 0.2rem;
    font-weight: 500;
    transition: color 0.15s;
}

.read-more-related:hover {
    color: #005fa3;
    text-decoration: underline;
}

@media (max-width: 900px) {
    .related-articles-list {
        gap: 0.7rem;
    }

    .related-article-card {
        width: 150px;
    }

    .related-img-container {
        height: 80px;
    }
}

@media (max-width: 600px) {
    .related-articles-list {
        flex-direction: column;
        gap: 0.7rem;
    }

    .related-article-card {
        width: 100%;
        min-width: 0;
    }

    .related-img-container {
        height: 120px;
    }
}

:root {
    --primary-yellow: #FFD700;
    --sky-blue: #87CEEB;
    --dark-blue: #003366;
    --light-gray: #201f1ff9;
    --dark-gray: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


html,
body {
    max-width: 100vw;
    overflow-x: hidden;
    background-color: #f5f6fa;
    color: var(--dark-gray);
    line-height: 1.6;
    padding-bottom: 70px;
    /* Space for mobile bottom nav */
}

/* Header Styles */
header {
    background:linear-gradient(rgb(0, 198, 253), rgb(83, 152, 255));
    color: white;
    padding: 1rem 2rem;
    position: fixed;
    /* <-- change this line */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.575);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .header-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0 0.5rem;
    }

    .logo {
        order: 1;
        margin-right: auto;
    }

    .dark-mode-toggle {
        order: 2;
        margin: 0 0.5rem 0 0;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: #1070ff;
    }

    .mobile-menu-toggle {
        order: 3;
        margin-left: 0;
        margin-right: 0;
        background: none;
        border: none;
        font-size: 1.7rem;
        color: #1b3358;
    }

    .desktop-nav {
        display: none;
    }
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    gap: 10px;
}

.logo-img {
    height: 40px;
    width: auto;
    border-radius: 50%;
}

/* Desktop Navigation */
.desktop-nav ul {
    display: flex;
    list-style: none;
}

.desktop-nav ul li {
    margin-left: 1.5rem;
}

.desktop-nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 0;
    position: relative;
}

.desktop-nav ul li a:hover {
    color: var(--primary-yellow);
}

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

.desktop-nav ul li a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 101;
}

/* Mobile Dropdown Navigation */
.mobile-dropdown-nav {
    display: none;
    background: var(--dark-blue);
    width: 100%;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 99;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.mobile-dropdown-nav ul {
    list-style: none;
}

.mobile-dropdown-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-dropdown-nav a {
    display: block;
    padding: 1rem 2rem;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
}

.mobile-dropdown-nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-dropdown-nav.active {
    display: block;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0.5rem 0;
    align-items: flex-end;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--dark-gray);
    font-size: 0.8rem;
    flex: 1;
    padding: 0.5rem 0;
    transition: color 0.3s;
    position: relative;
    background: none;
    border: none;
    outline: none;
}

.mobile-nav-item i {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.mobile-nav-item:hover {
    color: var(--dark-blue);
}

.mobile-nav-item.active {
    color: var(--primary-yellow);
}



/* Podcasts Section */
.podcasts-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.podcast-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    transition: transform 0.3s;
}

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

.podcast-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.podcast-info {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.podcast-info h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.podcast-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.podcast-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.podcast-date {
    font-size: 0.8rem;
    color: #999;
}

.podcast-date i {
    margin-right: 5px;
}

.listen-btn {
    color: var(--primary-yellow);
    font-weight: 500;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.listen-btn:hover {
    color: var(--dark-blue);
}

.listen-btn i {
    margin-left: 5px;
}

/* Hero Section with Integrated Player */
.hero {
    background: linear-gradient(135deg, rgba(216, 180, 254, 0.3) 0%, rgba(196, 181, 253, 0.2) 50%, rgba(233, 213, 255, 0.25) 100%);
    background-size: cover;
    background-position: center;
    min-height: 80vh; /* reduced from 80vh */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-slide {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    position: absolute !important;
    opacity: 0;
    transition: opacity 1s ease-in-out !important;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Hero Player */
.hero-player {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem auto 0;
    max-width: 500px;
    width: 100%;
}

.player-info h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: var(--primary-yellow);
}

.player-info p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.control-btn {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background-color: white;
    color: var(--dark-blue);
}

.control-btn.play-btn {
    width: 50px;
    height: 50px;
    background-color: var(--primary-yellow);
    color: var(--dark-blue);
    border: none;
}

.control-btn.play-btn:hover {
    transform: scale(1.05);
}

.btn {
    display: inline-block;
    background-color: var(--primary-yellow);
    color: var(--dark-blue);
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Content Sections */
.section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.2rem;
    display: inline-block;
    color: var(--dark-blue);
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-yellow);
}

.section-title p {
    margin-top: 1.5rem;
    color: #666;
    font-size: 1.1rem;
}

/* Shows Carousel Section */
.shows-carousel {
    margin: 0 auto;
    max-width: 1000px;
}

.show-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    margin: 0 15px;
}

.show-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.show-card img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.show-info {
    padding: 1.5rem;
}

.show-info h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.show-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.show-time {
    display: flex;
    align-items: center;
    color: var(--primary-yellow);
    font-weight: bold;
    font-size: 0.9rem;
}

.show-time i {
    margin-right: 5px;
}

/* Slick Carousel Customization */
.slick-prev:before,
.slick-next:before {
    color: var(--dark-blue);
    font-size: 1.5rem;
}

.slick-dots li button:before {
    font-size: 10px;
}

.slick-dots li.slick-active button:before {
    color: var(--primary-yellow);
}

/* News Section */
.news-section {
    background-color: #f5f6fa;
}

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

.news-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.news-img-container {
    position: relative;
    height: 180px;
    overflow: hidden;
}

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

.news-card:hover .news-img-container img {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-yellow);
    color: var(--dark-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.news-content {
    padding: 1.5rem;
}

.news-content h3 {
    margin-bottom: 0.8rem;
    color: var(--dark-blue);
}

.news-excerpt {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-date {
    color: #999;
    font-size: 0.85rem;
}

.news-date i {
    margin-right: 5px;
}

.read-more {
    color: var(--dark-blue);
    font-weight: 500;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.read-more:hover {
    color: var(--sky-blue);
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.read-more:hover i {
    transform: translateX(3px);
}

.view-all-container {
    text-align: center;
    margin-top: 3rem;
}

.view-all-btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: var(--dark-blue);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.view-all-btn:hover {
    background-color: var(--sky-blue);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Video Section */
.video-section {
    background-color: var(--dark-blue);
    color: white;
}

.video-section .section-title h2 {
    color: white;
}

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

.video-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    overflow: hidden;
    transition: transform 0.3s;
}

.video-card:hover {
    transform: scale(1.03);
}

.video-thumbnail {
    position: relative;
    height: 180px;
    width: 100%;
    overflow: hidden;
    border-radius: 22px 22px 0 0;
}

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

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 215, 0, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.video-card:hover .play-icon {
    opacity: 1;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    margin-bottom: 0.5rem;
}

.video-info p {
    color: #ccc;
    font-size: 0.9rem;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    background-color: white;
    padding: 2rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 3px solid var(--sky-blue);
}

.member-name {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--primary-yellow);
    font-weight: bold;
    margin-bottom: 1rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-social a {
    color: var(--dark-blue);
    transition: color 0.3s;
}

.member-social a:hover {
    color: var(--sky-blue);
}

/* Sponsors Section */
.sponsors-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    align-items: center;
}

.sponsor-logo {
    max-width: 180px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.sponsor-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, var(--sky-blue) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    margin-bottom: 1rem;
}

.newsletter p {
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 30px 0 0 30px;
    font-size: 1rem;
}

.newsletter-form button {
    background-color: var(--primary-yellow);
    color: var(--dark-blue);
    border: none;
    padding: 0 1.5rem;
    border-radius: 0 30px 30px 0;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: white;
}

/* Footer */
footer {
    background:linear-gradient(rgb(143, 219, 255), rgb(83, 152, 255), rgb(1, 47, 115));
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    gap: 10px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    border-radius: 50%;
}

.footer-about p {
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.footer-social a:hover {
    background-color:#b603fc;
    color: var(--dark-blue);
}

.footer-links h3 {
    color: var(--primary-white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color:#b603fc;

}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #ffffff;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-yellow);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-bottom-nav {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
    }

    .mobile-nav-item {
        font-size: 0.9rem;
    }

    .hero {
        min-height: 90vh;
        padding-top: 4rem;
        padding-bottom: 6rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-player {
        padding: 1rem;
    }

    .section {
        padding: 3rem 1rem;
    }

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

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-radius: 30px;
        margin-bottom: 10px;
    }

    .newsletter-form button {
        border-radius: 30px;
        padding: 0.8rem;
    }
}

@media (min-width: 769px) {
    .mobile-dropdown-nav {
        display: none !important;
    }

    .mobile-bottom-nav {
        display: none !important;
    }
}