/* ==========================================
   mDeLolo "Idioma Roto" Landing CSS
   Design System: Collage / Grunge Zine / Modern Raw
   ========================================== */

/* Variables */
:root {
    --color-bg-primary: #121212;
    --color-bg-grunge: #8f1c1c; /* Blood red vibe fallback */
    --color-accent-orange: #ff5500; /* SoundCloud orange */
    --color-accent-yellow: #ffcb05; /* Spotify/Street yellow */
    --color-text-light: #f7f5f0; /* Cream off-white */
    --color-text-dark: #181818;
    --color-card-bg: rgba(24, 24, 24, 0.85);
    --color-paper-white: #eae7dc;
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --shadow-heavy: 8px 8px 0px rgba(0, 0, 0, 0.95);
    --shadow-medium: 4px 4px 0px rgba(0, 0, 0, 0.9);
    --border-thick: 4px solid #000;
}

/* Reset */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg-primary);
    background-image: url('assets/images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    /* Custom arrow cursor — SVG, naranja de marca, sin fondo */
    cursor: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMyAxIEwzIDE5IEw3LjUgMTQgTDExIDIyIEwxMy41IDIwLjggTDEwIDEzLjUgTDE2IDEzLjUgWiIgZmlsbD0iI2ZmNTUwMCIgc3Ryb2tlPSIjMDAwIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPjwvc3ZnPg==") 3 1, auto;
}

/* Noise overlay */
.background-grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.08'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

.grunge-vignette {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle, transparent 40%, rgba(0, 0, 0, 0.85) 100%);
    pointer-events: none;
    z-index: 998;
}

/* ==========================================
   INTERACTIVE DUST PARTICLES
   ========================================== */
#dust-container {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10; /* sits behind main headers/interactives but above background */
    pointer-events: none;
    overflow: hidden;
}

.dust-particle {
    position: absolute;
    background-color: rgba(247, 245, 240, 0.85); /* Cream dust color matching typography */
    border-radius: 50%;
    pointer-events: none;
}

