/* ========================================
   MUSIC.CSS - PAGE-SPECIFIC STYLES ONLY
   All common/uniform styles moved to base.css
   ======================================== */
@import "base.css";

/* ========================
   ALBUM PAGE AMAZON BUY BUTTON - FORCED BLACK
   ======================== */
.album-page .album-actions .btn.btn-outline-dark,
.album-page .album-actions a.btn.btn-outline-dark,
.album-page .album-actions .amazon-btn,
.album-page .album-actions .buy-btn {
    background-color: #212529 !important;
    color: #fff !important;
    border-color: #212529 !important;
    min-width: 160px !important;
    padding: 0.65rem 1.75rem !important;
}
.album-page .album-actions .btn.btn-outline-dark:hover,
.album-page .album-actions a.btn.btn-outline-dark:hover,
.album-page .album-actions .amazon-btn:hover,
.album-page .album-actions .buy-btn:hover {
    background-color: #ff9900 !important;
    color: #fff !important;
    border-color: #ff9900 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25) !important;
}

/* ========================
   SIDEBAR HEADER TOPS - MATCH CONTACT PAGE
   ======================== */
.artist-page .col-lg-4 .content-card h2,
.album-page .col-lg-4 .content-card h2,
.label-page .col-lg-4 .content-card h2,
.artist-page .col-lg-4 .card-header,
.album-page .col-lg-4 .card-header,
.label-page .col-lg-4 .card-header {
    background-color: #212529 !important;
    color: #fff !important;
    padding: 1rem 1.25rem !important;
    margin-bottom: 0 !important;
    border-bottom: 1px solid #343a40 !important;
    font-size: 1.125rem !important;
    font-weight: 600 !important;
}

/* Sidebar cards stay light like Contact page */
.artist-page .col-lg-4 .content-card,
.album-page .col-lg-4 .content-card,
.label-page .col-lg-4 .content-card,
.artist-page .col-lg-4 .card,
.album-page .col-lg-4 .card,
.label-page .col-lg-4 .card {
    background: #fff !important;
    border: 0 !important;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
    border-radius: 0.5rem !important;
}

/* ========================
   1. MUSIC PAGE LAYOUT + FEATURED CAROUSEL
   ======================== */
.music-page .container {
    max-width: 1140px;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
}
.featured-carousel {
    margin-bottom: 3rem;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}
