/* --- BASE STYLES --- */
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #121212;
    /* Deep dark background */
    color: #ffffff;
}


/*********** Logo **********/
/* Logo */

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    width: 42px;
    height: 42px;
    border-radius: 8px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.1;
}

.logo-tagline {
    color: #b3b3b3;
    font-size: 0.8rem;
}

.logo:hover .logo-title {
    color: #1DB954;
}


/* --- NAVIGATION BAR --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #000000;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .4);
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1db954;
    /* Vibrant streaming green accent */
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

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

.dropdown button,
.dropdown>a.dropdown-toggle {
    background: none;
    border: none;
    color: #b3b3b3;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.dropdown button:hover,
.dropdown>a.dropdown-toggle:hover {
    color: #ffffff;
}

.dropdown-toggle i {
    font-size: 0.75rem;
    margin-left: 4px;
    transition: transform 0.25s ease;
}

.dropdown.open>.dropdown-toggle i,
.dropdown:hover>.dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #282828;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    overflow: hidden;
    z-index: 1;
    top: 100%;
}

/* Language-level menu holds nested category submenus, so it must not
   clip their flyouts the way a plain leaf dropdown-content does */
.dropdown-content.lang-menu {
    overflow: visible;
    padding: 6px 0;
    min-width: 210px;
}

.dropdown-content a {
    color: #b3b3b3;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s, color 0.3s;
}

.dropdown-content a:hover {
    background-color: #3e3e3e;
    color: #ffffff;
}

.coming-soon {
    display: block;
    padding: 12px 16px;
    color: #9a9a9a;
    font-size: 0.9rem;
    font-style: italic;
    white-space: nowrap;
}

/* A submenu (e.g. Heroes, Singers under a language) is itself a
   .dropdown, so its content flies out to the side instead of below */
.submenu {
    display: block;
    width: 100%;
}

.submenu>.dropdown-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    white-space: nowrap;
}

.submenu>.dropdown-content {
    top: -6px;
    left: 100%;
    min-width: 180px;
}

/* --- Show the dropdown menu on hover -- only the direct child, so hovering
   a language doesn't also reveal every nested submenu at once --- */
.dropdown:hover>.dropdown-content {
    display: block;
}

/* --- SITE SEARCH --- */
.search-toggle {
    background: none;
    border: none;
    color: #b3b3b3;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    line-height: 0;
    transition: color 0.3s ease;
}

.search-toggle:hover,
.search-toggle.active {
    color: #1db954;
}

.search-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #111;
    border-bottom: 1px solid #262626;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.55);
    padding: 16px 20px;
    z-index: 1200;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.search-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-panel-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 640px;
    margin: 0 auto;
    background: #1c1c1c;
    border: 1px solid #2e2e2e;
    border-radius: 10px;
    padding: 10px 14px;
}

.search-panel-inner:focus-within {
    border-color: #1db954;
}

.search-panel-icon {
    color: #9a9a9a;
    font-size: 1rem;
}

#site-search-input {
    flex: 1;
    width: 100%;
    background: none;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 1rem;
}

#site-search-input::placeholder {
    color: #9a9a9a;
}

.search-close {
    background: none;
    border: none;
    color: #9a9a9a;
    cursor: pointer;
    font-size: 1rem;
    padding: 4px;
    line-height: 0;
}

.search-close:hover {
    color: #ffffff;
}

.search-results {
    max-width: 640px;
    margin: 10px auto 0;
    max-height: 60vh;
    overflow-y: auto;
}

.search-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.2s;
}

.search-result:hover {
    background-color: #1c1c1c;
}

.search-result-name {
    font-weight: 600;
}

.search-result-sub {
    font-size: 0.8rem;
    color: #9a9a9a;
    white-space: nowrap;
}

.search-empty {
    padding: 10px 14px;
    color: #9a9a9a;
    font-size: 0.9rem;
    text-align: center;
}