.dust-particle.trail {
    z-index: 9999; /* trail is on top of elements */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    background: #000;
}
::-webkit-scrollbar-thumb {
    background: var(--color-accent-orange);
    border: 3px solid #000;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent-yellow);
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    border-bottom: 2px solid rgba(255, 85, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo-link {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 45px;
    filter: invert(1) brightness(1.2); /* Invert graffiti logo to render white on dark bg */
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.1) rotate(-3deg);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-item {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    padding: 5px 10px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: var(--color-accent-orange);
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-item:hover {
    color: var(--color-accent-orange);
}

.nav-item:hover::after {
    width: 100%;
    left: 0;
}

/* Main Layout Elements */
main {
    padding-top: 80px; /* Space for fixed header */
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Tape Header Styles */
.tape-header {
    background: var(--color-accent-orange);
    color: #fff;
    padding: 12px 28px;
    display: inline-block;
    border: var(--border-thick);
    transform: rotate(-1.5deg) skewX(-3deg);
    box-shadow: var(--shadow-medium);
    margin-bottom: 40px;
}

.tape-header.red-tape {
    background: #c92a2a;
}

.tape-header.green-tape {
    background: #2b8a3e;
}

.section-title {
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.5);
}

/* ------------------------------------------
   HERO SECTION
   ------------------------------------------ */
.hero-section {
    display: flex;
    align-items: center;
    min-height: auto;
    position: relative;
    padding: 25px 20px;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 60px;
    align-items: center;
}

/* Hero Left: Album Art Card */
.hero-artwork-container {
    display: flex;
    justify-content: center;
    position: relative;
}

.artwork-card {
    position: relative;
    max-width: 440px;
    width: 100%;
    aspect-ratio: 1;
    border: 8px solid var(--color-paper-white);
    background: #000;
    box-shadow: var(--shadow-heavy);
    transform: rotate(-2deg);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    cursor: grab;
    z-index: 10;
}

.artwork-card:hover {
    box-shadow: 15px 15px 0px rgba(0, 0, 0, 0.95);
}

.album-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Tape corners */
.tape-corner {
    position: absolute;
    width: 110px;
    height: 35px;
    background: rgba(240, 235, 215, 0.5);
    backdrop-filter: blur(1.5px);
    box-shadow: inset 0 0 5px rgba(0,0,0,0.1), 2px 2px 5px rgba(0,0,0,0.15);
    z-index: 20;
}

.tape-corner.top-left {
    top: -20px;
    left: -35px;
    transform: rotate(-40deg);
    border-left: 2px dashed rgba(0,0,0,0.1);
    border-right: 2px dashed rgba(0,0,0,0.1);
}

.tape-corner.bottom-right {
    bottom: -20px;
    right: -35px;
    transform: rotate(-35deg);
    border-left: 2px dashed rgba(0,0,0,0.1);
    border-right: 2px dashed rgba(0,0,0,0.1);
}

/* Hero Right: Content */
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.artist-badge-container {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.badge-distressed {
    font-family: monospace;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 4px 12px;
    background: #1e1e1e;
    color: var(--color-accent-yellow);
    border: 2px dashed var(--color-accent-yellow);
    transform: rotate(-1.5deg);
    letter-spacing: 0.05em;
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.8);
    display: inline-block;
    text-shadow: none;
}

.badge-distressed.artist-tag {
    background: var(--color-accent-orange);
    color: #fff;
    border: 2px dashed #fff;
    transform: rotate(2deg);
}

.album-title-wrapper {
    margin-bottom: 10px;
    max-width: 500px;
}

.album-title-img {
    width: 100%;
    display: block;
    filter: drop-shadow(4px 4px 0px rgba(0,0,0,0.85));
}

.artist-subtitle-wrapper {
    margin-bottom: 15px;
    max-width: 250px;
    margin-left: 10px;
}

.artist-subtitle-img {
    width: 100%;
    display: block;
    filter: invert(1) drop-shadow(3px 3px 0px rgba(0,0,0,0.85));
}

.hero-tagline {
    font-size: 1.25rem;
    color: #e5e5e5;
    margin-bottom: 20px;
    font-weight: 300;
    max-width: 550px;
    border-left: 4px solid var(--color-accent-orange);
    padding-left: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.hero-tagline strong {
    color: var(--color-accent-orange);
    font-weight: 600;
}

.cta-container {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-button {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    padding: 18px 36px;
    background: #fff;
    color: #000;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    border: var(--border-thick);
    box-shadow: var(--shadow-heavy);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-accent-orange);
    z-index: 1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.cta-button:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.cta-button:hover {
    transform: translate(-3px, -3px);
    box-shadow: 12px 12px 0px rgba(0,0,0,1);
    color: #fff;
}

.cta-button:active {
    transform: translate(2px, 2px);
    box-shadow: 4px 4px 0px rgba(0,0,0,1);
}

.cta-text, .cta-icon {
    position: relative;
    z-index: 2;
}

.cta-icon {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-icon {
    transform: translate(5px, 0);
}

.quick-links {
    display: flex;
    gap: 12px;
}

.quick-icon-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid #000;
    background: var(--color-card-bg);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 3px 3px 0px #000;
}

.quick-icon-btn:hover {
    transform: translateY(-4px) rotate(8deg);
    color: #000;
    box-shadow: 5px 5px 0px #000;
}

.quick-icon-btn.spotify:hover {
    background: #1db954;
}

.quick-icon-btn.soundcloud:hover {
    background: var(--color-accent-orange);
}

.quick-icon-btn.youtube:hover {
    background: #ff0000;
}

/* ------------------------------------------
   MUSIC & PLAYER SECTION
   ------------------------------------------ */
.music-section {
    background: rgba(18, 18, 18, 0.92);
    border-top: 4px solid #000;
    border-bottom: 4px solid #000;
    position: relative;
}

.player-container.single-player {
    max-width: 800px;
    margin: 20px auto 0 auto;
    display: block;
}

/* Custom tape frame around player */
.player-wrapper {
    position: relative;
    padding: 15px;
    background: var(--color-paper-white);
    border: var(--border-thick);
    box-shadow: var(--shadow-heavy);
}

.player-wrapper iframe {
    display: block;
    border: 3px solid #000;
    background: #000;
}

.soundcloud-footer-link {
    margin-top: 10px;
    font-size: 11px;
    color: #444;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: 'Interstate', sans-serif;
    padding: 0 5px;
}

.sc-link {
    color: #444;
    text-decoration: none;
    font-weight: 100;
}

.sc-link:hover {
    color: var(--color-accent-orange);
}

/* Download Button Styling */
.download-action-container {
    text-align: center;
    margin-top: 40px;
}

.download-button {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 0.05em;
    padding: 16px 32px;
    background: var(--color-accent-yellow);
    color: #000;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: var(--border-thick);
    box-shadow: var(--shadow-medium);
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.download-button:hover {
    transform: translateY(-4px);
    box-shadow: 8px 8px 0px #000;
    background: #fff;
}

.download-button:active {
    transform: translateY(1px);
    box-shadow: 2px 2px 0px #000;
}

.download-icon {
    display: flex;
    align-items: center;
}

/* ------------------------------------------
   ABOUT SECTION
   ------------------------------------------ */
.about-section {
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* Artist Sticker Style */
.artist-sticker-wrapper {
    display: flex;
    justify-content: center;
}

.sticker-container {
    position: relative;
    max-width: 380px;
    width: 100%;
    border: 12px solid #fff;
    background: #000;
    box-shadow: 12px 12px 0px rgba(0, 0, 0, 0.95);
    transform: rotate(2deg);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    cursor: pointer;
}

.sticker-container:hover {
    transform: scale(1.03) rotate(-1deg);
    box-shadow: 18px 18px 0px rgba(0, 0, 0, 0.95);
}

.artist-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Sticker peel effect */
.sticker-peel {
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #fff 50%, rgba(0, 0, 0, 0.8) 50%);
    box-shadow: -2px -2px 5px rgba(0,0,0,0.1);
    transform-origin: bottom right;
    pointer-events: none;
}

.bio-content {
    display: flex;
    flex-direction: column;
}

.bio-card {
    background: var(--color-card-bg);
    border: var(--border-thick);
    padding: 40px;
    box-shadow: var(--shadow-heavy);
    backdrop-filter: blur(10px);
}

.bio-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #e2e2e2;
    font-weight: 300;
}

.bio-text strong {
    color: var(--color-accent-yellow);
    font-weight: 600;
}

.signature-wrapper {
    margin-top: 30px;
    text-align: right;
    max-width: 180px;
    margin-left: auto;
}

.bio-signature {
    width: 100%;
    filter: invert(1);
}

/* ------------------------------------------
   LINKS GRID SECTION
   ------------------------------------------ */
.links-section {
    background: rgba(10, 10, 10, 0.96);
    border-top: 4px solid #000;
    position: relative;
    text-align: center;
}

.links-intro {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 50px auto;
    font-weight: 300;
    color: #ccc;
    text-shadow: 1px 1px 2px #000;
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.social-card {
    background: #000;
    border: 3px solid #333;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 5px 5px 0px #000;
    cursor: pointer;
}

.social-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: #fff;
    box-shadow: 8px 8px 0px #000;
}

.social-icon-wrapper {
    color: #888;
    transition: color 0.2s ease, transform 0.3s ease;
}

.social-card:hover .social-icon-wrapper {
    transform: scale(1.2) rotate(-5deg);
}

.social-details {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
}

.social-handle {
    font-size: 0.8rem;
    color: #666;
    margin-top: 4px;
}

/* Individual Brand Hover Styling */
.spotify-card:hover {
    border-color: #1db954;
}
.spotify-card:hover .social-icon-wrapper {
    color: #1db954;
}

.soundcloud-card:hover {
    border-color: var(--color-accent-orange);
}
.soundcloud-card:hover .social-icon-wrapper {
    color: var(--color-accent-orange);
}

.tiktok-card:hover {
    border-color: #ff0050;
}
.tiktok-card:hover .social-icon-wrapper {
    color: #ff0050;
}

.instagram-card:hover {
    border-color: #e1306c;
}
.instagram-card:hover .social-icon-wrapper {
    color: #e1306c;
}

.youtube-card:hover {
    border-color: #ff0000;
}
.youtube-card:hover .social-icon-wrapper {
    color: #ff0000;
}

/* ------------------------------------------
   SHOP SECTION (EDICIÓN LIMITADA)
   ------------------------------------------ */
.shop-section {
    background: rgba(18, 18, 18, 0.95);
    border-top: 4px solid #000;
    border-bottom: 4px solid #000;
    position: relative;
}

.shop-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.shop-content-card {
    background: var(--color-card-bg);
    border: var(--border-thick);
    padding: 40px;
    box-shadow: var(--shadow-heavy);
    backdrop-filter: blur(10px);
}

.limited-edition-stamp {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    background: var(--color-accent-orange);
    color: #fff;
    padding: 5px 12px;
    display: inline-block;
    transform: rotate(-1.5deg);
    margin-bottom: 20px;
    border: 2px solid #000;
    font-weight: 800;
    box-shadow: 2px 2px 0px #000;
}

.shop-item-title {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 15px;
    border-bottom: 2px dashed rgba(255, 255, 255, 0.15);
    padding-bottom: 10px;
}

.shop-item-description {
    font-size: 1.15rem;
    color: var(--color-accent-yellow);
    margin-bottom: 20px;
    font-weight: 600;
}

.shop-item-details {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 30px;
    font-weight: 300;
    line-height: 1.7;
}

.shop-status-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    border-top: 2px dashed rgba(255, 85, 0, 0.3);
    padding-top: 25px;
}

.copies-counter {
    display: flex;
    flex-direction: column;
}

.counter-label {
    font-size: 0.75rem;
    color: #777;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.counter-val {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-accent-orange);
    font-weight: 800;
}

.shop-button {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.05em;
    padding: 14px 28px;
    background: #fff;
    color: #000;
    border: 3px solid #000;
    box-shadow: var(--shadow-medium);
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}

.shop-button:hover {
    transform: translateY(-3px);
    box-shadow: 6px 6px 0px #000;
    background: var(--color-accent-orange);
    color: #fff;
}

.shop-button:active {
    transform: translateY(1px);
    box-shadow: 2px 2px 0px #000;
}

.shop-visual-card {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cd-collage-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px; /* Agrandado para verse bien y destacar */
    aspect-ratio: 3 / 2; /* Proporción horizontal exacta de la imagen (1536x1024) */
    cursor: pointer;
    margin: 0 auto;
}

.shop-album-cover {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Mantiene la proporción original completa sin cortes */
    border: var(--border-thick);
    box-shadow: var(--shadow-heavy);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    background: #000;
}

.vinyl-disc-overlay {
    display: none; /* Ocultado ya que no es un CD cuadrado y no tiene sentido visual */
}

.tape-sticker {
    position: absolute;
    bottom: 12px;
    left: -12px;
    background: #faf8f5;
    color: #000;
    border: 3px solid #000;
    padding: 5px 15px;
    font-family: monospace;
    z-index: 10; /* Encima de la imagen */
    font-weight: 800;
    font-size: 0.95rem;
    transform: rotate(-8deg);
    z-index: 10;
    box-shadow: 3px 3px 0px rgba(0,0,0,0.85);
}

/* ------------------------------------------
   FOOTER SECTION
   ------------------------------------------ */
.footer {
    border-top: 4px solid #000;
    background: #000;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.footer-logo-wrapper {
    max-width: 150px;
}

.footer-logo {
    width: 100%;
    filter: invert(1);
}

.footer-copyright {
    font-size: 0.85rem;
    color: #555;
    font-weight: 300;
}

.footer-banner-img {
    width: 220px; /* Agrandado desde 132px */
    height: auto;
    display: inline-block;
    image-rendering: pixelated; /* Para mantener el aspecto retro crisp */
    transition: transform 0.2s ease-in-out;
}

.footer-banner-img:hover {
    transform: scale(1.08) rotate(2deg);
}


@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-artwork-container {
        order: 1;
    }
    
    .hero-content {
        order: 2;
        align-items: center;
    }
    
    .hero-tagline {
        border-left: none;
        border-top: 3px solid var(--color-accent-orange);
        padding-left: 0;
        padding-top: 15px;
        max-width: 100%;
    }
    
    .cta-container {
        justify-content: center;
    }
    
    .player-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .shop-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .cd-collage-wrapper {
        margin: 0 auto;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .artist-sticker-wrapper {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* Prevent scale animations from scaling elements beyond screen edges */
    .artwork-card, .sticker-container, .cd-collage-wrapper, .shop-content-card, .bio-card {
        max-width: 100% !important;
        transform: none !important;
        transition: none !important;
    }
    
    /* Disable interactive 3D tilt effects on touchscreens */
    .artwork-card:hover, .sticker-container:hover, .cd-collage-wrapper:hover {
        transform: none !important;
        box-shadow: var(--shadow-heavy) !important;
    }
    
    /* Hide overflowing tape corners on mobile viewports */
    .tape-corner {
        display: none !important;
    }

    .nav-links {
        display: none; /* Hide top nav links on small mobile; simple mobile layout */
    }
    
    .section-container {
        padding: 30px 15px;
        width: 100%;
        overflow: hidden;
    }
    
    .hero-section {
        padding: 20px 15px;
        width: 100%;
        overflow: hidden;
    }
    
    .tape-header {
        width: 100%;
        text-align: center;
        transform: none !important;
        margin-bottom: 25px;
    }
    
    .bio-card {
        padding: 20px;
    }
    
    .shop-content-card {
        padding: 20px;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .cta-container {
        width: 100%;
        flex-direction: column;
    }
}


/* ==========================================
   DOWNLOAD MODAL
   ========================================== */

/* Overlay */
.download-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: modalFadeIn 0.25s ease forwards;
}

.download-modal-overlay.closing {
    animation: modalFadeOut 0.22s ease forwards;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes modalFadeOut {
    from { opacity: 1; }
    to   { opacity: 0; }
}

/* Panel */
.download-modal-panel {
    background: #111;
    border: 4px solid #000;
    box-shadow: 12px 12px 0px #000, 0 0 0 1px rgba(255, 85, 0, 0.25);
    width: 100%;
    max-width: 680px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    position: relative;
    animation: panelSlideIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    overflow: hidden;
}

@keyframes panelSlideIn {
    from { transform: translateY(40px) scale(0.96); opacity: 0; }
    to   { transform: translateY(0) scale(1); opacity: 1; }
}

/* Close button */
.modal-close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 20;
    background: #000;
    border: 3px solid #333;
    color: #aaa;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.modal-close-btn:hover {
    background: #ff5500;
    border-color: #ff5500;
    color: #fff;
    transform: rotate(90deg);
}

/* Tape strip decoration */
.modal-tape-strip {
    height: 10px;
    background: repeating-linear-gradient(
        90deg,
        var(--color-accent-orange) 0px,
        var(--color-accent-orange) 40px,
        #000 40px,
        #000 44px
    );
    margin-bottom: 20px;
    border-bottom: 3px solid #000;
}

/* Header */
.modal-header {
    padding: 0 28px 0 28px;
    flex-shrink: 0;
}

.modal-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-right: 50px; /* space for close btn */
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1;
    margin-bottom: 6px;
}

.modal-subtitle {
    font-size: 0.85rem;
    color: var(--color-accent-orange);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.modal-album-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border: 3px solid #333;
    overflow: hidden;
}

.modal-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Download All button */
.modal-download-all-wrap {
    padding: 20px 28px 0;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.modal-download-all-btn {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.05em;
    padding: 14px 28px;
    background: var(--color-accent-yellow);
    color: #000;
    border: 4px solid #000;
    box-shadow: 5px 5px 0px #000;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.18s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    flex-shrink: 0;
}

.modal-download-all-btn:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0px #000;
    background: #fff;
}

.modal-download-all-btn:active {
    transform: translate(1px, 1px);
    box-shadow: 2px 2px 0px #000;
}

.modal-download-all-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.modal-download-note {
    font-size: 0.8rem;
    color: var(--color-accent-orange);
    font-weight: 600;
    letter-spacing: 0.04em;
    animation: blinkNote 1s ease infinite;
}

@keyframes blinkNote {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}

/* Divider */
.modal-divider {
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent-orange), transparent);
    margin: 18px 28px 0;
    flex-shrink: 0;
}

/* Tracklist wrapper — scrollable */
.modal-tracklist-wrap {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 16px 28px 10px;
    margin-top: 16px;
    border-top: 3px solid #222;
    border-bottom: 3px solid #222;
    /* Custom scrollbar inside modal */
    scrollbar-width: thin;
    scrollbar-color: var(--color-accent-orange) #000;
}

.modal-tracklist-wrap::-webkit-scrollbar {
    width: 6px;
}
.modal-tracklist-wrap::-webkit-scrollbar-track {
    background: #000;
}
.modal-tracklist-wrap::-webkit-scrollbar-thumb {
    background: var(--color-accent-orange);
    border-radius: 0;
}

/* Tracklist */
.modal-tracklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Individual track row */
.modal-track-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 11px 14px;
    border: 2px solid transparent;
    background: #0e0e0e;
    transition: all 0.15s ease;
    cursor: default;
}

.modal-track-item:nth-child(odd) {
    background: #0a0a0a;
}

.modal-track-item:hover {
    background: #1a1a1a;
    border-color: #333;
    transform: translateX(4px);
}

.track-num {
    font-family: monospace;
    font-size: 0.8rem;
    color: #555;
    min-width: 28px;
    text-align: right;
    flex-shrink: 0;
    letter-spacing: 0.05em;
}

.track-name {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 400;
    color: #ddd;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.15s ease;
}

.modal-track-item:hover .track-name {
    color: #fff;
}

.track-feat {
    font-size: 0.8rem;
    color: var(--color-accent-orange);
    font-weight: 600;
}

/* Contador de descargas inline por tema */
.track-inline-count {
    flex-shrink: 0;
    font-family: monospace;
    font-size: 0.72rem;
    color: #444;
    min-width: 22px;
    text-align: right;
    transition: color 0.3s ease, transform 0.2s ease;
    cursor: default;
}

.modal-track-item:hover .track-inline-count {
    color: #666;
}

.track-dl-btn {
    flex-shrink: 0;
    background: transparent;
    border: 2px solid #333;
    color: #666;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s ease;
    border-radius: 0;
}

.track-dl-btn:hover {
    background: var(--color-accent-orange);
    border-color: var(--color-accent-orange);
    color: #fff;
    transform: scale(1.1);
}

.track-dl-btn:active {
    transform: scale(0.95);
}

.track-dl-btn.downloaded {
    background: #2b8a3e;
    border-color: #2b8a3e;
    color: #fff;
}

/* Artwork section */
.modal-artwork-section {
    flex-shrink: 0;
    padding: 16px 28px 22px;
    border-top: 3px solid #1e1e1e;
}

.modal-artwork-title {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: #666;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.modal-artwork-grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.modal-artwork-btn {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 8px 16px;
    background: transparent;
    color: #888;
    border: 2px solid #333;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.15s ease;
    text-transform: uppercase;
}

.modal-artwork-btn:hover {
    background: #fff;
    border-color: #fff;
    color: #000;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .download-modal-panel {
        max-height: 95vh;
        border-width: 3px;
    }

    .modal-header {
        padding: 0 16px 0 16px;
    }

    .modal-title {
        font-size: 1.8rem;
    }

    .modal-album-thumb {
        width: 60px;
        height: 60px;
    }

    .modal-download-all-wrap {
        padding: 16px 16px 0;
    }

    .modal-tracklist-wrap {
        padding: 12px 16px 8px;
    }

    .modal-artwork-section {
        padding: 14px 16px 18px;
    }

    .modal-track-item {
        padding: 10px 10px;
    }

    .modal-download-all-btn {
        font-size: 0.85rem;
        padding: 12px 18px;
    }
}


/* ==========================================
   NEW GIF BADGE — tienda / shop section
   ========================================== */
.new-gif-badge {
    position: absolute;
    top: -24px; /* Ajustado para el nuevo tamaño */
    right: -24px; /* Ajustado para el nuevo tamaño */
    z-index: 20;
    pointer-events: none;
    /* Gentle float animation */
    animation: newGifFloat 2s ease-in-out infinite;
}

.new-gif-img {
    width: 76px; /* Agrandado de 52px */
    height: auto;
    display: block;
    image-rendering: pixelated; /* Keep GIF crispy */
    filter: drop-shadow(2px 2px 0px rgba(0,0,0,0.7));
}

@keyframes newGifFloat {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50%       { transform: translateY(-5px) rotate(3deg); }
}

/* ==========================================
   WALLPAPERS SECTION
   ========================================== */
.wallpapers-section {
    background: rgba(12, 12, 12, 0.95);
    border-top: 4px solid #000;
    border-bottom: 4px solid #000;
    position: relative;
}

.tape-header.purple-tape {
    background: #6a3caf;
}

.wallpapers-intro {
    font-size: 1.1rem;
    color: #ccc;
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 600px;
}

.wallpapers-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.wp-category {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.wp-category-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--color-accent-orange);
    text-transform: uppercase;
    border-bottom: 2px solid rgba(255,85,0,0.3);
    padding-bottom: 8px;
}