.featured-carousel .carousel-item {
    height: 500px;
    opacity: 0;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    transition: opacity 0.6s ease-in-out;
}
.featured-carousel .carousel-item.active {
    opacity: 1;
    position: relative;
}
.featured-carousel .carousel-inner {
    position: relative;
    overflow: hidden;
}
.featured-carousel .card {
    height: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    position: relative;
}
.featured-carousel .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}
.featured-carousel .card-img-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.4) 100%);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.featured-carousel .carousel-content {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}
.featured-carousel h3 {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.featured-carousel h4 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
.featured-carousel .btn {
    font-size: 1.1rem;
    padding: 0.65rem 2rem;
}
.contest-page .btn-outline-light {
    transition: all 0.3s ease;
}
.featured-carousel .carousel-control-prev,
.featured-carousel .carousel-control-next {
    width: 10%;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.featured-carousel:hover .carousel-control-prev,
.featured-carousel:hover .carousel-control-next {
    opacity: 0.8;
}
.featured-carousel .carousel-control-prev-icon,
.featured-carousel .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}
/* Carousel Fade */
.featured-carousel .carousel.carousel-fade .carousel-item {
    opacity: 0;
    transition-duration: .6s;
    transition-property: opacity;
}
.featured-carousel .carousel.carousel-fade .carousel-item.active,
.featured-carousel .carousel.carousel-fade .carousel-item-next.carousel-item-start,
.featured-carousel .carousel.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
}
/* News & Interview */
.news-section, .interview-section { margin-bottom: 4rem; }
.news-section .card-body { padding: 2rem; }
.news-section h4 { font-size: 1.5rem; font-weight: 600; margin-bottom: 1rem; color: #212529; }
.news-section .text-muted { font-size: 0.9rem; margin-bottom: 1rem; }
.news-section .card-text { color: #495057; line-height: 1.6; margin-bottom: 1.5rem; }
.interview-section .card-title { font-size: 2rem; font-weight: 600; margin-bottom: 1rem; color: #212529; }
.interview-section .text-muted { font-size: 0.9rem; margin-bottom: 1.5rem; }
.interview-section .lead { font-size: 1.1rem; line-height: 1.8; color: #495057; }
/* Poll */
.poll-widget { margin-bottom: 2rem; }
.poll-widget .form-check { padding: 1rem; margin-bottom: 0.5rem; border-radius: 0.5rem; transition: background-color 0.2s ease; }
.poll-widget .form-check:hover { background-color: rgba(0,0,0,0.05); }
.poll-widget .progress { height: 8px; border-radius: 4px; margin-bottom: 1rem; }
.poll-widget .progress-bar { background-color: #212529; }
/* Responsive for carousel */
@media (max-width: 1200px) { .featured-carousel .carousel-item { height: 450px; } .featured-carousel h3 { font-size: 3rem; } .featured-carousel h4 { font-size: 2rem; } }
@media (max-width: 992px) { .featured-carousel .carousel-item { height: 400px; } .featured-carousel h3 { font-size: 2.5rem; } .featured-carousel h4 { font-size: 1.75rem; } }
@media (max-width: 768px) { .featured-carousel .carousel-item { height: 350px; } .featured-carousel h3 { font-size: 2rem; } .featured-carousel h4 { font-size: 1.5rem; } }
@media (max-width: 576px) { .featured-carousel .carousel-item { height: 300px; } .featured-carousel h3 { font-size: 1.75rem; } .featured-carousel h4 { font-size: 1.25rem; } }

.interview-item {
    transition: background-color 0.2s;
}

@media (max-width: 991.98px) {
    .interview-item .btn {
        margin-top: 8px;   /* nice spacing below text on mobile */
    }
}

/* ========================
   2. ALBUM CARDS & MOST REQUESTED
   ======================== */
.album-grid, .artist-albums, .recently-played, .new-music { padding: 1rem 0; }
.album-card, .artist-albums .album-card, .recently-played .album-card, .new-music .album-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.album-card:hover, .artist-albums .album-card:hover, .recently-played .album-card:hover, .new-music .album-card:hover { box-shadow: var(--shadow-md); }
.album-card .album-image, .artist-albums .album-image, .recently-played .album-image, .new-music .album-image {
    position: relative;
    padding-bottom: 100%;
    overflow: hidden;
    background: var(--color-light);
}
.album-card .album-image img, .artist-albums .album-image img, .recently-played .album-image img, .new-music .album-image img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.album-card:hover .album-image img,
.artist-albums .album-card:hover .album-image img,
.recently-played .album-card:hover .album-image img,
.new-music .album-card:hover .album-image img {
    transform: scale(1.05);
}
.album-card .album-info,
.artist-albums .album-info,
.recently-played .album-info,
.new-music .album-info {
    padding: 1rem !important;
    text-align: center !important;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* ========================
   3. SEARCH PAGE
   ======================== */
.search-page .container h2 { margin: 10px 0 20px 0; padding-bottom: 10px; }
.search-page .music-search { margin-top: 0; margin-bottom: 0; }
.search-page .blog-post-title { margin-top: 0; margin-bottom: 0.5rem; }
.search-page .nav-tabs { margin-top: 0; }
.search-page main.bg-light { padding-top: 1rem; padding-bottom: 0; }
.search-page h1 { color: #474747; }
.search-page hr { margin: 1rem 0 0 0; opacity: 0.1; border-color: #000; }
.search-page .row { --bs-gutter-x: 1.5rem; --bs-gutter-y: 1.5rem; }
@media (min-width: 992px) {
    .search-page .row-cols-lg-3 > * { flex: 0 0 auto; width: 25% !important; }
}
.search-page .feature.col { padding: 0.75rem; }
.search-page .feature.col a.links {
    display: block; padding: 0.75rem;
    background: #fff; border: 1px solid #eee;
    border-radius: 8px; color: #212529;
    text-decoration: none; transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05); text-align: center;
}
.search-page .feature.col a.links:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-color: #ddd;
}
.search-page .card {
    background: #fff; border: 1px solid #eee;
    border-radius: 12px; transition: all 0.3s ease;
    height: 100%; overflow: hidden; position: relative;
}
.search-page .card:hover { box-shadow: 0 8px 16px rgba(0,0,0,0.1); border-color: #ddd; }
.search-page .card-img-top {
    width: 100%; height: auto; aspect-ratio: 1/1;
    object-fit: cover; transition: transform 0.3s ease;
}
.search-page .card:hover .card-img-top { transform: scale(1.05); }
.search-page .card-body { padding: 1rem; background: #fff; }
.search-page .card-text { margin: 0; text-align: center; }
.search-page .card-text a.links {
    color: #000; text-decoration: none; font-weight: 600;
    font-size: 0.95rem; display: block; margin-bottom: 0.35rem; line-height: 1.3;
}
.search-page .card-text .artist-name { color: #666; font-size: 0.85rem; display: block; line-height: 1.2; }
.search-page .lyrics-preview {
    margin-top: 1rem; padding-top: 1rem;
    border-top: 1px solid #eee;
    font-size: 0.9rem; color: #495057; line-height: 1.5;
}
.lyrics-preview mark { background-color: #ffd700; padding: 0 2px; border-radius: 2px; }
.search-page .song-card {
    background: #fff; border: 1px solid #eee;
    border-radius: 8px; padding: 1.5rem; margin-bottom: 1rem;
    transition: all 0.2s ease; box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.search-page .song-card:hover { box-shadow: 0 4px 8px rgba(0,0,0,0.1); border-color: #ddd; }
.search-page .song-title {
    color: #000; text-decoration: none; font-weight: 600;
    font-size: 1.1rem; display: block; margin-bottom: 0.5rem;
}
.search-page .song-title:hover { color: #333; }
.search-page .song-details { color: #666; margin: 0; font-size: 0.9rem; }
.search-page .song-details .artist-name { font-weight: 500; color: #333; }
.search-page mark { background-color: #fff3cd; padding: 0.2em 0.1em; border-radius: 2px; }
.search-page .songs-list { display: grid; gap: 1.5rem; padding: 0.5rem; }
.search-page .alert { border-radius: 8px; padding: 1rem; margin-bottom: 1rem; }
.search-page .alert-info { background-color: #f8f9fa; border-color: #eee; color: #495057; text-align: center; }
.search-page .loading {
    position: relative; min-height: 200px;
    display: flex; align-items: center; justify-content: center;
}
.search-page .spinner-border { width: 2rem; height: 2rem; color: #212529; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.search-page .row { animation: fadeIn 0.3s ease; }
/* Search Responsive */
@media (max-width: 1200px) { .search-page .row-cols-lg-3 > * { width: 33.333% !important; } }
@media (max-width: 768px) {
    .search-page .row-cols-lg-3 > * { width: 50% !important; }
    .search-page .feature.col { padding: 0.5rem; }
    .search-page .feature.col a.links { padding: 0.5rem; font-size: 0.9rem; }
    .search-page .card-body { padding: 0.75rem; }
    .search-page .card-text a.links { font-size: 0.9rem; }
    .search-page .card-text .artist-name { font-size: 0.8rem; }
    .search-page .song-card { padding: 1rem; }
    .search-page .song-title { font-size: 1rem; }
    .search-page .lyrics-preview { font-size: 0.85rem; }
}
@media (max-width: 576px) {
    .search-page .row-cols-lg-3 > * { width: 100% !important; }
    .search-page .container h2 { font-size: 1.5rem; }
}

/* ========================
   5. ARTIST PAGE
   ======================== */
.artist-page .artist-header { margin-bottom: 3rem; }
.artist-page .artist-image {
    height: 100%;
    min-height: 300px;
    position: relative;
    overflow: hidden;
    background: var(--color-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}
.artist-page .album-card .card-text a.links,
.artist-page .album-card .card-text a {
    text-decoration: none !important;
    color: #212529 !important;
    font-weight: 500 !important;
    font-family: inherit !important;
}
.artist-page .album-card .card-text a.links:hover,
.artist-page .album-card .card-text a:hover {
    color: #6c757d !important;
    text-decoration: none !important;
}
.artist-page .artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-transform);
}
.artist-page .artist-image:hover img { transform: scale(1.05); }
.artist-page .placeholder-image {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--color-light);
    color: var(--color-secondary);
}
.artist-page .placeholder-image i { font-size: 4rem; margin-bottom: 1rem; }
.artist-page .artist-info { padding: 2rem; }
.artist-page .artist-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}
.artist-page .artist-details { display: flex; flex-direction: column; gap: 0.5rem; }
.artist-page .detail-item {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.25rem;
}
.artist-page .detail-item .label {
    font-weight: 600;
    color: var(--color-primary);
    min-width: 80px;
    margin-right: 0.75rem;
}
.artist-page .detail-item .value { color: var(--color-secondary); }
/* Recommendations */
.artist-page .recommendations-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.artist-page .recommendation-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    color: var(--color-primary);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}
.artist-page .recommendation-item:hover {
    background: var(--color-light);
    transform: translateX(5px);
}
.artist-page .recommendation-item i {
    color: var(--color-secondary);
    margin-right: 0.75rem;
}
/* Responsive artist */
@media (max-width: 992px) {
    .artist-page .artist-name { font-size: 2rem; }
    .artist-page .artist-image { min-height: 250px; }
}
@media (max-width: 768px) {
    .artist-page .artist-name { font-size: 1.75rem; }
    .artist-page .detail-item { flex-direction: column; }
    .artist-page .detail-item .label { margin-bottom: 0.25rem; }
    .artist-page .song-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        text-align: center;
    }
    .artist-page .song-info { width: 100%; margin-right: 0; text-align: center; }
    .artist-page .song-title { font-size: 1.1rem; display: block; margin-bottom: 0.5rem; }
    .artist-page .song-actions {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
}

/* ========================
   6. ALBUM PAGE
   ======================== */
.album-page { visibility: hidden; }
.album-page.loaded { visibility: visible; }
.album-page .album-header { margin-bottom: 3rem; }
.album-page .album-header .content-card {
    height: 100%;
    margin-bottom: 0;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}
.album-page .album-cover-wrapper {
    width: 400px;
    height: 400px;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-light);
    margin: 0 auto;
}
.album-page .album-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}
.album-page .album-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.album-page .album-image::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
    transition: transform 0.6s ease;
}
.album-page .album-image:hover img { transform: scale(1.05); }
.album-page .album-image:hover::after { transform: translateX(100%); }
.album-page .album-info { padding: 2rem; }
.album-page .album-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.album-page .detail-item {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}
.album-page .detail-item .label {
    font-weight: 600;
    color: var(--color-primary);
    min-width: 80px;
    margin-right: 0.75rem;
    padding-top: 0;
}
.album-page .detail-item .value a,
.album-page .detail-item .value .artist-link,
.album-page .detail-item .value .album-link {
    color: #212529 !important;
    text-decoration: none;
    transition: color 0.2s ease;
}
.album-page .detail-item .value a:hover,
.album-page .detail-item .value .artist-link:hover,
.album-page .detail-item .value .album-link:hover {
    color: #0d6efd !important;
}
.album-page .detail-item .value { color: var(--color-secondary); display: flex; align-items: center; }
.rating-value, .rating-display { display: flex; align-items: center; gap: 1rem; }
.rating-text { color: var(--color-secondary); font-size: 0.9rem; white-space: nowrap; padding-top: 0; }
.album-page .album-actions {
    margin-top: auto;
    padding-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

/* Skull rating */
.skull-rating {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 0.5rem;
}
.skull-rating input { display: none; }
.skull-rating label {
    cursor: pointer;
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.skull-rating label {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ccc' d='M12 2c-4.4 0-8 3.6-8 8 0 2.5 1.1 4.7 2.9 6.1L7 22h10l0.1-5.9c1.8-1.4 2.9-3.6 2.9-6.1 0-4.4-3.6-8-8-8zm-3 13c-1.1 0-2-0.9-2-2s0.9-2 2-2 2 0.9 2 2-0.9 2-2 2zm6 0c-1.1 0-2-0.9-2-2s0.9-2 2-2 2 0.9 2 2-0.9 2-2 2z'/%3E%3C/svg%3E");
}
.skull-rating input:checked ~ label,
.skull-rating label:hover,
.skull-rating label:hover ~ label {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23212529' d='M12 2c-4.4 0-8 3.6-8 8 0 2.5 1.1 4.7 2.9 6.1L7 22h10l0.1-5.9c1.8-1.4 2.9-3.6 2.9-6.1 0-4.4-3.6-8-8-8zm-3 13c-1.1 0-2-0.9-2-2s0.9-2 2-2 2 0.9 2 2-0.9 2-2 2zm6 0c-1.1 0-2-0.9-2-2s0.9-2 2-2 2 0.9 2 2-0.9 2-2 2z'/%3E%3C/svg%3E");
    transform: scale(1.1);
}
.skull-rating:hover label { opacity: 0.5; }
.skull-rating:hover label:hover,
.skull-rating:hover label:hover ~ label { opacity: 1; }

/* Skull display */
.skull-display { display: inline-flex; gap: 0.5rem; }
.skull-display .skull {
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.skull-display .skull.filled {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23212529' d='M12 2c-4.4 0-8 3.6-8 8 0 2.5 1.1 4.7 2.9 6.1L7 22h10l0.1-5.9c1.8-1.4 2.9-3.6 2.9-6.1 0-4.4-3.6-8-8-8zm-3 13c-1.1 0-2-0.9-2-2s0.9-2 2-2 2 0.9 2 2-0.9 2-2 2zm6 0c-1.1 0-2-0.9-2-2s0.9-2 2-2 2 0.9 2 2-0.9 2-2 2z'/%3E%3C/svg%3E");
}
.skull-display .skull.empty {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ccc' d='M12 2c-4.4 0-8 3.6-8 8 0 2.5 1.1 4.7 2.9 6.1L7 22h10l0.1-5.9c1.8-1.4 2.9-3.6 2.9-6.1 0-4.4-3.6-8-8-8zm-3 13c-1.1 0-2-0.9-2-2s0.9-2 2-2 2 0.9 2 2-0.9 2-2 2zm6 0c-1.1 0-2-0.9-2-2s0.9-2 2-2 2 0.9 2 2-0.9 2-2 2z'/%3E%3C/svg%3E");
}

/* Quick rating & reviews */
.quick-rating-form {
    background: var(--color-light);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    margin-bottom: 2rem;
}
.quick-rating-form .rating-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.quick-rating-form .form-label {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}
.rating-divider {
    position: relative;
    text-align: center;
    margin: 2rem 0;
}
.rating-divider::before,
.rating-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: var(--color-light);
}
.rating-divider::before { left: 0; }
.rating-divider::after { right: 0; }
.rating-divider span {
    background: #fff;
    padding: 0 1rem;
    color: var(--color-secondary);
    font-size: 0.9rem;
}
.full-review-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-primary);
    font-size: 1.2rem;
    font-weight: 500;
}

/* ========================
   REVIEWS - DIVIDERS & SPACING
   ======================== */
.card-body .review-item {
    padding: 2rem 2rem 1.75rem;
}

.review-item:last-child {
    padding-bottom: 2rem;
}

.review-header {
    margin-bottom: 1.25rem;
}

.review-meta h4 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
}

.review-rating {
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
}

.review-content {
    color: #495057;
    line-height: 1.75;
    font-size: 1.02rem;
}

/* Clean horizontal divider between reviews */
.review-divider {
    border-top: 1px solid #dee2e6;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .card-body .review-item {
        padding: 1.75rem 1.5rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .card-body .review-item {
        padding: 1.5rem 1.25rem 1.25rem;
    }
    
    .review-meta h4 {
        font-size: 1.15rem;
    }
}

/* ========================
   REVIEWS - NEW ORDER + SPACING
   ======================== */
.review-item {
    padding: 2rem 2rem 1.75rem;
}

.review-item:last-child {
    padding-bottom: 2rem;
}

.review-headline {
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.review-meta .text-muted {
    margin-bottom: 0.75rem;
}

.review-rating {
    margin-top: 0.25rem;
}

.review-content {
    color: #495057;
    line-height: 1.75;
    font-size: 1.02rem;
}

/* Skulls */
.review-rating .skull-display {
    gap: 6px;
}

.review-rating .skull {
    width: 26px;
    height: 26px;
}

/* Divider */
.review-divider {
    border-top: 1px solid #dee2e6;
}

/* Album responsive */
@media (max-width: 992px) {
    .album-page .album-header .col-md-5 { width: 100% !important; flex: 0 0 100% !important; }
    .album-page .album-cover-wrapper {
        width: 100% !important;
        height: auto !important;
        padding-bottom: 100%;
        border-radius: var(--radius-md) var(--radius-md) 0 0;
    }
    .album-page .album-header .col-md-7 {
        border-radius: 0 0 var(--radius-md) var(--radius-md);
    }
    .album-page .album-title { font-size: 1.75rem; }
}
@media (max-width: 992px) {
    .review-item {
        padding: 1.75rem 1.5rem 1.5rem;
    }
}
@media (max-width: 768px) {
    .album-page .song-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        text-align: center;
    }
    .album-page .song-info { width: 100%; margin-right: 0; text-align: center; }
    .album-page .song-title { font-size: 1.1rem; display: block; margin-bottom: 0.5rem; }
    .album-page .song-actions {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .album-page .album-actions { flex-direction: column; }
    .album-page .album-actions .btn { width: 100%; }
    .album-page .review-meta { flex-direction: column; }
    .album-page .review-rating { margin-top: 0.5rem; }
}
@media (max-width: 576px) {
    .review-item {
        padding: 1.5rem 1.25rem 1.25rem;
    }
    
    .review-headline {
        font-size: 1.15rem;
    }
}

/* ========================
   7. LABEL PAGE
   ======================== */
.label-page .label-header { margin-bottom: 3rem; }
.label-page .label-image {
    height: 100%;
    min-height: 300px;
    position: relative;
    overflow: hidden;
    background: var(--color-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}
.label-page .label-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-transform);
}
.label-page .label-image:hover img { transform: scale(1.05); }
.label-page .placeholder-image {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--color-light);
    color: var(--color-secondary);
}
.label-page .placeholder-image i { font-size: 4rem; margin-bottom: 1rem; }
.label-page .label-info { padding: 2rem; }
.label-page .label-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}
.label-page .label-details { display: flex; flex-direction: column; gap: 0.5rem; }
.label-page .detail-item {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.25rem;
}
.label-page .detail-item .label {
    font-weight: 600;
    color: var(--color-primary);
    min-width: 80px;
    margin-right: 0.75rem;
}
.label-page .detail-item .value { color: var(--color-secondary); }
/* Label bio */
.label-page .bio-wrapper { position: relative; }
.label-page .bio-content {
    color: #495057;
    line-height: 1.8;
    font-size: 1.1rem;
    transition: max-height 0.3s ease;
    overflow: hidden;
    position: relative;
}
.label-page .bio-content.collapsed { max-height: 200px; }
.label-page .bio-content.expanded { max-height: 2000px; }
.label-page .bio-content.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
    pointer-events: none;
}
.label-page .bio-toggle {
    display: block;
    width: 100%;
    padding: 0.5rem;
    margin-top: 1rem;
    color: #0d6efd;
    background: none;
    border: none;
    text-align: center;
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
}
.label-page .bio-toggle:hover { color: #0a58ca; }
.label-page .bio-toggle::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #dee2e6;
    margin-bottom: 0.5rem;
}
/* Recommendations */
.label-page .recommendations-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.label-page .recommendation-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    color: var(--color-primary);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}
.label-page .recommendation-item:hover {
    background: var(--color-light);
    transform: translateX(5px);
}
.label-page .recommendation-item i {
    color: var(--color-secondary);
    margin-right: 0.75rem;
}
/* Label responsive */
@media (max-width: 992px) {
    .label-page .label-name { font-size: 2rem; }
    .label-page .label-image { min-height: 250px; }
}
@media (max-width: 768px) {
    .label-page .label-name { font-size: 1.75rem; }
    .label-page .detail-item { flex-direction: column; }
    .label-page .detail-item .label { margin-bottom: 0.25rem; }
    .label-page .song-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        text-align: center;
    }
    .label-page .song-info { width: 100%; margin-right: 0; text-align: center; }
    .label-page .song-title { font-size: 1.1rem; display: block; margin-bottom: 0.5rem; }
    .label-page .song-actions {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
}

/* ========================
   8. MYPLOT PAGE
   ======================== */
.quick-stats-container {
    margin: 2rem 0;
    padding: 0;
    background: transparent !important;
}
.quick-stats-container .row { margin: 0 -1rem; }
.quick-stats-container .col-md-4 { padding: 0 1rem; }
.stat-box {
    background: linear-gradient(45deg, #1a1a1a, #333);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}
.stat-box:hover { transform: translateY(-5px); }
.stat-box h5 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.stat-box .stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
}
.stat-box .reset-timer,
.stat-box .next-tier {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}
.stat-box .btn-light {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    transition: all 0.3s ease;
}
.stat-box .btn-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Recent Activity */
.recent-activity {
    background: linear-gradient(45deg, #1a1a1a, #333);
    border-radius: 12px;
    padding: 1.25rem;
    color: white;
    height: 400px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}
.activity-card {
    height: 100%;
    padding: 0.25rem;
}
.activity-card h2 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: white;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    padding-bottom: 0.25rem;
    display: flex;
    align-items: center;
}
.activity-card h2 i {
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}
.activity-card:hover h2 i { transform: scale(1.2); }
.activity-item {
    padding: 0.4rem 0.75rem;
    transition: all 0.3s ease;
    margin-bottom: 0.4rem;
    animation: fadeIn 0.5s ease-out forwards;
}
.activity-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
    border-radius: 4px;
}
.song-info .artist {
    font-weight: bold;
    color: white;
    font-size: 1rem;
    line-height: 1.2;
}
.song-info .title {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.95rem;
    line-height: 1.2;
}
.song-info .title:hover { color: white; }

/* Christmas Card */
.christmas-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #1a3142, #2c5364);
}
.snow-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Ccircle fill='%23fff' cx='5' cy='5' r='1'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 15'%3E%3Ccircle fill='%23fff' cx='7.5' cy='7.5' r='1.5'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle fill='%23fff' cx='10' cy='10' r='2'/%3E%3C/svg%3E");
    background-size: 10px 10px, 15px 15px, 20px 20px;
    animation: snow1 10s linear infinite,
               snow2 15s linear infinite,
               snow3 20s linear infinite;
    pointer-events: none;
}
.christmas-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}
.christmas-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.christmas-message {
    max-width: 600px;
    margin: 0 auto;
}
.christmas-message p {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    line-height: 1.4;
}

/* User Info Card */
.user-info-card {
    background: linear-gradient(45deg, #1a1a1a, #333);
    border-radius: 12px;
    padding: 1.5rem;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 400px;
}
.user-info-card .user-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}
.user-info-card .username {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: white;
    flex-grow: 1;
}
.user-info-card .user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 2px solid rgba(255,255,255,0.2);
}
.user-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.user-links .nav-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.user-links .nav-link:hover {
    color: white;
    background: rgba(255,255,255,0.1);
    transform: translateX(10px);
}
.user-links .nav-link i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Table, Pagination */
.table-responsive {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    padding: 1rem;
    margin-bottom: 2rem;
}
.table thead.table-dark {
    background: linear-gradient(45deg, #1a1a1a, #333);
}
.pagination .page-item .page-link {
    color: #333;
    background-color: #fff;
    border-color: #dee2e6;
    padding: 0.5rem 0.75rem;
}
.pagination .page-item.active .page-link {
    color: #fff;
    background-color: #333;
    border-color: #333;
}

/* MyPlot Carousel */
.myplot-page .recent-activity {
    background: linear-gradient(45deg, #1a1a1a, #333);
    border-radius: 12px;
    padding: 1.25rem;
    color: white;
    height: 400px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}
.myplot-page .carousel,
.myplot-page .carousel-inner {
    height: 100% !important;
}
.myplot-page .carousel-item {
    height: 100% !important;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: none;
    min-height: 380px;
}
.myplot-page .carousel-item.active {
    opacity: 1;
    display: block;
}
.activity-card {
    height: 100%;
    padding: 0.25rem;
}
.activity-card h2 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: white;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    padding-bottom: 0.25rem;
    display: flex;
    align-items: center;
}
.activity-card h2 i {
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}
.activity-card:hover h2 i { transform: scale(1.2); }
.activity-item {
    padding: 0.35rem 0.75rem;
    transition: all 0.3s ease;
    margin-bottom: 0.35rem;
    animation: fadeIn 0.5s ease-out forwards;
    border-radius: 4px;
}
.activity-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(10px);
}
.song-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}
.song-info .artist {
    font-weight: bold;
    color: white;
    font-size: 1rem;
    line-height: 1.2;
}
.song-info .title {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.93rem;
    line-height: 1.2;
}
.song-info .title:hover { color: white; }
.myplot-page .carousel-indicators {
    bottom: 0;
    margin-bottom: 0;
    z-index: 30;
}
.myplot-page .carousel-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin: 0 4px;
    background-color: rgba(255,255,255,0.5);
    border: none;
    transition: all 0.3s ease;
}
.myplot-page .carousel-indicators button.active {
    background-color: white;
    transform: scale(1.2);
}
.prize-image {
    max-height: 255px;
    width: auto;
    border: 3px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    display: block;
    margin: 0 auto 12px auto;
    animation: myplotPulse 2.2s infinite;
}
@keyframes myplotPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

