*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#121212;
    color:#fff;
    font-family:'Inter',sans-serif;
    line-height:1.6;
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    max-width:100%;
    display:block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Header */

.site-header{
    background:#181818;
    border-bottom:1px solid #2a2a2a;
    position:sticky;
    top:0;
    z-index:999;
}

.header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:15px 0;
}

.logo{
    font-size:28px;
    font-weight:700;
    color:#1DB954;
}

.search-form{
    display:flex;
    width:100%;
    max-width:500px;
}

.search-form input{
    flex:1;
    padding:12px;
    border:none;
    border-radius:8px 0 0 8px;
    background:#2b2b2b;
    color:#fff;
}

.search-form button{
    border:none;
    background:#1DB954;
    color:#fff;
    padding:0 20px;
    cursor:pointer;
    border-radius:0 8px 8px 0;
}

/* Main */

.main-content{
    padding:30px 0;
}

/* Section */

.section-title{
    font-size:28px;
    margin-bottom:20px;
    font-weight:700;
}

/* Album Grid */

.album-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
    gap:25px;
}

.album-card{
    background:#181818;
    border-radius:12px;
    overflow:hidden;
    transition:.3s;
}

.album-card:hover{
    transform:translateY(-5px);
}

.album-cover{
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
}

.album-info{
    padding:15px;
}

.album-title{
    font-size:17px;
    font-weight:700;
    margin-bottom:6px;
min-height:56px;
}

.album-artist{
    color:#b3b3b3;
    font-size:14px;
}

.album-year{
    color:#777;
    font-size:13px;
}

/* Artist Grid */

.artist-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
    gap:20px;
}

.artist-card{
    background:#181818;
    border-radius:12px;
    padding:20px;
    text-align:center;
}

.artist-name{
    font-weight:700;
    font-size:18px;
}

/* Album Page */

.album-header{
    display:grid;
    grid-template-columns:300px 1fr;
    gap:30px;
    margin-bottom:40px;
}

.album-meta h1{
    font-size:38px;
    margin-bottom:15px;
}

.album-meta p{
    margin-bottom:8px;
    color:#cfcfcf;
}

/* Breadcrumb */

.breadcrumb{
    margin-bottom:25px;
    font-size:14px;
}

.breadcrumb a{
    color:#1DB954;
}

.breadcrumb span{
    color:#888;
}

/* Track Table */

.track-table{
    width:100%;
    border-collapse:collapse;
    margin-top:20px;
}

.track-table th{
    background:#181818;
    text-align:left;
    padding:15px;
}

.track-table td{
    padding:15px;
    border-bottom:1px solid #252525;
}

.track-table tr:hover{
    background:#181818;
}

/* Download Button */

.download-btn{
    display:inline-block;
    background:#1DB954;
    color:#ffffff !important;
    padding:10px 18px;
    border-radius:8px;
    font-weight:600;
    text-align:center;
    text-decoration:none;
}

.download-btn:hover{
    opacity:.9;
}

/* Related */

.related-section{
    margin-top:50px;
}

/* Search Results */

.search-results{
    display:grid;
    gap:20px;
}

.search-item{
    background:#181818;
    padding:20px;
    border-radius:10px;
}

/* Footer */

.site-footer{
    border-top:1px solid #2a2a2a;
    padding:25px 0;
    margin-top:50px;
    text-align:center;
    color:#888;
}

/* Share Buttons */

.share-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:20px;
}

.share-buttons a{
    background:#242424;
    padding:10px 15px;
    border-radius:8px;
}


/* =========================================
   MOBILE RESPONSIVE
========================================= */

.mobile-tracks{
    display:none;
}