.wp-items-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* --- Wallpaper item card --- */
.wp-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 200px;
    flex-shrink: 0;
}

.wp-item.wp-item-mobile {
    width: 120px;
}

/* Thumbnail wrapper — fixed height for small preview */
.wp-thumb-wrapper {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
    border: 3px solid #333;
    background: #000;
    box-shadow: 4px 4px 0px #000;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wp-thumb-wrapper:hover {
    border-color: var(--color-accent-orange);
    box-shadow: 6px 6px 0px #000;
}

.wp-thumb-wrapper.wp-thumb-mobile {
    height: 200px;
}

.wp-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.4s ease;
}

.wp-thumb-wrapper:hover .wp-thumb {
    transform: scale(1.05);
}

.wp-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.wp-thumb-wrapper:hover .wp-overlay {
    opacity: 1;
}

.wp-dl-btn {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    padding: 8px 14px;
    background: var(--color-accent-yellow);
    color: #000;
    border: 2px solid #000;
    box-shadow: 3px 3px 0px #000;
    cursor: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMyAxIEwzIDE5IEw3LjUgMTQgTDExIDIyIEwxMy41IDIwLjggTDEwIDEzLjUgTDE2IDEzLjUgWiIgZmlsbD0iI2ZmNTUwMCIgc3Ryb2tlPSIjMDAwIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPjwvc3ZnPg==") 3 1, pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.15s ease;
    text-transform: uppercase;
}

