/* CSS for the Explore (Home) Page - Fixed Boundaries & Visibility */

body {
    background-color: #050505 !important;
    background-image: none !important;
    background-attachment: fixed;
}

#explore-feed {
    padding-top: 20px;
    padding-bottom: 60px;
    max-width: 1400px;
    /* SYNC WITH NAVBAR */
    margin: 0 auto;
    /* CENTER CONTENT */
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   WAVS HERO SECTION (REFRESHED IDs)
   ========================================================================== */

#explore-hero-container {
    margin: 0 2rem 48px 2rem;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
    /* Premium depth */
}

.wavs-hero-track {
    display: flex;
    height: 100%;
    will-change: transform;
}

.wavs-hero {
    flex: 0 0 100%;
    width: 100%;
    height: 300px;
    /* Aligned height */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    /* Align to bottom */
    padding: 0 4% 30px 4%;
    /* More bottom padding */
    overflow: hidden;
}

.wavs-hero-overlay {
    position: absolute;
    inset: 0;
    /* Clean vertical/horizontal gradient for readability */
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, transparent 60%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
    z-index: 2;
    pointer-events: none;
}


/* Skeleton Hero Match */
.skeleton-hero {
    width: 100%;
    height: 420px;
    background: #050505;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.skeleton-hero-content {
    flex: 1;
    max-width: 55%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.skeleton-hero-title {
    width: 80%;
    height: 60px;
    background: #1a1a1a;
    border-radius: 12px;
}

.skeleton-hero-subtitle {
    width: 60%;
    height: 24px;
    background: #1a1a1a;
    border-radius: 6px;
}

.skeleton-hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.skeleton-hero-btn {
    width: 140px;
    height: 48px;
    background: #1a1a1a;
    border-radius: 50px;
}

.skeleton-hero-image-container {
    position: absolute;
    right: 100px;
    top: 50%;
    transform: translateY(-50%);
    width: 360px;
    height: 360px;
}

.skeleton-hero-image {
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    border-radius: 20px;
}

.skeleton-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    animation: skeleton-shimmer 2s infinite linear;
}

@keyframes skeleton-shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}


/* Removed ambient spotlight, using overlay now */

/* Background elements removed in JS for speed and zero-color look */

/* ==========================================================================
   WAVS HERO COMPONENTS
   ========================================================================== */

.wavs-hero-content {
    position: relative;
    z-index: 5;
    max-width: 600px;
    width: 100%;
    pointer-events: auto;
}

.wavs-hero-title {
    font-family: 'Geist', sans-serif !important;
    font-size: 3.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1;
    letter-spacing: -3.5px;
    /* Tighter for WAVS aesthetic */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wavs-hero-title a {
    color: inherit;
    text-decoration: none;
}

.wavs-hero-title a:hover {
    text-decoration: underline;
}

.wavs-hero-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #A1A1AA;
    margin-bottom: 32px;
    font-weight: 400;
    font-family: 'Geist', sans-serif !important;
}

.wavs-hero-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.wavs-hero-meta-item a {
    color: inherit;
    text-decoration: none;
}

.wavs-hero-meta-item a:hover {
    text-decoration: underline;
}

.wavs-hero-meta-sep {
    color: rgba(161, 161, 170, 0.4);
}

.wavs-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.wavs-btn-play {
    width: 48px;
    height: 48px;
    background: #FFFFFF;
    color: #000000;
    /* Contrast icon */
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

.wavs-btn-play i {
    margin-left: 2px;
}

.wavs-btn-play:hover {
    opacity: 0.8;
    /* Subtle only, no scale as requested */
}

.wavs-btn-browse {
    background: #27272A;
    color: #FFFFFF;
    border: none;
    padding: 12px 32px;
    /* Increased for longer label */
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Geist', sans-serif !important;
    transition: background 0.2s;
}

.wavs-btn-browse:hover {
    background: #3F3F46;
}

/* Hero Controls */
.wavs-hero-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 4%;
    background: #000;
    z-index: 10;
    position: relative;
}

/* Indicators */
.wavs-hero-indicators {
    flex: 1;
    display: flex;
    gap: 8px;
    margin-right: 20px;
}

.wavs-hero-indicator {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
}

.wavs-hero-indicator.active {
    background: #FFFFFF;
}

/* Arrows */
.wavs-hero-arrows {
    display: flex;
    gap: 12px;
}

.wavs-nav-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wavs-nav-btn:hover {
    opacity: 1;
}

.hero-image-container {
    position: absolute;
    right: 100px;
    top: 50%;
    transform: translateY(-50%);
    width: 360px;
    height: 360px;
    z-index: 5;
    opacity: 1;
    /* Was 0, now 1 for track layout */
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.1s;
}

.explore-hero.active .hero-image-container {
    opacity: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Indicators */
.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 80px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s;
}

.hero-dot.active {
    width: 30px;
    border-radius: 4px;
    background: #fff;
}

