/* ============================
   PAGE WRAPPER
   ============================ */
.release-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 50px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    color: #cbd5e1; /* soft gray instead of harsh white */
}


/* ============================
   LEFT COLUMN — COVER ART
   ============================ */
.release-art {
    width: 360px;
    flex-shrink: 0;
}

.release-cover {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(255, 0, 200, 0.25);
}


/* ============================
   RIGHT COLUMN — DETAILS
   ============================ */
.release-details {
    flex: 1;
}

.release-details h1 {
    font-size: 40px;
    margin-bottom: 10px;
    color: #ff00c8;
    text-shadow: 0 0 8px #ff00c8;
}

.release-meta h2 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #ff00c8;
}

.release-meta p {
    font-size: 18px;
    margin-bottom: 6px;
    color: #cbd5e1;
}


/* ============================
   TRACKLIST
   ============================ */
.tracklist h3 {
    font-size: 24px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #ff00c8;
}

.tracklist ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.tracklist li {
    font-size: 18px;
    margin-bottom: 6px;
    color: #cbd5e1;
}


/* ============================
   LINKS SECTION
   ============================ */
.release-links h3 {
    font-size: 24px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #ff00c8;
}

.release-links ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.release-links li {
    margin-bottom: 8px;
}

.release-links a {
    font-size: 18px;
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.2s ease;
}

.release-links a:hover {
    color: #ff00c8;
    text-shadow: 0 0 6px #ff00c8;
}


/* ============================
   RESPONSIVE (MOBILE)
   ============================ */
@media (max-width: 900px) {
    .release-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .release-art {
        width: 80%;
    }

    .release-details {
        width: 100%;
    }

    .tracklist ul,
    .release-links ul {
        padding-left: 0;
    }
}