.wp-dl-btn:hover {
    background: #fff;
    transform: scale(1.05);
}

.wp-dl-btn:active {
    transform: scale(0.97);
    box-shadow: 1px 1px 0px #000;
}

.wp-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.wp-name {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #eee;
}

.wp-size {
    font-size: 0.72rem;
    color: #666;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.wp-dl-count-badge {
    font-size: 0.72rem;
    color: var(--color-accent-orange);
    font-weight: 600;
}

.wp-dl-count {
    font-weight: 800;
}

/* ==========================================
   VISIT COUNTER (footer)
   ========================================== */
.visit-counter-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 30px;
    background: #0a0a0a;
    border: 3px solid #222;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

.visit-counter-label {
    font-family: monospace;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: #555;
    text-transform: uppercase;
}

.visit-counter-display {
    display: flex;
    gap: 4px;
    background: #000;
    padding: 10px 16px;
    border: 2px solid #1a1a1a;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.8), 0 0 12px rgba(255,85,0,0.15);
}

.visit-digit {
    font-family: 'Courier New', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-accent-orange);
    width: 1.5ch;
    text-align: center;
    text-shadow: 0 0 8px rgba(255,85,0,0.6);
    display: inline-block;
    background: #050505;
    border: 1px solid #1a1a1a;
    padding: 2px 4px;
    line-height: 1;
}