/* --- SEARCH BAR --- */
input[type="text"] {
    padding: 10px 18px;
    border-radius: 20px;
    border: 1px solid #333;
    background-color: #242424;
    color: white;
    outline: none;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus {
    border-color: #1db954;
}

input[type="text"]::placeholder {
    color: #b3b3b3;
}

/* --- HERO SECTION --- */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(180deg, #1e3264 0%, #121212 100%);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.hero h1 span {
    color: #1db954;
}

.hero p {
    color: #b3b3b3;
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 400;
}

/* Buttons */
.btn,
.btn2 {
    padding: 14px 32px;
    border-radius: 30px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin: 0 10px;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.btn {
    background-color: #1db954;
    color: black;
}

.btn:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.btn2 {
    background-color: transparent;
    color: white;
    border: 1px solid #727272;
}

.btn2:hover {
    border-color: white;
    transform: scale(1.05);
}

/* ======================================================================
   🎧 SPOTIFY PLAYLIST EMBED — WIDTH CONTROL (EDIT HERE)
   This section controls how wide the Spotify embed cards are.
   See the matching "SPOTIFY PLAYLIST EMBED — HEIGHT CONTROL" block
   further down for the iframe height (number of tracks shown).
   ====================================================================== */
.grid {
    display: grid;
    /* auto-fit: a single card fills the full width; multiple cards wrap responsively */
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 24px;
    padding: 40px;
    max-width: 1200px;
    /* Matches .artist-page-container so embeds use the full page width */
    margin: 0 auto;
}

/* --- MOBILE RESPONSIVENESS TWEAKS --- */
@media (max-width: 768px) {
    .grid {
        /* Mobile: 1 card per row */
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 20px;
    }
}
/* ==================== END WIDTH CONTROL SECTION ==================== */

.card {
    background-color: #181818;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.card:hover {
    background-color: #282828;
    transform: translateY(-8px);
}

.card h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.25rem;
    color: #ffffff;
}

/* --- PLAYLIST ROWS (description on top, embed below, 2-up grid) --- */
.playlist-rows {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
}

.playlist-row {
    display: flex;
    flex-direction: column;
    gap: 14px;
    background-color: #181818;
    border-radius: 16px;
    padding: 22px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.playlist-row:hover {
    background-color: #202020;
    transform: translateY(-4px);
}

.playlist-row .playlist-desc {
    order: 1;
}

.playlist-row .playlist-embed {
    order: 2;
    width: 100%;
}

.playlist-row .playlist-desc h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 1.15rem;
    line-height: 1.3;
}

.playlist-row .playlist-desc p {
    margin: 0;
    color: #b3b3b3;
    font-size: .92rem;
    line-height: 1.55;
}

@media (max-width: 768px) {
    .playlist-rows {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 20px;
    }

    .playlist-row {
        padding: 18px;
    }
}


/* --- ARTIST PAGE STYLES --- */
.artist-page-container {
    max-width: 1200px;
    width: 92%;
    margin: 12px auto 60px;
    padding: 0;
}

.artist-header {
    display: flex;
    align-items: center;
    gap: 40px;

    background: linear-gradient(180deg, #1c1c1c, #151515);

    border: 1px solid #2b2b2b;
    border-radius: 20px;

    padding: 45px;

    margin-bottom: 45px;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
}

.artist-cover-image {

    width: 220px;
    height: 220px;

    border-radius: 18px;

    object-fit: cover;

    border: 5px solid #1DB954;

    box-shadow: 0 12px 30px rgba(29, 185, 84, .35);

    flex-shrink: 0;
}

.artist-info {

    flex: 1;
}

.artist-info h1 {

    font-size: clamp(2.4rem, 5vw, 4rem);

    color: #fff;

    margin-bottom: 18px;

    line-height: 1.1;
}


.artist-info p {

    color: #b3b3b3;

    font-size: 1.2rem;

    line-height: 1.8;

    max-width: 700px;
}


.artist-playlists h2 {

    color: #fff;

    font-size: 2rem;

    margin-bottom: 25px;

    padding-bottom: 12px;

    border-bottom: 2px solid #2b2b2b;
}


/* Mobile Responsiveness */
/* Mobile */

@media (max-width:768px) {

    .artist-page-container {

        width: 95%;

        margin: 15px auto 40px;
    }

    .artist-header {

        flex-direction: column;

        text-align: center;

        gap: 25px;

        padding: 30px 20px;
    }

    .artist-cover-image {

        width: 170px;
        height: 170px;
    }

    .artist-info h1 {

        font-size: 2.6rem;
    }

    .artist-info p {

        font-size: 1.08rem;
    }
}


/* ======================================================================
   🎧 SPOTIFY PLAYLIST EMBED — HEIGHT CONTROL (EDIT HERE)
   Height controls how many tracks are visible before scrolling inside
   the embed. Roughly: 380px ≈ 3 tracks, 440px ≈ 4 tracks, 580px ≈ 5.
   Width comes from the ".grid" rule above (search "WIDTH CONTROL").
   ====================================================================== */
.card iframe {
    width: 100%;
    height: 440px;
    /* 440px shows about 4 tracks before the embed scrolls */
    border: none;
    background-color: transparent;
    display: block;
    margin-top: 15px;
    /* This prevents the iframe from showing a white background before loading */
    background: #181818;
}
/* ==================== END HEIGHT CONTROL SECTION ==================== */

/* --- MOBILE RESPONSIVENESS TWEAKS --- */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 2.2rem;
        /* Shrinks the hero text so it doesn't break lines */
    }

    .grid {
        padding: 15px;
        /* Less padding on mobile to use more screen width */
        gap: 15px;
    }

    .card {
        padding: 15px;
        /* Compact cards for small screens */
    }

    .card iframe {
        height: 440px;
        /* Same 440px as desktop — keeps ~4 tracks visible on phones too */
    }
}