/* Christmas Card */
.christmas-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #1a3142, #2c5364);
}
.snow-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Ccircle fill='%23fff' cx='5' cy='5' r='1'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 15'%3E%3Ccircle fill='%23fff' cx='7.5' cy='7.5' r='1.5'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle fill='%23fff' cx='10' cy='10' r='2'/%3E%3C/svg%3E");
    background-size: 10px 10px, 15px 15px, 20px 20px;
    animation: snow1 10s linear infinite,
               snow2 15s linear infinite,
               snow3 20s linear infinite;
    pointer-events: none;
}
.christmas-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}
.christmas-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.christmas-message {
    max-width: 600px;
    margin: 0 auto;
}
.christmas-message p {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    line-height: 1.4;
}

/* MyPlot Responsive */
@media (max-width: 768px) {
    .quick-stats-container .col-md-4 { margin-bottom: 1rem; }
    .quick-stats-container .col-md-4:last-child { margin-bottom: 0; }
    .user-info-card, .recent-activity { height: auto; }
    .prize-image { max-height: 200px; margin: 0 auto 1rem auto; }
}

/* ========================
   9. CONTEST PAGE - SMALL DARK HEADERS (FIXED)
   ======================== */
.contest-page .card-header.bg-dark,
.contest-page .card-header {
    background-color: #212529 !important;
    color: #fff !important;
    padding: 0.85rem 1.25rem !important;
    border-bottom: 1px solid #343a40 !important;
    border-top-left-radius: 0.375rem !important;
    border-top-right-radius: 0.375rem !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
}