.visit-counter-since {
    font-size: 0.7rem;
    color: #444;
    letter-spacing: 0.08em;
    font-style: italic;
}

/* ==========================================
   DOWNLOAD COUNTER BADGE (music section)
   ========================================== */
.dl-counter-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 0.8rem;
    color: #666;
    font-weight: 400;
}

.dl-counter-icon {
    font-size: 0.9rem;
    color: var(--color-accent-orange);
}

/* ZIP download counter in modal */
.modal-zip-wrap {
    padding: 18px 28px 0;
    flex-shrink: 0;
}

.modal-zip-btn {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    padding: 14px 24px;
    background: var(--color-accent-orange);
    color: #fff;
    border: 3px solid #000;
    box-shadow: 5px 5px 0px #000;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.18s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    text-decoration: none;
}

.modal-zip-btn:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0px #000;
    background: #fff;
    color: #000;
}

.modal-zip-btn:active {
    transform: translate(1px, 1px);
    box-shadow: 2px 2px 0px #000;
}

.modal-zip-dl-count {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
    font-size: 0.78rem;
    color: #555;
}

.zip-dl-icon {
    color: var(--color-accent-orange);
}

/* ==========================================
   SHARE WEB & STORIES POPUP
   ========================================== */
.share-section-footer {
    margin-top: 15px;
    width: 100%;
}