/* 1. Set up the body to push the footer down */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /* Takes full height of the viewport */
    margin: 0;
    background-color: #121212;
    /* Matches your dark theme */
    color: #ffffff;
}

/* 2. Allow the main section to grow and take up empty space */
main,
.directory-container,
.artist-page-container {
    flex: 1;
    padding-top: 15px;
}

/* Homepage hero sits flush under the sticky nav — no gap needed here */
main.home-main {
    padding-top: 0;
}


.menu-toggle,
.close-menu {
    display: none;
}

/* Mobile Navbar*/

@media (max-width:768px) {

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

    .logo img {
        width: 42px;
        height: 42px;
    }

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

    .logo-tagline {
        font-size: .82rem;
    }

    .menu-toggle {

        display: block;
        background: none;
        border: none;
        color: #fff;
        font-size: 34px;
        cursor: pointer;
    }

    .search-panel {
        padding: 14px 16px;
    }

    .search-panel-inner {
        padding: 9px 12px;
    }

    .search-result {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }

    .nav-links {

        position: fixed;

        top: 0;
        right: -100%;

        width: 280px;
        max-width: 85vw;
        height: 100vh;

        background: #111;

        display: flex;
        flex-direction: column;

        padding: 25px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;

        transition: .35s;

        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    /* Dimmed backdrop behind the slide-in mobile menu */
    .nav-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .55);
        z-index: 999;
    }

    .nav-backdrop.active {
        display: block;
    }

    .close-menu {

        display: block;

        align-self: flex-end;

        background: none;

        border: none;

        color: white;

        font-size: 28px;

        margin-bottom: 20px;

        cursor: pointer;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown button,
    .dropdown>a.dropdown-toggle {

        width: 100%;

        display: flex;

        align-items: center;

        justify-content: space-between;

        text-align: left;

        font-size: 18px;

        padding: 15px 0;

        background: none;

        border: none;

        color: white;

        text-decoration: none;
    }

    .dropdown-content {

        position: static;

        display: none;

        background: #1b1b1b;

        margin-bottom: 10px;

        border-radius: 8px;
    }

    /* Nested submenu content (e.g. names under Heroes) sits indented
   below its category row instead of flying out sideways */
    .submenu>.dropdown-content {

        margin-left: 16px;

        margin-bottom: 6px;
    }

    .submenu>.dropdown-toggle {

        font-size: 16px;

        padding: 12px 0;
    }

    .coming-soon {

        padding: 10px 18px;
    }

    /* On touch devices :hover is unreliable, so open/close is driven by
   the .open class toggled via JS on tap of the dropdown button */
    .dropdown.open>.dropdown-content {

        display: block;
    }

    .dropdown-content a {

        padding: 12px 18px;

        display: block;
    }
}