/* Hero Responsive */
@media (max-width: 1000px) {
    .explore-hero {
        padding: 0 40px;
        height: 380px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-image-container {
        width: 260px;
        height: 260px;
        right: 40px;
    }
}

.mobile-only {
    display: none !important;
}

@media (max-width: 768px) {
    #explore-feed {
        padding-top: 15px;
        /* Minimal padding since navbar is in flow */
    }

    #explore-hero-container {
        margin: 0 1.5rem 30px 1.5rem;
        overflow: hidden !important;
        /* Force hidden for carousel track */
        border-radius: 0;
        background: transparent;
        /* Remove dark bg on mobile */
        border: none;
        /* Remove border on mobile */
        box-shadow: none;
        /* Remove shadow on mobile */
    }

    .explore-hero {
        padding: 0;
        width: 100% !important;
        flex: 0 0 100% !important;
        min-width: 100% !important;
        justify-content: flex-start;
        align-items: flex-end;
        text-align: left;
        border-radius: 12px;
        overflow: hidden;
        cursor: pointer;
        position: relative;
    }

    /* Hide the desktop gradient overlay on mobile */
    .explore-hero::before {
        display: none !important;
    }

    /* Skeleton Mobile Overrides - height synced via 900px breakpoint */
    .skeleton-hero {
        padding: 0;
        border-radius: 12px;
        align-items: flex-end;
        background: #111 !important;
        /* Visible dark placeholder bg */
        overflow: hidden;
    }

    .skeleton-hero-content {
        max-width: 100%;
        padding: 20px 16px;
        width: calc(100% - 60px);
        gap: 8px;
    }

    .skeleton-hero-title {
        height: 20px;
        width: 60%;
    }

    .skeleton-hero-subtitle {
        height: 12px;
        width: 40%;
    }

    .skeleton-hero-actions,
    .skeleton-hero-image-container {
        display: none;
    }

    .mobile-only {
        display: flex !important;
    }

    div.hero-mobile-bg.mobile-only {
        display: block !important;
    }

    div.hero-mobile-gradient.mobile-only {
        display: block !important;
        /* Subtle bottom gradient for text readability */
    }

    .desktop-only {
        display: none !important;
    }

    .hero-mobile-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        z-index: 1;
    }

    .hero-mobile-gradient {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* Full height gradient from bottom */
        background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.6) 35%, rgba(0, 0, 0, 0.15) 65%, transparent 100%);
        z-index: 2;
        pointer-events: none;
        /* Let clicks pass through */
    }

    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 16px;
        z-index: 5;
        width: calc(100% - 60px);
        /* Space for play button */
        transform: translateY(0) !important;
        /* Override JS animation */
        opacity: 1 !important;
    }

    .hero-title {
        font-size: 1.4rem;
        letter-spacing: -0.5px;
        margin-bottom: 4px;
        line-height: 1.3;
        /* Increased to prevent cutting off text */
        padding-bottom: 4px;
        /* Ensure descenders/ellipsis aren't clipped */
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
        /* Better legibility without gradient */
    }

    .hero-mobile-info {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 0.8rem;
        color: #ccc;
        width: 100%;
    }

    .hero-mobile-avatar {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        object-fit: cover;
        flex-shrink: 0;
    }

    .hero-mobile-artist {
        font-weight: 600;
        color: #fff;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hero-mobile-dot {
        font-size: 0.8rem;
        color: #888;
    }

    .hero-mobile-type {
        color: #888;
        font-weight: 500;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hero-mobile-play-btn {
        position: absolute;
        bottom: 12px;
        right: 12px;
        width: 44px;
        height: 44px;
        background-color: #ffffff;
        border-radius: 50%;
        justify-content: center;
        align-items: center;
        color: #000;
        font-size: 1.4rem;
        border: none;
        z-index: 10;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        cursor: pointer;
        padding: 0;
        transition: transform 0.2s;
    }

    .hero-mobile-play-btn:active {
        transform: scale(0.95);
    }

    .hero-indicators {
        position: absolute;
        top: 8px;
        /* Inside the image at the top like IG */
        left: 50%;
        transform: translateX(-50%);
        gap: 4px;
        display: flex;
        width: calc(100% - 24px);
        /* Full width minus padding */
        z-index: 20;
    }

    .hero-dot {
        flex: 1;
        /* evenly distribute */
        height: 3px;
        border-radius: 2px;
        background: rgba(255, 255, 255, 0.2);
        position: relative;
        overflow: hidden;
    }

    .hero-dot.active::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: #fff;
        transform-origin: left;
        animation: heroFill 10s linear forwards;
    }

    @keyframes heroFill {
        from {
            transform: scaleX(0);
        }

        to {
            transform: scaleX(1);
        }
    }

    /* Mobile Compact List Items (Like Tendencias reference) */
    .list-item-smart .list-item-waveform,
    .list-item-smart .list-item-index,
    .list-item-smart.skeleton-item .skeleton-list-idx,
    .list-item-smart.skeleton-item .skeleton-list-wave {
        display: none !important;
    }

    .list-item-smart .list-play-btn {
        display: flex !important;
        /* Mantenemos el play pero simple */
        order: 2;
    }

    .list-item-smart {
        padding: 8px 4px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 0;
        gap: 12px;
    }

    .list-item-smart:last-child {
        border-bottom: none;
    }

    .list-item-img {
        width: 44px;
        height: 44px;
        border-radius: 4px;
    }

    .list-item-name {
        font-size: 0.95rem;
        margin-bottom: 2px;
    }

    .list-item-sub {
        font-size: 0.75rem;
    }

    .list-play-btn {
        background: transparent !important;
        border: 1px solid rgba(255, 255, 255, 0.5) !important;
        color: #fff !important;
        box-shadow: none !important;
        width: 28px !important;
        height: 28px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        border-radius: 50% !important;
        flex-shrink: 0 !important;
        margin-right: 8px;
    }

    .list-play-btn i {
        font-size: 0.75rem !important;
        margin-left: 1px;
    }

    /* Ver Más Button */
    .btn-ver-mas {
        width: 100%;
        margin-top: 8px;
        padding: 12px 4px;
        background: transparent;
        border: none;
        color: #fff;
        font-size: 0.95rem;
        font-weight: 500;
        text-align: left;
        opacity: 0.9;
    }
}

/* Close @media (max-width: 768px) */

/* Premium List Container (Tendencias / Fresh) - Minimal Clean */
.explore-list-outer {
    margin: 0 1.5rem 48px 1.5rem;
    /* Consistent 48px gap */
    background: transparent;
    border-radius: 0;
    padding: 0;
    border: none;
    box-shadow: none;
}

.explore-list-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.list-col {
    flex: 1;
}

.list-col-header {
    margin-bottom: 30px;
    padding-left: 0;
}

#explore-tendencias-title,
#explore-fresh-title {
    font-size: 1.8rem !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    letter-spacing: -0.8px !important;
    text-transform: none;
    margin-bottom: 8px !important;
    /* Clean text-shadow for definition, not a massive glow */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
    position: relative;
}

/* Removed experimental dot as per user feedback */

.list-col-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    letter-spacing: 0.2px;
    opacity: 0.8;
}

@media (max-width: 1000px) {
    .explore-list-grid {
        flex-direction: column;
        gap: 60px;
    }

    .explore-list-outer {
        padding: 0;
        margin: 0 1.5rem 48px 1.5rem;
        /* Match mobile padding */
    }
}

@media (max-width: 768px) {
    .explore-list-outer {
        margin: 0 0 48px 0;
        /* Remove 1.5rem outer margin as grid already has it */
    }

    .view-all {
        padding: 4px 12px !important;
        font-size: 0.75rem !important;
        gap: 4px !important;
    }
}

/* Final fallback if needed, keeping structure intact */

/* Shelf Row & Shelf Carousel */
.explore-row {
    margin-bottom: 32px;
    /* Breathing room between sections - tightened */
    padding: 0 1.5rem;
    /* Align with navbar-container */
    position: relative;
    overflow: visible;
}