@media screen and (max-width:768px){

    .header-inner{
        flex-direction:column;
        gap:15px;
    }

    .search-form{
        max-width:100%;
    }

    .logo{
        font-size:24px;
    }

    .album-header{
        grid-template-columns:1fr;
        gap:20px;
    }

    .album-meta h1{
        font-size:28px;
    }

    .album-cover{
        max-width:240px;
        margin:auto;
    }

    .album-grid{
        grid-template-columns:1fr 1fr;
        gap:15px;
    }

    .artist-grid{
        grid-template-columns:1fr 1fr;
        gap:15px;
    }

    .album-card{
        border-radius:10px;
    }

    .album-info{
        padding:12px;
    }

    .album-title{
        font-size:15px;
    }

    .album-artist{
        font-size:13px;
    }

    /* Hide desktop table completely */

    .track-table{
        display:none !important;
    }

    /* Show mobile cards */

    .mobile-tracks{
        display:block !important;
    }

    .section-title{
        font-size:22px;
    }

    .download-btn{
        width:100%;
        text-align:center;
    }
}

/* =========================================
   MOBILE TRACK CARDS
========================================= */

.track-card{
    background:#181818;
    border-radius:12px;
    padding:15px;
    margin-bottom:12px;
    display:flex;
    align-items:center;
    gap:15px;
    border:1px solid #242424;
}

.track-number{
    font-size:22px;
    font-weight:700;
    color:#1DB954;
    min-width:25px;
}

.track-details{
    flex:1;
}

.track-title{
    font-size:16px;
    font-weight:700;
    margin-bottom:5px;
}

.track-singer{
    color:#b3b3b3;
    font-size:14px;
    margin-bottom:5px;
}

.track-meta{
    color:#888;
    font-size:13px;
    margin-bottom:5px;
}

.track-downloads{
    color:#777;
    font-size:12px;
}

.track-action{
    min-width:100px;
}

.track-action .download-btn{
    display:block;
    text-align:center;
    padding:10px 15px;
}

/* Desktop only */

@media screen and (min-width:769px){

    .mobile-tracks{
        display:none !important;
    }

    .track-table{
        display:table !important;
    }

}

/* for top downlaods link differentiate */
.search-item h3 a{
    color:#1DB954;
    text-decoration:none;
    transition:.2s;
}

.search-item h3 a:hover{
    color:#28d760;
    text-decoration:underline;
}

/* Song links */

.track-title a{

    color:#1DB954;

    text-decoration:none;
}

.track-title a:hover{

    text-decoration:underline;
}

/* Desktop table song title link only */

.track-table td:nth-child(2) a{

    color:#1DB954;

    text-decoration:none;
}

.track-table td:nth-child(2) a:hover{

    text-decoration:underline;
}

/* Download buttons */

.download-btn,
.download-btn:visited,
.download-btn:hover,
.download-btn:active{

    display:inline-block;

    background:#1DB954;

    color:#ffffff !important;

    text-decoration:none;

    font-weight:600;

    border-radius:8px;
}

/* Related Songs */

.related-songs-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
    gap:15px;
    margin-top:20px;
}

.related-song-card{
    display:block;
    background:#181818;
    border:1px solid #242424;
    border-radius:12px;
    padding:18px;
    transition:.25s;
}

.related-song-card:hover{
    transform:translateY(-3px);
    border-color:#1DB954;
}

.related-song-title{
    color:#fff;
    font-size:16px;
    font-weight:700;
    margin-bottom:6px;
}

.related-song-artist{
    color:#999;
    font-size:14px;
}

@media(max-width:768px){

    .related-songs-grid{
        grid-template-columns:1fr;
    }

}

/* Artist Page */

.artist-description{

    margin-bottom:25px;

    color:#b3b3b3;

    font-size:15px;

    line-height:1.8;
}

.artist-stats{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    margin-bottom:40px;
}

.stat-card{

    background:#181818;

    border:1px solid #242424;

    border-radius:12px;

    padding:20px;

    min-width:180px;

    text-align:center;
}

.stat-number{

    font-size:32px;

    font-weight:700;

    color:#1DB954;
}

.stat-label{

    color:#999;

    margin-top:5px;

    font-size:14px;
}

@media(max-width:768px){

    .artist-stats{

        gap:12px;
    }

    .stat-card{

        flex:1;

        min-width:140px;
    }
}

.artist-languages{

    margin-bottom:35px;
}

.language-links{

    display:flex;

    gap:10px;

    flex-wrap:wrap;

    margin-top:12px;
}