/* Breadcrumb */

.breadcrumb {
    margin: 10px 0 20px;
    padding: 12px 18px;
    background: #181818;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: #b3b3b3;
    text-decoration: none;

    transition: .3s;
}

.breadcrumb a:hover {
    color: #1DB954;
}

.breadcrumb span {
    color: #888;
}

.breadcrumb .current {
    color: #ffffff;
    font-weight: 600;
}


/* Telugu Heroes Index Page */
.hero-search {

    display: block;

    width: 100%;

    box-sizing: border-box;

    padding: 12px 18px;

    font-size: 0.95rem;

    margin: 10px 0 20px;

    border: 1px solid #1DB954;

    border-radius: 12px;

    background: #181818;

    color: white;

}

.hero-search::placeholder {

    color: #b3b3b3;

}

.hero-search:focus {

    outline: none;

    border-color: #1DB954;

    background: #1f1f1f;

}

.hero-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

    gap: 20px;


}

.hero-card {

    background: #181818;

    padding: 25px;

    border-radius: 15px;

    text-align: center;

    text-decoration: none;

    transition: .3s;

    border: 1px solid #282828;

    min-width: 0;

    overflow-wrap: break-word;

    word-break: break-word;

}

@media (max-width: 768px) {

    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
        gap:10px;
    }

}

.hero-card:hover {

    transform: translateY(-8px);

    border-color: #1DB954;

}

.hero-card img {

    width: 120px;

    height: 120px;

    border-radius: 14px;

    object-fit: cover;

    margin-bottom: 6px;

    border: 3px solid #1DB954;

}

.hero-card h3 {

    color: white;

    margin-bottom: 6px;

}

.hero-card p {

    color: #b3b3b3;

}


/* Category preview rows (homepage-style sections with a View All link) */
.playlist-section {
    margin-bottom: 50px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 12px;
}

.section-header h2 {
    margin: 0;
}

.view-all-btn {
    padding: 8px 20px;
    border-radius: 20px;
    border: 1px solid #727272;
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.view-all-btn:hover {
    border-color: #1DB954;
    color: #1DB954;
    transform: scale(1.05);
}

@media (max-width: 480px) {

    .section-header {
        flex-wrap: wrap;
    }

    .section-header h2 {
        font-size: 1.3rem;
    }

    .view-all-btn {
        padding: 6px 16px;
        font-size: 0.8rem;
    }

}

/* Telugu Index Page */
.category-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));

    gap: 25px;

    margin-top: 30px;

}

.category-card {

    background: #181818;

    padding: 35px 20px;

    border-radius: 15px;

    text-align: center;

    text-decoration: none;

    border: 1px solid #282828;

    transition: .3s;

    min-width: 0;

    overflow-wrap: break-word;

    word-break: break-word;

}

.category-card:hover {

    transform: translateY(-8px);

    border-color: #1DB954;

}

.category-card {

    font-size: 18px;

}

.category-card h3 {

    margin: 15px 0 10px;

    color: white;

}

.category-card p {

    color: #b3b3b3;

    font-size: 15px;

}

@media (max-width: 768px) {

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        margin-top: 20px;
    }

    .category-card {
        padding: 22px 12px;
        font-size: 15px;
    }

}

@media (max-width: 420px) {

    .category-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .category-card {
        padding: 20px 16px;
        font-size: 16px;
    }

}