/* Extra padding for leaderboard to give room for arrows */
.explore-row.leaderboard-section {
    padding-left: 1.5rem;
    /* Same as other rows - aligned left */
    padding-right: 1.5rem;
    /* Match other rows */
}

.row-header {
    display: flex;
    justify-content: space-between;
    /* Change to space-between for Ver Todos */
    align-items: center;
    /* Align title and link centered */
    margin-bottom: 12px;
    /* Reduced from 25px */
}

.row-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.row-title {
    font-family: inherit;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.3px;
}

.view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    padding: 6px 14px;
    border-radius: 50px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.view-all i {
    font-size: 0.85rem;
    opacity: 0.7;
    transition: transform 0.2s;
}

.view-all:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.view-all:hover i {
    transform: translateX(2px);
    opacity: 1;
}

.shelf-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0;
    overflow: visible;
    /* Allow arrows to render outside */
}

.shelf-inner {
    width: 100%;
    overflow: visible;
    /* Prevent hover clipping */
    position: relative;
    padding: 20px 0;
    /* Increased padding for hover room */
    margin: -20px 0;
    /* Offset the extra padding */
}

/* --- Skeleton Rows --- */
.explore-row-skeleton {
    margin-bottom: 48px;
    padding: 0 1.5rem;
}

.skeleton-row-title {
    width: 200px;
    height: 32px;
    border-radius: 8px;
    margin-bottom: 25px;
    background: #1a1a1b;
}

/* Ensure skeleton lists don't have double margins */
.explore-list-outer#explore-list-skeleton {
    margin-top: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 20px 0;
}


/* KILL ALL CAROUSEL FADE MASKS - ABSOLUTE CLEAN LOOK */
.shelf-wrapper::after,
.shelf-inner::after,
.shelf-container::after,
.explore-row::after {
    display: none !important;
    content: none !important;
    background: none !important;
    mask-image: none !important;
    -webkit-mask-image: none !important;
}

/* Navigation Arrows - GLOBAL/LEGACY (Restoring for Producers etc) */
.btn-nav {
    position: absolute;
    width: 48px;
    height: 48px;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 30;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
}

.btn-nav:hover {
    background: #8B5CF6;
    border-color: #8B5CF6;
    transform: scale(1.15);
}

.btn-nav.prev {
    left: -16px;
    /* Just outside the first card, aligned with row edge */
}

.btn-nav.next {
    right: -60px;
    /* Outside the container at the right edge */
}

.btn-nav.disabled,
.btn-nav-mini.disabled {
    opacity: 0.3;
    pointer-events: auto;
    /* Enable hover so cursor:not-allowed shows */
    cursor: not-allowed;
    filter: grayscale(1);
}

/* Mini Navigation Arrows in row header (NEW) */
.btn-nav-mini {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.2s;
}

.btn-nav-mini:hover {
    background: #222;
    border-color: rgba(255, 255, 255, 0.3);
}

.row-nav-arrows {
    display: flex;
    gap: 8px;
}

@media (max-width: 768px) {
    .mobile-hide {
        display: none !important;
    }
}

.shelf-container {
    display: flex;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 24px;
    /* Balanced for density */
    padding: 0;
    /* Handled by shelf-inner */
    scroll-behavior: smooth;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    /* Force alignment on scroll/arrows */
    width: 100%;
}

.shelf-container::-webkit-scrollbar {
    display: none;
}

/* Universal Product Card */
.product-card-smart {
    width: 100%;
    height: 310px;
    /* Fixed height for uniformity */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 12px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    padding: 12px;
    border-radius: 14px;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}



.product-card-smart:hover {
    background: #111111;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.card-cover-wrapper {
    width: 100%;
    aspect-ratio: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #111;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Gradient Overlay on Hover */
.card-cover-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 40%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.product-card-smart:hover .card-cover-wrapper::after {
    opacity: 1;
}

.card-cover-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Floating Play Button on Hover — Centered & Larger */
.quick-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 64px;
    /* Larger size */
    height: 64px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.8rem;
    /* Larger icon inside */
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    z-index: 5;
    border: none;
}

.quick-play-btn i {
    margin-left: 2px;
}

/* Force visibility when it's the active track (playing or paused) */
.quick-play-btn.is-active {
    opacity: 1 !important;
    transform: translate(-50%, -50%) scale(1) !important;
}

/* Specific styling when actively playing */
.quick-play-btn.is-playing {
    background: #fff;
    color: #000;
}

.product-card-smart:hover .quick-play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.quick-play-btn:hover {
    opacity: 1 !important;
}

/* --- MOBILE OVERRIDES (Moved below to ensure correct override) --- */
@media (max-width: 768px) {
    .explore-row {
        padding: 0 1rem !important;
    }

    .row-title {
        font-size: 1.15rem !important;
    }

    .shelf-container {
        gap: 0 !important;
        padding-left: 1rem !important;
        padding-right: 1.5rem !important;
        display: flex !important;
    }

    .product-card-wrapper {
        flex: 0 0 160px !important;
        width: 160px !important;
        margin-right: 6px !important;
        display: block !important;
        box-sizing: border-box !important;
    }

    .product-card-smart {
        width: 160px !important;
        height: 240px !important; /* Enough height for 2 lines + small cover */
        padding: 0 !important;
        background: #111 !important;
        display: flex !important;
        flex-direction: column !important;
        box-sizing: border-box !important;
        border-radius: 12px !important;
        border: 1px solid rgba(255, 255, 255, 0.05) !important;
        margin: 0 0 10px 0 !important;
        overflow: hidden !important;
    }

    .card-cover-wrapper {
        width: calc(100% - 48px) !important; /* Even smaller: 24px margins */
        aspect-ratio: 1 / 1 !important;
        border-radius: 6px !important;
        position: relative !important;
        overflow: hidden !important;
        margin: 16px auto 0 !important;
        flex-shrink: 0 !important;
    }

    .card-cover-wrapper img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        transform: none !important;
        display: block !important;
    }

    .card-info {
        padding: 0 14px !important;
        margin-top: 10px !important;
        margin-bottom: 8px !important;
        text-align: center !important; /* Center text for better symmetry with small cover */
    }

    .card-title {
        font-size: 0.82rem !important;
        line-height: 1.3 !important;
        height: 2.6em !important; /* Back to 2 lines */
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        color: #fff !important;
        margin: 0 !important;
        font-weight: 700 !important;
    }

    .card-producer {
        font-size: 0.72rem !important;
        opacity: 0.8 !important; /* More visible */
        color: rgba(255, 255, 255, 0.6) !important;
        margin-top: 4px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        display: block !important;
    }

    .card-action-row {
        padding: 0 !important; 
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .card-buy-btn {
        flex: 1 !important;
        padding: 0 !important;
        font-size: 0.75rem !important;
        height: 38px !important;
        border-radius: 50px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: #fff !important;
        color: #000 !important;
        font-weight: 700 !important;
    }

    .card-download-icon-btn {
        width: 38px !important;
        height: 38px !important;
        flex-shrink: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 50% !important;
        background: rgba(255,255,255,0.05) !important;
        border: 1px solid rgba(255,255,255,0.1) !important;
    }

    .quick-play-btn {
        top: auto !important;
        left: auto !important;
        bottom: 6px !important;
        right: 6px !important;
        width: 26px !important; /* Smaller for smaller cover */
        height: 26px !important;
        font-size: 0.75rem !important;
        transform: none !important;
        opacity: 1 !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        z-index: 10 !important;
        position: absolute !important;
        background: #fff !important;
        color: #000 !important;
        border-radius: 50% !important;
    }

    .quick-play-btn.is-active,
    .quick-play-btn.is-playing {
        transform: none !important;
        opacity: 1 !important;
        top: auto !important;
        left: auto !important;
        bottom: 6px !important;
        right: 6px !important;
    }
}

