.playlist-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
}

.playlist-item {
    display: flex;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
}

.playlist-cover {
    min-width: 300px;
    object-fit: cover;
    height: 200px;
}

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

.playlist-title {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
    color: #333;
}

.playlist-links .btn {
    display: inline-block;
    margin-right: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
}
.btn-spotify {
    background-color: #1DB954;
    color: #fff;
}
.btn-youtube {
    background-color: #FF3E3E;
    color: #fff;
}

@media (max-width: 768px) {
    .playlist-item {
        flex-direction: column;
    }
    .playlist-cover {
        width: 100%;
        height: auto;
    }
}
/* HERO */
.playlist-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 200px;
    display: flex;
    align-items: center;
    color: #fff;
}
.playlist-hero .hero-overlay {
    background: rgba(0,0,0,0.5);
    width: 100%;
    padding: 4rem 1rem;
}
.hero-content {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    vertical-align: middle;
}
.hero-title {
    font-size: 3rem;
    margin: 0;
}
.hero-embeds {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.embed-spotify iframe,
.embed-youtube iframe {
    border: none;
    border-radius: 8px;
}
.hero-links .btn {
    display: inline-block;
    margin: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
}
.btn-spotify { background: #1DB954; color: #fff; }
.btn-youtube { background: #FF3E3E; color: #fff; }

/* DESCRIPTION */
.playlist-description {
    padding: 2rem 1rem;
    background: #fafafa;
    color: #333;
}
.playlist-description .container {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* TAGS / TRACKLIST */
.playlist-tags {
    padding: 2rem 1rem;
    background: #fff;
}
.playlist-tags .container {
    max-width: 800px;
    margin: 0 auto;
}
.playlist-tags h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}
.tag-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}
.tag-list li {
    background: #e0e0e0;
    padding: .4rem .8rem;
    border-radius: 4px;
    font-size: .9rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .playlist-hero { min-height: 350px; }
}
.hero-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    max-width: 300px;
    margin: 0 auto;
}
.hero-links .btn {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    color: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.75rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.2s, border-color 0.2s;
}
.hero-links .btn:hover {
    background-color: #f5f5f5;
    border-color: #999999;
}
.btn-icon {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
}
.embed-spotify-playlist {
    margin-top: 1rem;
    width: 100%;
    max-width: 600px;
}
.embed-spotify-playlist iframe {
    border-radius: 8px;
}
.embed-spotify-playlist-fullwidth {
    width: 100%;
    margin: 2rem 0 0;
}
.embed-spotify-playlist-fullwidth iframe {
    width: 100%;
    height: 600px;
    border-radius: 8px;
}
.playlist-description {
    padding: 0;
}
.header-image-container {
    width: 100%;
    height: 200px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.header-image-container .header-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 100px;
}
.navbar-top {
    padding: 0;
}
.navbar-top .mod-menu .nav-item a {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin-right: 0.25rem;
    border: 1px solid #bbb;
    border-radius: 4px;
    text-decoration: none;
}
.navbar-top .mod-menu .nav-item a:hover {
    background-color: #ccc;
}
.header
{
    padding: 0;
    background-color: #aaa;
}
.navbar-top  a{
    background-color: #b89b3d;
    color: white;
}