/* FOLLOW SECTION 

.follow-section {

    margin: 90px auto;

    max-width: 1200px;

    padding: 0 20px;

}

.follow-header {

    text-align: center;

    margin-bottom: 40px;

}

.follow-header h2 {

    color: #fff;

    font-size: 2.3rem;

    margin-bottom: 15px;

}

.follow-header p {

    color: #b3b3b3;

    max-width: 650px;

    margin: auto;

    line-height: 1.8;

}

.follow-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

    gap: 25px;

}

.follow-card {

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 29px;

    background: #181818;

    border-radius: 18px;

    text-decoration: none;

    border: 1px solid #2a2a2a;

    transition: .3s;

}

.follow-card:hover {

    transform: translateY(-8px);

    border-color: #1DB954;

    box-shadow: 0 12px 25px rgba(0, 0, 0, .35);

}

.follow-card img {

    width: 60px;

    height: 60px;

}

.follow-card h3 {

    color: #fff;

    margin-bottom: 6px;

}

.follow-card p {

    color: #b3b3b3;

    margin: 0;

} */
/* COMMUNITY SECTION */
.community-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 50px;
    background: #181818;
    border: 1px solid #2b2b2b;
    border-radius: 22px;
    text-align: center;
}

.community-section h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.community-subtitle {
    max-width: 700px;
    margin: 0 auto 45px;
    color: #b3b3b3;
    line-height: 1.8;
    font-size: 18px;
}

/* Statistics */

.community-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 45px;
}

.community-card {
    background: #242424;
    border-radius: 18px;
    padding: 35px 25px;
    transition: .3s;
}

.community-card:hover {
    transform: translateY(-6px);
    border: 1px solid #1DB954;
}

.stat-number {
    color: #1DB954;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.stat-icon {
    font-size: 42px;
    color: #1DB954;
    margin: 15px 0;
}

.stat-title {
    color: #fff;
    font-size: 1.2rem;
}

/* Buttons */

.follow-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.platform-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    width: 260px;
    height: 60px;

    background: #1DB954;
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;

    transition: .3s;
}

.platform-btn i {
    font-size: 24px;
}

.platform-btn:hover {
    transform: translateY(-4px);
    background: #1ed760;
}

.platform-btn img {
    width: 28px;
    height: 28px;
}

.spotify {
    background: #1DB954;
}

.amazon {
    background: #00A8E1;
}

.youtube {
    background: #FF0000;
}

.spotify:hover {
    background: #1ed760;
}

.amazon:hover {
    background: #12b7ee;
}

.youtube:hover {
    background: #ff1a1a;
}

/* Responsive */

@media(max-width:900px) {

    .community-stats {
        grid-template-columns: 1fr;
    }

    .follow-buttons {
        flex-direction: column;
        align-items: center;
    }

    .platform-btn {
        width: 100%;
        max-width: 320px;
    }

}



/* 3. Style and center the footer 
/* ================= FOOTER ================= */

.footer {

    background: #111;

    border-top: 1px solid #262626;

    padding: 35px 20px 25px;

    margin-top: 60px;

    text-align: center;

}

/* Brand */

.footer-brand h2 {

    color: #fff;

    font-size: 32px;

    margin: 0;

    font-weight: 700;

}

.footer-brand p {

    color: #9e9e9e;

    font-size: 15px;

    margin: 8px auto 22px;

    max-width: 550px;

    line-height: 1.6;

}

/* Links */

.footer-links {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 22px;

    margin-bottom: 22px;

}

.footer-links a {

    color: #b3b3b3;

    text-decoration: none;

    font-size: 15px;

    transition: .25s;

}

.footer-links a:hover {

    color: #1DB954;

}

/* Social */

.footer-social {

    display: flex;

    justify-content: center;

    gap: 18px;

    margin-bottom: 22px;

}

.footer-social a {

    width: 42px;

    height: 42px;

    border-radius: 50%;

    background: #1d1d1d;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #b3b3b3;

    font-size: 20px;

    transition: .25s;

}

