*{
    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{
    width:95%;
    max-width:1400px;
    margin:auto;
}

/* 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;
}

.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:#fff;
    padding:10px 18px;
    border-radius:8px;
    font-weight:600;
}

/* 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 */

@media(max-width:768px){

    .header-inner{
        flex-direction:column;
    }

    .search-form{
        max-width:100%;
    }

    .album-header{
        grid-template-columns:1fr;
    }

    .album-meta h1{
        font-size:28px;
    }

    .track-table{
        display:block;
        overflow-x:auto;
    }
}

.download-btn{
    display:inline-block;
    background:#1DB954;
    color:#fff;
    padding:8px 15px;
    border-radius:6px;
    font-size:14px;
    font-weight:600;
}

.download-btn:hover{
    opacity:.9;
}