.share-trigger-btn {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    padding: 12px 24px;
    background: transparent;
    color: #fff;
    border: 3px solid #333;
    box-shadow: 4px 4px 0px #000;
    cursor: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMyAxIEwzIDE5IEw3LjUgMTQgTDExIDIyIEwxMy41IDIwLjggTDEwIDEzLjUgTDE2IDEzLjUgWiIgZmlsbD0iI2ZmNTUwMCIgc3Ryb2tlPSIjMDAwIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPjwvc3ZnPg==") 3 1, pointer;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
}

.share-trigger-btn:hover {
    background: var(--color-accent-orange);
    border-color: var(--color-accent-orange);
    transform: translateY(-3px);
    box-shadow: 6px 6px 0px #000;
}

.share-trigger-btn:active {
    transform: translateY(1px);
    box-shadow: 2px 2px 0px #000;
}

/* Share Modal Overlay */
.share-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 11000;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: modalFadeIn 0.25s ease forwards;
}

/* Modal Panel */
.share-modal-panel {
    background: #111;
    border: 4px solid #000;
    box-shadow: 12px 12px 0px #000;
    width: 100%;
    max-width: 460px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 30px 24px;
    animation: panelSlideIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    overflow-y: auto;
    max-height: 90vh;
}

.share-modal-close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 20;
    background: #000;
    border: 3px solid #333;
    color: #aaa;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMyAxIEwzIDE5IEw3LjUgMTQgTDExIDIyIEwxMy41IDIwLjggTDEwIDEzLjUgTDE2IDEzLjUgWiIgZmlsbD0iI2ZmNTUwMCIgc3Ryb2tlPSIjMDAwIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPjwvc3ZnPg==") 3 1, pointer;
    transition: all 0.2s ease;
}