.footer-social a:hover {

    transform: translateY(-3px);

}

/* Platform colours */

.footer-social .bi-spotify:hover {

    color: #1DB954;

}

.footer-social .bi-youtube:hover {

    color: #FF0000;

}

.footer-social .bi-whatsapp:hover {

    color: #25D366;

}

.footer-social .bi-music-note-beamed:hover {

    color: #00A8E1;

}

/* Copyright */

.footer-bottom {

    border-top: 1px solid #222;

    padding-top: 18px;

    color: #777;

    font-size: 14px;

    line-height: 1.6;

}

.footer-heart {

    display: inline-block;

    animation: footer-heart-beat 1.4s ease-in-out infinite;

}

@keyframes footer-heart-beat {

    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

}


.bi-spotify:hover {
    color: #1DB954;
}

.bi-youtube:hover {
    color: #FF0000;
}

.bi-whatsapp:hover {
    color: #25D366;
}

.bi-music-note-beamed:hover {
    color: #00A8E1;
}

/* About Page*/
.page-container {

    max-width: 1100px;

    margin: 0 auto;

    padding: 60px 30px;

}

.about-section,
.mission-section,
.features-section,
.stats-section {

    margin-bottom: 60px;

}

.page-container h1,
.page-container h2 {

    color: #fff;

    margin-bottom: 20px;

}

.page-container p {

    color: #b3b3b3;

    line-height: 1.8;

    font-size: 18px;

}

.lead {

    font-size: 20px;

}

.feature-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

    gap: 25px;

    margin-top: 30px;

}

.feature-card {

    background: #181818;

    border: 1px solid #282828;

    border-radius: 14px;

    padding: 30px;

    text-align: center;

    transition: .3s;

}

.feature-card:hover {

    transform: translateY(-6px);

    border-color: #1DB954;

}

.feature-card h3 {

    color: #fff;

    margin: 15px 0;

}

.feature-card p {

    font-size: 15px;

}

.stats-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

    gap: 25px;

    margin-top: 30px;

}

.stat-card {

    background: #181818;

    border-radius: 14px;

    padding: 35px;

    text-align: center;

    border: 1px solid #282828;

}

.stat-card span {

    color: #1DB954;

    font-size: 42px;

    font-weight: 700;

}

.stat-card p {

    color: #fff;

    margin-top: 10px;

    font-size: 18px;

}



/* ================= CONTACT PAGE ================= */

.contact-container {

    max-width: 850px;

    margin: 70px auto;

    padding: 20px;

}

.contact-card {

    background: #181818;

    border: 1px solid #2b2b2b;

    border-radius: 18px;

    padding: 45px;

}

.contact-card h1 {

    color: #fff;

    text-align: center;

    margin-bottom: 20px;

}

.contact-intro {

    text-align: center;

    color: #b3b3b3;

    line-height: 1.8;

    font-size: 18px;

    margin-bottom: 45px;

}

/* Contact Box */

.contact-box {

    display: flex;

    align-items: center;

    gap: 25px;

    background: #222;

    border-radius: 16px;

    padding: 25px;

    margin-bottom: 25px;

    transition: .3s;

    border: 1px solid transparent;

}

.contact-box:hover {

    border-color: #1DB954;

    transform: translateY(-3px);

}

/* Icon */

.contact-icon {

    width: 70px;

    height: 70px;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 32px;

    color: #fff;

}

.email {

    background: #3b82f6;

}

.whatsapp {

    background: #25D366;

}

/* Text */

.contact-info h3 {

    color: #fff;

    margin-bottom: 8px;

}

.contact-info p {

    color: #b3b3b3;

    margin-bottom: 18px;

}

/* Buttons */

.contact-btn {

    display: inline-block;

    background: #3b82f6;

    color: #fff;

    padding: 10px 22px;

    border-radius: 30px;

    text-decoration: none;

    font-weight: 600;

    transition: .3s;

}