/* No giant click animations */
.quick-play-btn:active,
.card-like-btn:active {
    transform: scale(0.95);
    opacity: 0.8;
}

.card-like-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
}

/* Unlike Heart Shake Animation */
.card-like-btn.unliking i {
    animation: unlikeShake 0.4s cubic-bezier(.36, .07, .19, .97) both;
}

@keyframes unlikeShake {

    10%,
    90% {
        transform: translate3d(-0.2px, 0, 0);
    }

    20%,
    80% {
        transform: translate3d(0.5px, 0, 0);
    }

    30%,
    50%,
    70% {
        transform: translate3d(-0.5px, 0, 0);
    }

    40%,
    60% {
        transform: translate3d(0.5px, 0, 0);
    }
}

.card-like-btn .like-count {
    display: none;
}

.card-like-btn .like-count {
    font-size: 0.7rem;
    font-weight: 700;
    opacity: 0.9;
}

.product-card-smart:hover .card-like-btn {
    opacity: 1;
}

.card-like-btn.liked {
    color: #ef4444;
    opacity: 1 !important;
}

.card-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.card-title {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 4px;
}

/* Reference Style Buy Button */
.card-buy-btn {
    width: 100%;
    margin-top: 8px;
    padding: 0 16px;
    background: #f4f4f5;
    color: #000;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 100px;
    /* Pill shape */
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    height: 40px;
    /* Standardized height */
}

.card-action-row {
    display: flex;
    align-items: stretch;
    gap: 8px;
    margin-top: 8px;
    width: 100%;
}

.card-action-row .card-buy-btn {
    flex: 1;
    margin-top: 0;
}

.card-download-icon-btn {
    width: 40px;
    /* Match height for perfect circle */
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    /* Perfect circle */
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.card-download-icon-btn i {
    transform: translateY(1px);
    /* Nudge down for better vertical centering */
}

.card-download-icon-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.product-card-wrapper {
    flex: 0 0 200px;
    width: 200px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    /* Tightened spacing */
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.product-card-wrapper .product-card-smart {
    flex: 1;
    width: 100%;
}

.product-card-wrapper .card-action-row,
.product-card-wrapper .card-buy-btn {
    margin-top: 0;
}

.card-buy-btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

.card-buy-btn:active {
    transform: translateY(0);
}

/* Reference Style Plays/Note Badge */
.plays-badge {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 3;
    pointer-events: none;
}

.card-producer {
    color: #b3b3b3;
    /* Spotify-style secondary text */
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    z-index: 10;
    display: inline-block;
}

.card-producer:hover {
    color: #fff;
    text-decoration: underline;
}

/* --- FORMAT 2: Preset Highlight (Different Format) --- */
/* This format uses a wider rectangle with glassmorphic overlay for a more "software/standalone" kit feel */
.preset-card-premium {
    flex: 0 0 684px;
    /* Fits exactly 2 cards in 1400px with 32px gap */
    width: 684px;
    height: 180px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    scroll-snap-align: start;
    /* Crucial for 2-card alignment */
    scroll-snap-stop: always;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #111;
}

.preset-card-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}

.preset-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.2) 60%, transparent);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: background 0.3s;
}

.preset-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #a78bfa;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.preset-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 4px;
    font-family: 'Geist', sans-serif;
}

.preset-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.preset-sub {
    color: #999;
    font-size: 0.85rem;
    font-weight: 600;
}

.preset-price {
    color: #8B5CF6;
    font-weight: 700;
    font-size: 1rem;
}

.preset-card-premium:hover {
    transform: scale(1.02);
    border-color: rgba(139, 92, 246, 0.4);
}

.preset-card-premium:hover img {
    transform: scale(1.1);
}

.preset-card-premium:hover .preset-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.4) 60%, transparent);
}

/* Producer Card refinement */
.producer-card-circle {
    flex: 0 0 160px;
    width: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
    scroll-snap-align: start;
}

.producer-avatar {
    width: 130px;
    height: 130px;
    border-radius: 28px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #8B5CF6;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.producer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.producer-name {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.producer-stats {
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
}

.follow-btn-sm {
    margin-top: 12px;
    background: #fff;
    border: none;
    color: #000;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 8px 24px;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.2s;
}

.follow-btn-sm:hover {
    transform: scale(1.05);
}

.follow-btn-sm.following {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Category Filter Layout */
.category-filters {
    margin: 20px 1.5rem;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: none;
}

.category-filters::-webkit-scrollbar {
    display: none;
}

.filter-pill {
    white-space: nowrap;
    background: #111;
    color: #888;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.filter-pill:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.1);
}

.filter-pill.active {
    background: #fff;
    color: #000;
    border-color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Footer & Global UI Fixes */
#explore-footer {
    width: 100%;
    margin-top: 50px;
    background: #0a0a0a;
    border-top: 1px solid #1a1a1a;
}

.footer-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 1.5rem 40px 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-grid div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* Two Column List Section (Trending / Fresh) */
.explore-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: -10px auto 40px auto;
    /* Fixed: 40px instead of 80px to pull Top Producers up */
    max-width: 1400px;
    padding: 0 1.5rem;
}