.share-modal-close-btn:hover {
    background: #ff5500;
    border-color: #ff5500;
    color: #fff;
    transform: rotate(90deg);
}

.share-modal-header {
    text-align: center;
    margin-bottom: 20px;
}

.share-modal-header h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.share-modal-header p {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
}

/* Card Visual Wrapper & Elements */
.share-card-canvas-wrapper {
    background: #181818;
    border: 2px solid #222;
    padding: 16px;
    margin-bottom: 24px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    width: 100%;
}

/* The actual sharing card: vertical 9:16 layout optimized for stories */
.share-card-visual {
    width: 270px;
    height: 480px; /* 9:16 aspect ratio */
    background: #8f1c1c; /* Distressed red base */
    border: 6px solid #eae7dc;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 24px 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    overflow: hidden;
}

.card-grunge-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, transparent 30%, rgba(0, 0, 0, 0.9) 100%);
    pointer-events: none;
    z-index: 1;
}

.card-header-url {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    color: #ffcb05; /* bright yellow */
    letter-spacing: 0.1em;
    z-index: 2;
    text-shadow: 2px 2px 0px #000;
}

.card-artwork {
    width: 170px;
    height: 170px;
    border: 4px solid #eae7dc;
    box-shadow: 6px 6px 0px #000;
    transform: rotate(-2deg);
    z-index: 2;
}

.card-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    z-index: 2;
}

.card-badge {
    font-family: monospace;
    font-size: 0.72rem;
    font-weight: 800;
    background: #000;
    color: #ff5500;
    padding: 4px 10px;
    border: 1px dashed #ff5500;
    transform: rotate(1deg);
}

.card-logo-img {
    height: 38px;
    max-width: 150px;
}

.card-logo-img img {
    height: 100%;
    filter: invert(1);
}

.card-cta-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.78rem;
    color: #fff;
    letter-spacing: 0.08em;
    background: #ff5500;
    border: 2px solid #000;
    padding: 6px 12px;
    box-shadow: 3px 3px 0px #000;
    margin-top: 4px;
}

