.album-hero {
    background: linear-gradient(to bottom, #000, #111);
    padding: 80px 20px;
    text-align: center;
}

.album-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.album-meta {
    color: #aaa;
    font-size: 1rem;
}

.album-wrapper {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.album-main-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
}

.album-cover img {
    width: 100%;
    border-radius: 8px;
}

.album-description {
    line-height: 1.6;
    margin-bottom: 30px;
}

.album-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.album-btn {
    padding: 10px 18px;
    border: 1px solid #444;
    text-decoration: none;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.album-btn:hover {
    background: white;
    color: black;
}

.album-section {
    margin-top: 80px;
}

.tracklist-modern {
    list-style: none;
    padding: 0;
}

.tracklist-modern li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #333;
}

.duration {
    color: #888;
}

.members-modern {
    list-style: none;
    padding: 0;
}

.members-modern li {
    margin-bottom: 8px;
}

.video-section iframe {
    width: 100%;
    height: 500px;
}

@media (max-width: 900px) {
    .album-main-grid {
        grid-template-columns: 1fr;
    }

    .album-hero h1 {
        font-size: 2rem;
    }

    .video-section iframe {
        height: 300px;
    }
}
.band-photo img {
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 30px auto 0;
    border-radius: 8px;
}