.contact-btn:hover {

    opacity: .9;

}

.whatsapp-btn {

    background: #25D366;

}

/* Mobile */

@media(max-width:768px) {

    .contact-box {

        flex-direction: column;

        text-align: center;

    }

}

/* ==========================
   LEGAL PAGES
========================== */

.legal-container {
    max-width: 900px;
    margin: 40px auto 60px;
    padding: 0 20px;
}

.legal-card {
    background: #181818;
    border: 1px solid #2a2a2a;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .25);
}

.legal-card h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.legal-card h2 {
    color: #fff;
    font-size: 1.4rem;
    margin-top: 35px;
    margin-bottom: 12px;
}

.legal-card p,
.legal-card li {
    color: #b3b3b3;
    line-height: 1.8;
    font-size: 1.05rem;
}

.legal-card ul {
    margin-left: 22px;
    margin-bottom: 20px;
}

.legal-card strong {
    color: #fff;
}

.legal-card a {
    color: #fff;
    text-decoration: none;
}

.legal-card a:hover {
    text-decoration: underline;
}

/* Mobile */

@media(max-width:768px) {

    .legal-container {
        width: 95%;
        margin: 20px auto 40px;
        padding: 0;
    }

    .legal-card {
        padding: 25px;
        border-radius: 14px;
    }

    .legal-card h1 {
        font-size: 2rem;
    }

    .legal-card h2 {
        font-size: 1.25rem;
    }

    .legal-card p,
    .legal-card li {
        font-size: 1rem;
    }
}

/* ==============================
   Coming Soon
============================== */

.coming-container {
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

.coming-card {

    width: 100%;
    max-width: 720px;

    background: #181818;
    border: 1px solid #2b2b2b;
    border-radius: 24px;

    padding: 60px 40px;

    text-align: center;

    box-shadow:
        0 10px 40px rgba(0, 0, 0, .45);

}

.music-icon {

    width: 90px;
    height: 90px;

    margin: auto;

    border-radius: 50%;

    background: linear-gradient(135deg, #1DB954, #13d86a);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 42px;
    color: #fff;

    box-shadow: 0 0 35px rgba(29, 185, 84, .45);

}

.status-badge {

    display: inline-block;

    margin-top: 30px;

    padding: 8px 18px;

    border-radius: 50px;

    background: #1DB95422;
    color: #1DB954;

    font-weight: 700;
    font-size: .95rem;

}

.coming-card h1 {

    margin-top: 22px;

    color: #fff;

    font-size: 2.5rem;
    line-height: 1.2;

}

.coming-card p {

    margin: 25px auto 35px;

    max-width: 540px;

    color: #b3b3b3;

    font-size: 1.15rem;
    line-height: 1.8;

}

/* Equalizer */
.loading-bars {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 8px;
    height: 40px;
    /* Fixed container height */
    margin: 30px 0;
}

.loading-bars span {
    width: 8px;
    height: 28px;
    /* Fixed height */
    background: #1DB954;
    border-radius: 10px;
    transform-origin: bottom;
    animation: musicBars 1s ease-in-out infinite;
}

.loading-bars span:nth-child(2) {
    animation-delay: .15s;
}

.loading-bars span:nth-child(3) {
    animation-delay: .3s;
}

.loading-bars span:nth-child(4) {
    animation-delay: .45s;
}

@keyframes musicBars {

    0%,
    100% {
        transform: scaleY(.4);
    }

    50% {
        transform: scaleY(1);
    }
}

.home-btn {

    display: inline-flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;

    background: #1DB954;
    color: #fff;

    padding: 15px 34px;

    border-radius: 50px;

    font-size: 1rem;
    font-weight: 700;

    transition: .3s;

}

.home-btn:hover {

    background: #19a84c;

    transform: translateY(-3px);

    box-shadow: 0 10px 25px rgba(29, 185, 84, .4);

}

@media(max-width:768px) {

    .coming-card {

        padding: 45px 25px;

    }

    .coming-card h1 {

        font-size: 2rem;

    }

    .coming-card p {

        font-size: 1rem;

    }

}


/**** Page Related Artists *****/

.related-artists {
    margin-top: 60px;
}

.related-artists h2 {
    margin-bottom: 25px;
    font-size: 2rem;
    color: #fff;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 20px;
}

.related-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    transition: .3s;
    border: 1px solid #e5e5e5;
    min-width: 0;
}

.related-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.related-card h3 {
    margin: 0;
    padding: 14px 10px;
    text-align: center;
    font-size: 1rem;
    color: #111;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}


@media (max-width:768px) {

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

}

/**** End of Related Artists *****/


/***** Page Related Categories *******/

.explore-section {
    margin-top: 60px;
}

.explore-section h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 25px;
    border-bottom: 2px solid #282828;
    padding-bottom: 10px;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
}

.explore-card {
    background: #181818;
    border: 1px solid #2a2a2a;
    border-radius: 14px;
    padding: 22px 18px;
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.25s ease;
}

.explore-text h3 {
    margin: 0;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
}

.explore-text span {
    display: block;
    margin-top: 4px;
    color: #9ca3af;
    font-size: 0.85rem;
}

.explore-card i {
    font-size: 1.6rem;
    color: #1DB954;
}

.explore-card span {
    font-size: 1rem;
    font-weight: 600;
}

.explore-card:hover {
    transform: translateY(-5px);
    border-color: #1DB954;
    box-shadow: 0 8px 25px rgba(29, 185, 84, .25);
}

@media (max-width:768px) {

    .explore-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .explore-card {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 18px 12px;
    }

    .explore-card i {
        font-size: 2rem;
    }
}

/***** End of Related Categories *******/

/*******  404  ********/
.error-page {
    min-height: calc(100vh - 220px);
    /* Header + Footer */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.error-card {
    max-width: 650px;
    width: 100%;
    background: #181818;
    border: 1px solid #2b2b2b;
    border-radius: 18px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .4);
}

.error-icon {
    font-size: 80px;
    color: #1DB954;
    margin-bottom: 25px;
}

.error-card h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
}