/* Actions */
.share-modal-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.share-download-card-btn {
    width: 100%;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    padding: 14px 20px;
    background: var(--color-accent-yellow);
    color: #000;
    border: 3px solid #000;
    box-shadow: 5px 5px 0px #000;
    cursor: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMyAxIEwzIDE5IEw3LjUgMTQgTDExIDIyIEwxMy41IDIwLjggTDEwIDEzLjUgTDE2IDEzLjUgWiIgZmlsbD0iI2ZmNTUwMCIgc3Ryb2tlPSIjMDAwIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPjwvc3ZnPg==") 3 1, pointer;
    transition: all 0.18s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
}

.share-download-card-btn:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0px #000;
    background: #fff;
}

.share-download-card-btn:active {
    transform: translate(1px, 1px);
    box-shadow: 2px 2px 0px #000;
}

.share-status-message {
    font-size: 0.75rem;
    color: var(--color-accent-orange);
    font-weight: 600;
    min-height: 18px;
    text-align: center;
}

/* ==========================================
   LETRAS (LYRICS) SECTION
   ========================================== */
.lyrics-section {
    background: rgba(18, 18, 18, 0.96);
    border-top: 4px solid #000;
    border-bottom: 4px solid #000;
    position: relative;
    padding: 80px 0;
}

.tape-header.orange-tape {
    background: var(--color-accent-orange);
}

.lyrics-intro {
    font-size: 1.1rem;
    color: #ccc;
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 600px;
    text-align: left;
}

.lyrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.lyric-card {
    background: #0d0d0d;
    border: 3px solid #000;
    box-shadow: 5px 5px 0px #000;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #fff;
    width: 100%;
}

.lyric-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 9px 9px 0px #000;
    background: var(--color-accent-orange);
    border-color: #000;
}

.lyric-card:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #000;
}

.lyric-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.lyric-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ==========================================
   LYRICS MODAL & RETRO NOTEBOOK
   ========================================== */
.lyrics-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 12000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: modalFadeIn 0.25s ease forwards;
}

.lyrics-modal-panel {
    position: relative;
    width: 100%;
    max-width: 600px;
    animation: panelSlideIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.lyrics-modal-close-btn {
    position: absolute;
    top: -45px;
    right: 0;
    background: #000;
    border: 3px solid #333;
    color: #aaa;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.lyrics-modal-close-btn:hover {
    background: var(--color-accent-orange);
    border-color: var(--color-accent-orange);
    color: #fff;
    transform: rotate(90deg);
}

/* Notebook Visual Styling */
.lyrics-notebook {
    background: #eae7dc;
    border: 4px solid #000;
    box-shadow: 12px 12px 0px #000;
    display: flex;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    height: 70vh;
    min-height: 480px;
    max-height: 680px;
}

/* Notebook wire/spine */
.notebook-spine {
    width: 25px;
    background: repeating-linear-gradient(
        180deg,
        #111 0px,
        #111 6px,
        #333 6px,
        #333 12px,
        #111 12px,
        #111 20px,
        #777 20px,
        #777 24px
    );
    border-right: 4px solid #000;
    flex-shrink: 0;
    box-shadow: inset -4px 0 10px rgba(0,0,0,0.3);
}

.notebook-page {
    flex: 1;
    background: #fdfdf0; /* Vintage yellow notebook paper */
    background-image: linear-gradient(#e1dec2 1px, transparent 1px);
    background-size: 100% 1.8rem;
    padding: 30px 40px;
    overflow-y: auto;
    position: relative;
    border-left: 2px solid #ff9999; /* Margin line on notebook page */
    margin-left: 10px;
    display: flex;
    flex-direction: column;
}

/* Custom scrollbar inside notebook */
.notebook-page::-webkit-scrollbar {
    width: 8px;
}
.notebook-page::-webkit-scrollbar-track {
    background: #fdfdf0;
}
.notebook-page::-webkit-scrollbar-thumb {
    background: #d4d1b0;
    border: 2px solid #fdfdf0;
}

.notebook-song-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #b73225; /* vintage red/crimson handwritten look */
    text-transform: uppercase;
    margin-bottom: 25px;
    line-height: 1.2;
    border-bottom: 2px dashed #b73225;
    padding-bottom: 8px;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.notebook-lines {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.8rem; /* matches background-size exactly for visual alignments */
    color: #2b2b2a; /* dark pencil gray */
    white-space: pre-line;
    padding-top: 4px;
}

/* Responsive fixes */
@media (max-width: 600px) {
    .notebook-page {
        padding: 20px 20px;
        margin-left: 5px;
    }
    
    .notebook-song-title {
        font-size: 1.4rem;
    }

    .notebook-lines {
        font-size: 0.95rem;
    }
}