.language-badge{

    background:#181818;

    border:1px solid #242424;

    padding:8px 14px;

    border-radius:20px;

    color:#1DB954 !important;

    transition:.2s;
}

.language-badge:hover{

    border-color:#1DB954;
}

.album-title{
    min-height:60px;
}

.artist-letter{

    margin-top:40px;

    margin-bottom:15px;

    font-size:32px;

    color:#1DB954;
}

.artist-directory-card{

    background:#181818;

    border:1px solid #242424;

    border-radius:12px;

    padding:18px;

    margin-bottom:12px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;
}

.artist-directory-name{

    font-size:18px;

    font-weight:700;
}

.artist-directory-languages{

    color:#888;

    margin-top:4px;

    font-size:14px;
}

.artist-directory-links{

    display:flex;

    flex-wrap:wrap;

    gap:8px;
}

@media(max-width:768px){

    .artist-directory-card{

        flex-direction:column;

        align-items:flex-start;
    }
}

.album-description{

    margin-bottom:25px;

    padding:18px;

    background:#181818;

    border:1px solid #242424;

    border-radius:12px;

    color:#b3b3b3;

    line-height:1.8;
}

@media(max-width:768px){

    .header-inner{
        flex-direction:column;
        align-items:stretch;
    }

    .top-header{
        flex-direction:column;
        align-items:center;
        text-align:center;
        gap:15px;
    }

    .nav-links{
        justify-content:center;
        gap:15px;
    }

    .logo{
        font-size:24px;
    }

    .search-form{
        width:100%;
        max-width:none;
    }

    .search-form input{
        width:100%;
        min-width:0;
    }

    .breadcrumb{
        line-height:1.8;
        word-break:break-word;
    }
}

body{
    overflow-x:hidden;
}

.top-header{
    display:flex;
    align-items:center;
    gap:30px;
    flex-wrap:wrap;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.nav-links a{
    white-space:nowrap;
}

.song-cover{
    width:250px;
    max-width:100%;
    border-radius:12px;
    margin-bottom:20px;
}

.footer-links{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.search-results{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.search-item{
    background:#111;
    border:1px solid #222;
    border-radius:10px;
    padding:20px;
}

.search-item h3{
    margin-bottom:10px;
}

.search-item p{
    margin:6px 0;
    line-height:1.6;
}

.logo-wrapper{
    display:flex;
    flex-direction:column;
}

.logo-tagline{
    font-size:11px;
    color:#999;
    font-style:italic;
    margin-top:2px;
}

.pagination{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    justify-content:flex-start;
    margin:40px 0;
}

.pagination a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:42px;
    height:42px;
    padding:0 14px;
    background:#181818;
    border:1px solid #333;
    border-radius:6px;
    color:#fff;
    text-decoration:none;
    font-weight:600;
}

.pagination a:hover{
    border-color:#16c45b;
    color:#16c45b;
}

.pagination a.active{
    background:#16c45b;
    border-color:#16c45b;
    color:#fff;
}

.tamil-card{
    border-left:4px solid #22c55e;
}

.telugu-card{
    border-left:4px solid #3b82f6;
}

.hindi-card{
    border-left:4px solid #f97316;
}

.malayalam-card{
    border-left:4px solid #a855f7;
}

.kannada-card{
    border-left:4px solid #ef4444;
}

.year-card{
    border-left:4px solid #eab308;
}

.album-card{
    min-height:160px;
    transition:.25s ease;
}

.album-card:hover{
    transform:translateY(-4px);
    box-shadow:0 0 20px rgba(255,255,255,.08);
}

.language-card-title{
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
}

.album-artist{
    color:#aaa;
    font-size:15px;
}

.tamil-card:hover {
    box-shadow: 0 0 20px rgba(34,197,94,.25);
}

.telugu-card:hover {
    box-shadow: 0 0 20px rgba(59,130,246,.25);
}

.hindi-card:hover {
    box-shadow: 0 0 20px rgba(249,115,22,.25);
}

.malayalam-card:hover {
    box-shadow: 0 0 20px rgba(168,85,247,.25);
}

.kannada-card:hover {
    box-shadow: 0 0 20px rgba(239,68,68,.25);
}