.error-card p {
    color: #b3b3b3;
    font-size: 1.15rem;
    line-height: 1.8;
}

.sub-text {
    margin-top: 15px;
    margin-bottom: 35px;
}

/*******   End of 404  ******/


/* --- EXPLORE BY LANGUAGE --- */
.language-section {
    padding: 64px 34px 28px;
    background: #101010;
}

.language-section-inner {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.section-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 28px;
    margin-bottom: 26px;
}

.section-kicker {
    margin: 0 0 7px;
    color: #67e78f;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.section-heading-row h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.section-intro {
    max-width: 470px;
    margin: 0;
    color: #a9a9a9;
    line-height: 1.65;
}

.language-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.language-card {
    position: relative;
    min-height: 150px;
    padding: 25px 20px 20px;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    background: linear-gradient(145deg, #102a1d, #082019);
    border: 1px solid #284236;
    border-radius: 16px;
    transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.language-card:hover {
    transform: translateY(-5px);
    border-color: #1db954;
    background: linear-gradient(145deg, #143524, #09251c);
}

.language-count {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 12px;
    color: #6fec96;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.language-card h3 {
    position: relative;
    z-index: 1;
    max-width: 92%;
    margin: 0 0 10px;
    color: #fff;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    line-height: 1.15;
}

.language-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #aeb8b2;
    font-size: .78rem;
    line-height: 1.45;
}

.language-card>i {
    position: absolute;
    top: 22px;
    right: 14px;
    color: rgba(120, 200, 150, .09);
    font-size: 4.4rem;
}

@media (max-width: 980px) {
    .language-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .language-section {
        padding: 46px 18px 20px;
    }

    .section-heading-row {
        display: block;
    }

    .section-intro {
        margin-top: 12px;
    }

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

    .language-card {
        min-height: 138px;
    }
}