@media (max-width: 1100px) {
    .explore-list-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .explore-list-grid {
        grid-template-columns: 1fr;
        padding-bottom: 20px;
        padding: 0 1.5rem;
        /* Ensure 1.5rem padding to match main container alignment */
        margin: -10px 0 40px 0;
        /* Remove auto centering which was causing drift */
    }

    .list-col-header {
        padding-left: 0 !important;
        margin-bottom: 12px;
    }

    .list-item-smart {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .shelf-container {
        padding: 10px 1.5rem 30px calc(1.5rem - 12px) !important;
        gap: 16px !important;
        scroll-padding-left: calc(1.5rem - 12px);
        /* Ensure snap alignment matches padding */
    }

    .explore-row {
        padding: 0 !important;
        /* Full width so content can scroll to edges */
    }

    .row-header {
        padding: 0 1.5rem;
        /* Only the header keeps the standard padding */
    }

    .product-card-smart,
    .card-cover-wrapper {
        width: 160px !important;
        flex: 0 0 160px !important;
    }

    .card-cover-wrapper {
        height: 160px !important;
    }

    .leaderboard-section .shelf-wrapper {
        margin-left: 0 !important;
        max-width: 100% !important;
    }

    .leaderboard-section .shelf-container {
        padding: 10px 1.5rem 30px 1.5rem !important;
        gap: 16px !important;
    }

    .btn-nav {
        display: none !important;
    }
}

.list-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

.list-col-header {
    margin-bottom: 12px;
}

/* Duplicate list-col-title removed to avoid conflicts */

.list-col-subtitle {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.list-item-smart {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 8px;
    border-radius: 8px;
    transition: background 0.2s;
    cursor: pointer;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.list-item-smart:hover {
    background: #1a1a1a;
    /* translateX removed */
}

/* 2. List Item Smart */
.list-item-smart .list-item-waveform {
    flex: 1;
    height: 20px;
    margin: 0 10px;
    opacity: 0.6;
    transition: opacity 0.3s;
    min-width: 80px;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.list-item-smart:hover .list-item-waveform {
    opacity: 1;
}

/* FAKE WAVEFORM (Visual Placeholder) */
.fake-waveform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    height: 100%;
    opacity: 0.3 !important;
    /* Always dim */
}

.fake-bar {
    width: 2px;
    background: #555;
    border-radius: 1px;
    animation: none;
}

/* Play Button Disabled State */
.list-play-btn.disabled {
    opacity: 0.2;
    cursor: not-allowed;
    pointer-events: none;
    filter: grayscale(100%);
}

/* ==========================================================
   PREMIUM SKELETON LOADERS (Sync with skeleton.css)
   ========================================================== */

/* 1. Hero Skeleton - Perfect Match Layout */
.skeleton-hero {
    width: 100%;
    height: 420px;
    /* Exact match with real hero */
    border-radius: 32px;
    /* Exact match with real hero */
    margin-bottom: 0;
    background: transparent;
    /* Parent container #explore-hero-container has the background */
    display: flex;
    overflow: hidden;
}

/* 2. List Grid Skeleton (Trends / Fresh) - Tighter Spacing */
#explore-list-skeleton {
    margin-top: -40px;
    /* Pull it even higher up */
    margin-bottom: 20px;
}

.skeleton-title-left {
    width: 180px;
    height: 24px;
    border-radius: 4px;
    margin-bottom: 24px;
}

/* 3. Expanded Skeleton Loaders V3 - Premium UI Precision Match */
/* Mirrors: .producer-card-circle-sp exactly */
.skeleton-producer-card-circle {
    position: relative;
    flex: 0 0 180px;
    width: 180px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 16px;
    border-radius: 8px;
    background: transparent;
    cursor: default;
    scroll-snap-align: start;
}

/* Mirrors: .producer-avatar-wrapper */
.skeleton-producer-avatar-wrapper {
    position: relative;
    margin-bottom: 16px;
    width: 100%;
}

/* Mirrors: .lb-badge-sp */
.skeleton-producer-badge {
    position: absolute;
    top: -4px;
    left: -4px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    z-index: 5;
    border: 2px solid #222;
}

/* Mirrors: .producer-avatar-sp */
.skeleton-producer-avatar {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: 3px solid transparent;
}

/* Mirrors: .producer-info-sp */
.skeleton-producer-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
}

/* Mirrors: .producer-name-sp (font-size: 1.05rem ≈ 17px, line-height ~22px) */
.skeleton-producer-name {
    width: 80%;
    height: 17px;
    border-radius: 4px;
}

/* Mirrors: .producer-score-sp (font-size: 0.85rem ≈ 14px, margin-bottom: 8px) */
.skeleton-producer-score {
    width: 60%;
    height: 14px;
    border-radius: 4px;
    margin-bottom: 8px;
}

/* Mirrors: .lb-follow-btn-sp (padding: 6px 18px → ~28px tall) */
.skeleton-producer-btn {
    width: 90px;
    height: 28px;
    border-radius: 40px;
}

/* 4. Standard Shelf Card Skeleton (Kits & Recomendados) */
.skeleton-row-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.skeleton-nav-text {
    width: 60px;
    height: 14px;
    border-radius: 4px;
}

.skeleton-nav-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.skeleton-leaderboard-flex {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    gap: 30px;
}

.skeleton-standard-card {
    flex: 0 0 200px;
    width: 200px;
    padding: 16px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: transparent;
}

.skeleton-standard-cover {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* 5. Social Shelf Card Skeleton (Voice Presets) - Premium UI Match */
.skeleton-social-card {
    flex: 0 0 620px;
    width: 620px;
    padding: 32px;
    border-radius: 24px;
    margin-right: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #121212;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.skeleton-social-header {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.skeleton-social-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.skeleton-social-handle {
    width: 120px;
    height: 18px;
    border-radius: 4px;
}

.skeleton-social-body {
    display: flex;
    gap: 24px;
    align-items: center;
}

.skeleton-social-cover {
    width: 140px;
    height: 140px;
    border-radius: 12px;
    flex-shrink: 0;
}

.skeleton-social-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    width: 100%;
}

.skeleton-social-title {
    width: 70%;
    height: 28px;
    border-radius: 4px;
    margin-bottom: 4px;
}

.skeleton-social-btn {
    width: 120px;
    height: 38px;
    border-radius: 50px;
    margin-top: 4px;
}

.skeleton-social-actions {
    display: flex;
    gap: 32px;
    margin-top: 8px;
}

.skeleton-social-action-icon {
    width: 30px;
    height: 16px;
    border-radius: 4px;
}

.skeleton.circle {
    border-radius: 50% !important;
}

.skeleton-list-item-smart {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    min-height: 68px;
}

.skeleton-list-idx {
    width: 25px;
    height: 14px;
    border-radius: 2px;
}

.skeleton-list-cover {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    flex-shrink: 0;
}

.skeleton-list-info {
    flex: 0 0 150px;
    /* Match real content info width approx */
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.skeleton-list-name {
    width: 120px;
    height: 14px;
    border-radius: 3px;
}

.skeleton-list-artist {
    width: 80px;
    height: 10px;
    border-radius: 2px;
}

.skeleton-list-wave {
    flex: 1;
    height: 24px;
    border-radius: 4px;
    margin: 0 15px;
}

.skeleton-list-play {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* SHELF CARD SKELETON */
.skeleton-card-smart {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.skeleton-card-img {
    width: 200px;
    height: 200px;
    border-radius: 12px;
}

.skeleton-card-name {
    width: 140px;
    height: 14px;
    border-radius: 4px;
}

.skeleton-card-sub {
    width: 80px;
    height: 10px;
    border-radius: 2px;
}

.skeleton-row-title-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    margin-top: -20px;
}

.skeleton-row-title {
    width: 240px;
    height: 28px;
    border-radius: 6px;
}

/* ==========================================================
   PREMIUM SKELETON LOADERS (Sync with real components)
   ========================================================== */

/* Hero Skeleton Refined */
.skeleton-hero-content {
    flex: 1;
    max-width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 80px;
    gap: 24px;
}

/* Skeleton Container Fixes */
.skeleton-item {
    pointer-events: none !important;
    user-select: none !important;
}

.skeleton-item:hover {
    background: transparent !important;
    transform: none !important;
}

.skeleton-item .skeleton {
    background-color: #1a1a1a;
}

/* Specific alignments for list skeletons to match real rows */
.list-item-smart.skeleton-item .list-item-index {
    background: #1a1a1a;
    border-radius: 2px;
}

.list-item-smart.skeleton-item .list-item-img {
    background: #1a1a1a;
}

.list-item-smart.skeleton-item .list-play-btn.skeleton {
    background: #1a1a1a;
    box-shadow: none;
}

/* Card Skeleton specific overrides */
.product-card-smart.skeleton-item {
    cursor: default;
}

.product-card-smart.skeleton-item .card-cover-wrapper {
    background: #1a1a1a;
}

.product-card-smart.skeleton-item:hover {
    transform: none;
}

.list-item-index {
    width: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    color: #444;
    flex-shrink: 0;
}

.list-item-smart:hover .list-item-index {
    color: #8B5CF6;
}

.list-item-img {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
    background: #111;
    flex-shrink: 0;
}

.list-item-img.circle {
    border-radius: 50%;
}

.list-item-info {
    flex: 1;
    min-width: 0;
    /* CRITICAL */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 10px;
}

.list-item-name {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    width: 100%;
}

.list-item-sub {
    color: #666;
    font-size: 0.7rem;
    font-weight: 500;
}

.list-item-value {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.list-item-smart:hover .list-item-value {
    opacity: 1;
}

.list-play-btn {
    width: 28px;
    height: 28px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 0.8rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    border: none;
}

.list-play-btn i {
    margin-left: 1px;
    /* Center play icon optically */
}


/* LEADERBOARD STYLES - SPOTIFY STYLE */
.leaderboard-section {
    padding: 0 1.5rem;
    width: 100%;
}

.leaderboard-section .shelf-wrapper {
    max-width: 100%;
    /* Full width so right arrow goes to far right edge */
    margin-left: 0;
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Leaderboard arrows as flex items, NOT absolute */
.leaderboard-section .btn-nav {
    position: static;
    /* Override absolute */
    flex-shrink: 0;
}

.leaderboard-section .shelf-container {
    padding: 20px 0px 40px 0px;
    gap: 30px;
    justify-content: flex-start;
}

/* Container for the new producer cards */
.producer-card-circle-sp {
    position: relative;
    flex: 0 0 180px;
    /* Tamaño ajustado para 6 en pantalla */
    width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    scroll-snap-align: start;
    z-index: 1;
    /* Ensure card content is on top */
}

/* Spotify style fade-in & scale out background from center */
.producer-card-circle-sp::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #1a1a1a;
    border-radius: 8px;
    z-index: -1;
    opacity: 0;
    transform: scale(0);
    /* Start from zero at the center */
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.producer-card-circle-sp:hover::before {
    opacity: 1;
    transform: scale(1);
    /* Expand to full size */
}

.producer-avatar-wrapper {
    position: relative;
    margin-bottom: 16px;
    width: 100%;
}

.lb-badge-sp {
    position: absolute;
    top: -4px;
    left: -4px;
    background: #111;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #222;
    z-index: 5;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.producer-avatar-sp {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 3px solid transparent;
}

/* Legacy social post patterns removed */

/* Experimental vocal presets namespaced block removed */

/* Experimental post components removed */

/* --- FORMAT 3: Premium Download Card (Beats Style) --- */
.download-card-premium {
    flex: 0 0 200px;
    width: 200px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0;
    scroll-snap-align: start;
    margin-right: 24px;
}

.download-card-premium .card-header-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
}

.download-card-premium .header-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.download-card-premium .header-user {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 130px;
}

.download-card-premium .header-badge {
    color: #FFD700;
    font-size: 0.8rem;
}

.download-card-premium .card-media-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    background: #111;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.download-card-premium .card-media-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.download-card-premium:hover .card-media-wrapper img {
    transform: scale(1.05);
}

.download-card-premium .card-footer-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 4px 0;
}

.download-card-premium .card-action-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100%;
}

.download-card-premium .btn-premium-price {
    flex: 1;
    height: 40px !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 10px !important;
    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 0 12px !important;
    gap: 8px !important;
    font-weight: 800;
    font-size: 0.85rem;
    transition: all 0.2s;
    cursor: pointer;
}

.download-card-premium .btn-premium-price:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    transform: translateY(-2px);
}

.download-card-premium .btn-premium-price i {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.download-card-premium .btn-premium-download {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    border-radius: 10px !important;
    background: #38bdf8 !important;
    color: #000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.1rem !important;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none !important;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(56, 189, 248, 0.25);
}

.download-card-premium .btn-premium-download:hover {
    transform: scale(1.05) rotate(5deg);
    filter: brightness(1.1);
}

.download-card-premium .product-title {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    opacity: 0.9;
    padding: 0 2px;
}

@media (max-width: 768px) {
    .download-card-premium {
        flex: 0 0 170px;
        width: 170px;
        gap: 8px;
    }

    .download-card-premium .header-avatar {
        width: 24px;
        height: 24px;
    }

    .download-card-premium .btn-premium-price {
        height: 38px;
        font-size: 0.8rem;
        padding: 0 12px;
    }

    .download-card-premium .btn-premium-download {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}

.post-action.post-repost-btn.active i {
    color: #ffffff !important;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.4));
}

@keyframes heartBeat {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

.post-action .like-count,
.post-action .like-counter,
.post-action span {
    font-size: 0.8rem;
    font-weight: 600;
}

.post-action i {
    font-size: 1.1rem;
}

.producer-avatar-sp.rank-1 {
    border-color: #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.producer-avatar-sp.rank-2 {
    border-color: #C0C0C0;
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.2);
}

.producer-avatar-sp.rank-3 {
    border-color: #CD7F32;
    box-shadow: 0 0 20px rgba(205, 127, 50, 0.2);
}

.producer-avatar-sp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.producer-info-sp {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centering for circle cards */
    gap: 4px;
    width: 100%;
}

.producer-name-sp {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Group name and badge in center */
    gap: 6px;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.producer-score-sp {
    font-size: 0.8rem;
    color: #A7A7A7;
    font-weight: 600;
    margin-bottom: 12px;
    text-align: center;
    width: 100%;
    opacity: 0.8;
}

.lb-follow-btn-sp {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lb-follow-btn-sp:hover {
    border-color: #fff;
    transform: scale(1.05);
}

.lb-follow-btn-sp.following {
    background: #fff;
    border-color: #fff;
    color: #000;
}


@media (max-width: 900px) {

    /* === HERO & CONTENT ADJUSTMENTS === */
    .explore-hero {
        height: 240px !important;
        min-height: 240px !important;
        max-height: 240px !important;
        margin-top: 0 !important;
    }

    /* Skeleton must match real hero */
    .skeleton-hero {
        height: 240px !important;
        min-height: 240px !important;
        max-height: 240px !important;
    }

    #explore-feed {
        padding-top: 0 !important;
    }

    /* Missing Mobile Hero Styles */
    .hero-mobile-bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        z-index: 1;
        opacity: 0.85;
    }

    .hero-mobile-gradient {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
        z-index: 2;
    }

    .hero-mobile-info {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.7);
        margin-top: 2px;
        z-index: 5;
    }

    .hero-mobile-artist {
        font-weight: 600;
        color: #fff;
    }

    .hero-mobile-dot {
        opacity: 0.5;
    }
}

/* ========================================================================= */
/* CTA SECTION - EXPLORE PAGE BOTTOM */
/* ========================================================================= */
/* ========================================================================= */
/* PREMIUM NAMESPACED: VIDEO CTA BANNER (Editorial Strip) */
/* ========================================================================= */

.offszn-video-premium-banner {
    position: relative;
    margin: 80px 1.5rem 0 1.5rem;
    padding: 100px 80px;
    background: #000;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.offszn-video-premium-banner .banner-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 60%),
        url('../images/ambient-presets-bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    mix-blend-mode: soft-light;
    filter: saturate(0) contrast(1.2);
    z-index: 1;
}

.offszn-video-premium-banner .banner-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.offszn-video-premium-banner .banner-badges {
    display: flex;
    align-items: center;
    gap: 16px;
}

.offszn-video-premium-banner .badge-pill {
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 2px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

.offszn-video-premium-banner .badge-pill.youtube {
    background: rgba(255, 0, 0, 0.05);
    border-color: rgba(255, 0, 0, 0.2);
    color: #ff0000;
}

.offszn-video-premium-banner .badge-separator {
    color: rgba(255, 255, 255, 0.2);
    font-weight: 300;
}

.offszn-video-premium-banner .banner-title {
    font-family: 'Geist', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.06em;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
}

.offszn-video-premium-banner .banner-desc {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 400px;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.offszn-video-premium-banner .banner-desc strong {
    color: #fff;
}

.offszn-video-premium-banner .banner-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    padding: 16px 40px;
    border-radius: 50px;
    width: fit-content;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    margin-top: 10px;
}

.offszn-video-premium-banner .banner-cta:hover {
    background: #e5e5e5;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.offszn-video-premium-banner .banner-cta i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.offszn-video-premium-banner .banner-cta:hover i {
    transform: translateX(5px);
}

.circle-synergy {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.circle-synergy.c1 {
    width: 200px;
    height: 200px;
    top: 50px;
    left: 20px;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.02);
}

.circle-synergy.c2 {
    width: 200px;
    height: 200px;
    top: 50px;
    right: 20px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    backdrop-filter: blur(4px);
}

/* Mobile responsive */
@media (max-width: 900px) {
    .offszn-video-premium-banner {
        margin: 40px 1rem 0 1rem;
        padding: 60px 32px;
        flex-direction: column;
        border-radius: 24px;
        text-align: center;
        align-items: center;
    }

    .offszn-video-premium-banner .banner-content {
        align-items: center;
        width: 100%;
    }

    .offszn-video-premium-banner .banner-title {
        font-size: 3rem;
    }

    .offszn-video-premium-banner .banner-desc {
        font-size: 1.1rem;
        margin: 0 auto;
    }

    .offszn-video-premium-banner .banner-cta {
        margin: 0 auto;
    }

    .offszn-presets-vibe-row {
        left: 1rem;
        width: calc(100% - 2rem);
        padding: 40px 0 60px 0 !important;
    }

    .offszn-vocal-preset-card {
        width: 90vw;
        flex: 0 0 90vw;
        padding: 24px;
        margin-right: 20px;
    }
}

@media (max-width: 768px) {

    /* Shelf header mobile layout */
    .row-header {
        margin-bottom: 16px;
    }

    .row-title {
        font-size: 1.25rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding-right: 10px;
        flex: 1;

    }

    .view-all {
        display: none !important;
    }

    /* Voice Presets Mobile Refinement */
    .leaderboard-section {
        margin-bottom: 20px !important;
    }

    .explore-row {
        margin-bottom: 32px;
    }

    .preset-card-social {
        width: calc(100vw - 3rem);
        flex: 0 0 calc(100vw - 3rem);
        margin-right: 12px;
        padding: 20px;
        border-radius: 16px;
        gap: 12px;
        scroll-snap-align: center;
    }

    .preset-card-social .post-header {
        gap: 8px;
    }

    .preset-card-social .post-avatar {
        width: 36px;
        height: 36px;
    }

    .preset-card-social .post-user-handle {
        font-size: 1rem;
    }

    .preset-card-social .post-body {
        gap: 16px;
    }

    .preset-card-social .post-cover-wrapper {
        width: 100px;
        height: 100px;
    }

    .preset-card-social .post-title {
        font-size: 1.25rem;
        line-height: 1.2;
    }

    .preset-card-social .post-actions,
    .preset-card-social .post-options {
        display: none !important;
    }

    .explore-row:has(.preset-card-social) .shelf-container {
        scroll-snap-type: x mandatory;
        padding-bottom: 20px !important;
    }

    /* Skeleton Matches */
    .skeleton-social-card {
        width: calc(100vw - 3rem) !important;
        flex: 0 0 calc(100vw - 3rem) !important;
        margin-right: 12px !important;
        padding: 20px !important;
        border-radius: 16px !important;
        scroll-snap-align: center;
    }

    .skeleton-social-body {
        gap: 16px !important;
    }

    .skeleton-social-cover {
        width: 100px !important;
        height: 100px !important;
    }

    .skeleton-social-actions {
        display: none !important;
    }
}

/* ==========================================================
   PRODUCER OF THE WEEK (PW) SECTION - Spotlight 40/60
   ========================================================== */
.pw-section {
    margin: 40px 0 60px 0;
    padding: 0 1.5rem;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.pw-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.pw-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.pw-view-all {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    text-decoration: none;
}

.pw-view-all:hover {
    background: rgba(255, 255, 255, 0.12);
    /* Sutil en lugar de pleno blanco */
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.pw-view-all:hover i {
    transform: translateX(4px);
}

.pw-grid {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 40px;
    align-items: flex-start;
}

/* 1. Featured Side */
.pw-featured-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    background: #0a0a0a;
    cursor: pointer;
    transition: transform 0.4s ease;
}



.pw-featured-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.pw-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}


.pw-featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    pointer-events: none;
    z-index: 4;
}

.pw-featured-stats {
    display: none;
    /* Hidden on Desktop */
}

.pw-featured-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    opacity: 0.9;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Play Button Overlay (Desktop Only) */
.pw-featured-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 5;
}

.pw-featured-card:hover .pw-featured-play-overlay {
    opacity: 1;
}

.pw-featured-play-btn {
    width: 50px;
    /* Un poco más pequeño a petición del usuario */
    height: 50px;
    border-radius: 50%;
    background: #fff;
    /* Inicia blanco */
    color: #000;
    /* Texto/Icono negro */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: none;
    /* Se quitan transiciones de hover */
    pointer-events: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: none;
}

.pw-featured-play-btn i {
    font-size: 1.6rem;
    margin-left: 3px;
}

/* Se quita el hover del botón de play */
.pw-featured-play-btn:hover {
    transform: none;
    background: #fff;
    color: #000 !important;
}

/* 2. Tracks Grid (2 Columns) */
.pw-tracks-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 16px 32px;
}

.pw-track-item {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    padding: 8px 12px;
    margin: 0 -12px;
    border-radius: 8px;
}

.pw-track-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.pw-track-cover-wrapper {
    position: relative;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #111;
}

.pw-track-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.pw-track-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.pw-track-play-overlay i {
    color: #fff;
    font-size: 1.4rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.pw-track-item:hover .pw-track-play-overlay {
    opacity: 1;
}

.pw-track-item:hover .pw-track-play-overlay i {
    transform: scale(1);
}

.pw-track-info {
    flex: 1;
    min-width: 0;
}

.pw-track-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.pw-track-hashtags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.pw-track-tag {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
    padding: 2px 10px;
    border-radius: 4px;
    font-weight: 600;
}

/* Price Pill Button */
.pw-track-btn-pill {
    background: #fff;
    /* Inicia blanco (Botón primario) */
    border: none;
    color: #000;
    /* Texto negro */
    padding: 8px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 800;
    transition: all 0.2s ease;
    /* Transición suave recuperada */
    min-width: 100px;
    justify-content: center;
}

.pw-track-btn-pill:hover {
    background: #e5e5e5;
    /* Gris muy claro sutil */
    color: #000;
    transform: translateY(-1px);
    /* Elevación mínima premium */
}

/* Responsiveness */
@media (max-width: 1100px) {
    .pw-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .pw-featured-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 900px) {
    .pw-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .pw-grid {
        display: block;
    }

    .pw-tracks-grid {
        display: none !important;
    }

    /* Transition Hero to Compact Row */
    .pw-featured-card {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 20px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
        padding: 16px;
        aspect-ratio: auto;
        border-radius: 16px;
    }

    .pw-featured-img-wrapper {
        width: 100px;
        height: 100px;
        flex-shrink: 0;
        border-radius: 12px;
        aspect-ratio: auto;
    }

    .pw-featured-content {
        position: static;
        padding: 0;
        background: none;
        pointer-events: auto;
    }

    .pw-featured-name {
        font-size: 1.25rem;
        margin-bottom: 8px;
        white-space: normal;
    }

    .pw-featured-stats {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .pw-stat-row {
        display: flex;
        align-items: baseline;
        gap: 6px;
    }

    .pw-stat-value {
        font-size: 0.9rem;
        font-weight: 800;
        color: #fff;
    }

    .pw-stat-label {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.4);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .pw-featured-play-overlay {
        opacity: 1;
        /* Always show small play btn on mobile */
        background: transparent;
    }

    .pw-featured-play-btn {
        width: 44px;
        height: 44px;
    }

    .pw-featured-play-btn i {
        font-size: 1.5rem;
    }
}

@media (max-width: 600px) {
    .pw-section {
        padding: 0 1rem;
    }

    .pw-title {
        font-size: 1.3rem;
    }
}