.contest-page .card.border-0.shadow-md,
.contest-page .card {
    border-radius: 0.375rem !important;
    overflow: hidden;
}

/* Main prize card header fix */
.contest-page .card.mb-5.shadow .card-header {
    border-top-left-radius: 0.375rem !important;
    border-top-right-radius: 0.375rem !important;
    padding: 0.85rem 1.25rem !important;
}

/* ========================
   CONTEST PAGE - FORCE SMALL DARK HEADERS (size + corners match rest of site)
   ======================== */
.contest-page .card-header {
    background-color: #212529 !important;
    color: #fff !important;
    padding: 0.85rem 1.25rem !important;
    border-bottom: 1px solid #343a40 !important;
    border-top-left-radius: 0.375rem !important;
    border-top-right-radius: 0.375rem !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    margin-bottom: 0 !important;
}

.contest-page .card-header h2,
.contest-page .card-header h5,
.contest-page .card-header .card-title {
    font-size: 1.1rem !important;
    margin-bottom: 0 !important;
}

/* Make sure the big prize card header also matches */
.contest-page .card.mb-5.shadow .card-header {
    padding: 0.85rem 1.25rem !important;
    font-size: 1.1rem !important;
}

.contest-page .card.border-0.shadow-md,
.contest-page .card {
    border-radius: 0.375rem !important;
    overflow: hidden;
}

/* ========================
   SONG ICONS SPACING
   ======================== */
.now-playing-page .song-actions {
    margin-top: 18px !important;
    padding-top: 10px !important;
}
.song-page .song-actions {
    margin-top: 15px !important;
    padding-top: 0 !important;
}
.now-playing-page .song-item,
.song-page .song-item {
    align-items: center !important;
}

@media (max-width: 768px) {
    .song-page .song-actions {
        justify-content: flex-start !important;
        margin-left: 0 !important;
        margin-right: auto !important;
    }
    .song-page .song-item {
        flex-wrap: wrap !important;
        gap: 8px !important;
    }
    .song-page .song-info {
        flex: 1 1 100% !important;
        margin-bottom: 6px !important;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .myplot-page .recent-activity { height: auto; min-height: 400px; }
    .prize-image { max-height: 200px; }
}