﻿/* Me dicen PeTóN - Hostile Rock & Deep Thunder Blue Stylesheet */

/* Design Tokens & Reset */
:root {
    --bg-dark: #000000; /* Pure solid black */
    --bg-card: #040815; /* Deep storm blue */
    --bg-card-hover: #070e24;
    
    /* Deep Storm Blue & Hard Metal Palette (No Gradients) */
    --primary: #0052FF; /* Deep electric thunder blue */
    --primary-dark: #003cc4;
    --secondary: #8A2BE2; /* Hard violet */
    --accent: #FF3366; /* Hot pink/magenta rock accent */
    
    --text-white: #ffffff;
    --text-muted: #8a94a6;
    --border-color: #16223d;
    --border-thick: 3px solid #0052FF;
    --border-thick-muted: 3px solid #16223d;
    
    /* Vintage Serif for headings, modern clean for text */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-primary: 'Manrope', system-ui, sans-serif;
    
    /* Snappy, aggressive transitions */
    --transition: all 0.12s cubic-bezier(0, 0, 0, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-radius: 0px !important; /* Force completely square edges everywhere */
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-primary);
    overflow-x: hidden;
    line-height: 1.5;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
    position: relative;
    z-index: 2;
}

/* Rain Canvas Background */
#rainCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.7;
}

/* Storm lightning overlay effect */
.lightning-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0;
    z-index: 9999;
    pointer-events: none;
}

@keyframes flash {
    0%, 100% { opacity: 0; }
    3% { opacity: 0.35; }
    6% { opacity: 0.05; }
    8% { opacity: 0.55; }
    12% { opacity: 0; }
}

.lightning-active {
    animation: flash 1s ease-out;
}

/* Duotone Filters for Images - High Contrast Duotone */
.duotone-image {
    filter: contrast(1.3) saturate(0) sepia(0) brightness(0.7) hue-rotate(190deg);
    /* Cyan tinting overlay via CSS filter */
    filter: grayscale(100%) contrast(140%) brightness(80%) sepia(100%) hue-rotate(190deg) saturate(250%);
    transition: var(--transition);
}

.duotone-image:hover {
    filter: none;
}

/* Neon Framed Containers with hard color changes */
.neon-frame-pulse {
    border: 3px solid var(--primary);
    box-shadow: 6px 6px 0px rgba(0, 82, 255, 0.2);
    overflow: hidden;
    position: relative;
}

.avatar-frame {
    border-color: var(--secondary);
    box-shadow: 6px 6px 0px rgba(138, 43, 226, 0.2);
}

/* Parallax Cloud Elements - darker, threatening storm */
.cloud {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 82, 255, 0.03) 0%, transparent 75%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 1;
}

.cloud-1 {
    width: 500px;
    height: 350px;
    top: 5%;
    left: -100px;
    animation: floatCloud 60s linear infinite;
}

.cloud-2 {
    width: 700px;
    height: 400px;
    top: 20%;
    right: -200px;
    animation: floatCloudReverse 80s linear infinite;
}

.cloud-3 {
    width: 400px;
    height: 300px;
    bottom: 5%;
    left: 20%;
    animation: floatCloud 70s linear infinite;
}

@keyframes floatCloud {
    0% { transform: translate(0, 0); }
    50% { transform: translate(100px, 30px); }
    100% { transform: translate(0, 0); }
}

@keyframes floatCloudReverse {
    0% { transform: translate(0, 0); }
    50% { transform: translate(-120px, -20px); }
    100% { transform: translate(0, 0); }
}

/* Typography & General Styling - Skewed Rock look */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
}

a {
    color: inherit;
    text-decoration: none;
}

.accent-text {
    color: var(--primary);
    text-shadow: 3px 3px 0px #000;
}

.highlight-text {
    color: #ffffff;
    background-color: var(--primary);
    padding: 0 8px;
    display: inline-block;
    transform: skewX(-10deg);
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: #000000;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.badge.paid-badge {
    border-color: var(--accent);
    color: var(--accent);
}

/* Rock Buttons (Esquinas rectas, bordes gruesos y sombra dura) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 30px;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 3px solid #ffffff;
    gap: 10px;
    z-index: 3;
    position: relative;
    background-color: transparent;
    color: #ffffff;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

.btn-primary:hover {
    transform: translate(-4px, -4px);
    box-shadow: 6px 6px 0px #ffffff;
}

.btn-secondary {
    background-color: transparent;
    border-color: #ffffff;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translate(-4px, -4px);
    box-shadow: 6px 6px 0px var(--primary);
}

.btn-buy {
    background-color: var(--accent);
    border-color: var(--accent);
    color: #ffffff;
}

.btn-buy:hover {
    transform: translate(-4px, -4px);
    box-shadow: 6px 6px 0px #ffffff;
}

.btn-mp {
    background-color: #009ee3;
    border-color: #009ee3;
    color: #ffffff;
}

.btn-mp:hover {
    transform: translate(-4px, -4px);
    box-shadow: 6px 6px 0px #ffffff;
}

.btn-whatsapp {
    background-color: #25d366;
    border-color: #25d366;
    color: #ffffff;
}

.btn-whatsapp:hover {
    transform: translate(-4px, -4px);
    box-shadow: 6px 6px 0px #ffffff;
}

.btn-copy {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid var(--border-color);
    padding: 8px 16px;
    font-size: 0.8rem;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
}

.btn-copy:hover {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.btn-block {
    width: 100%;
}

/* Header & Navigation (Hard black bar) */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000000;
    border-bottom: 3px solid var(--primary);
    z-index: 1000;
    transition: var(--transition);
}

.header-container {
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo-img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

#navAlbums {
    display: contents;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    display: none; /* remove transition lines */
}

.btn-contact {
    background-color: transparent;
    border: 2px solid var(--primary) !important;
    padding: 8px 18px;
    color: var(--primary) !important;
}

.btn-contact:hover {
    background-color: var(--primary) !important;
    color: #ffffff !important;
    transform: translate(-3px, -3px);
    box-shadow: 4px 4px 0px #ffffff;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    cursor: pointer;
    min-height: 44px;
    min-width: 44px;
    align-items: center;
    justify-content: center;
}

/* Expanded Hero Section (100vh) with sharp angle cut */
.hero-section {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 130px 0 90px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    /* Slanted geometric cut */
    clip-path: polygon(0 0, 100% 0, 100% 93%, 0 100%);
    border-bottom: 5px solid var(--primary);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 56px;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 5;
}

.hero-tag-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 28px;
}

.hero-tag {
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--text-white);
    background-color: #000;
    border: 2px solid #fff;
    padding: 4px 10px;
    text-transform: uppercase;
}

/* Vintage Neon Sign badge (Hostile red neon) */
.live-blues-neon {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 900;
    color: var(--accent);
    border: 2px solid var(--accent);
    padding: 3px 10px;
    letter-spacing: 1px;
    box-shadow: 4px 4px 0px rgba(255, 51, 102, 0.3);
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 24px;
    transform: skewX(-5deg);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 620px;
    border-left: 4px solid var(--primary);
    padding-left: 18px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-artwork-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.hero-artwork {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s ease;
}

.artwork-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    background: rgba(0, 82, 255, 0.15);
    filter: blur(50px);
    z-index: 1;
}

.hero-album-cover {
    width: 380px;
    height: 380px;
    object-fit: cover;
    z-index: 2;
    box-shadow: 12px 12px 0px var(--primary);
    border: 3px solid #ffffff;
    transform: rotate(3deg);
    transition: var(--transition);
}

.hero-artwork:hover .hero-album-cover {
    transform: rotate(0deg) translate(-6px, -6px);
    box-shadow: 18px 18px 0px var(--primary);
}

/* Sections Styling */
section {
    padding: 64px 0;
    border-bottom: 4px solid var(--border-color);
    position: relative;
    background-color: var(--bg-dark);
}

.section-title {
    font-size: 2.6rem;
    margin-bottom: 12px;
    font-weight: 900;
    letter-spacing: -1px;
    transform: skewX(-6deg);
    display: inline-block;
    border-bottom: 5px solid var(--primary);
    padding-bottom: 4px;
}

.section-description {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 640px;
    margin: 16px auto 36px;
}

.text-center {
    text-align: center;
}

/* Player Section */
.player-section {
    background-color: #03050a;
}

.player-wrapper {
    background: var(--bg-card);
    border: var(--border-thick);
    padding: 32px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 36px;
    align-items: center;
    box-shadow: 10px 10px 0px rgba(0, 82, 255, 0.2);
}

/* Vinyl Player Graphics & Industrial Metal base */
.player-visual-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 35px;
    position: relative;
}

.vinyl-container {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Wooden Base replaced by Metal Cabinet */
.player-metal-base {
    position: absolute;
    width: 340px;
    height: 340px;
    background-color: #101524;
    border: 4px solid #1f2a44;
    box-shadow: inset 0 0 15px rgba(0,0,0,0.8), 8px 8px 0px rgba(0,0,0,0.5);
    pointer-events: none;
    z-index: 0;
}

/* Screws in the base corners */
.screw {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #4b5563;
    border: 2px solid #1e293b;
    border-radius: 50% !important; /* Screws must be round */
}
.screw-tl { top: 12px; left: 12px; }
.screw-tr { top: 12px; right: 12px; }
.screw-bl { bottom: 12px; left: 12px; }
.screw-br { bottom: 12px; right: 12px; }

.turntable-neon {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 3px solid var(--primary);
    box-shadow: 0 0 15px rgba(0, 82, 255, 0.15);
    pointer-events: none;
    z-index: 1;
}

.vinyl-record {
    width: 280px;
    height: 280px;
    background-color: #0b0c10;
    border-radius: 50% !important; /* Vinyl record must be round */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.9);
    border: 4px solid #17181f;
    z-index: 2;
}

.vinyl-grooves {
    position: absolute;
    top: 3%;
    left: 3%;
    right: 3%;
    bottom: 3%;
    border-radius: 50% !important;
    background: repeating-radial-gradient(
        circle,
        rgba(255,255,255,0.018) 0px,
        rgba(255,255,255,0.018) 1px,
        transparent 1px,
        transparent 4px
    );
    pointer-events: none;
    z-index: 3;
}

.vinyl-reflection {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.03) 47%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.03) 53%, transparent 60%);
    border-radius: 50% !important;
    pointer-events: none;
    z-index: 4;
}

.vinyl-center-img {
    width: 100px;
    height: 100px;
    border-radius: 50% !important;
    object-fit: cover;
    border: 4px solid #000000;
    z-index: 5;
}

.vinyl-record.playing {
    animation: spinRecord 3.4s linear infinite;
}

/* Tone Arm in Solid Steel/Silver */
.player-arm {
    position: absolute;
    top: -20px;
    right: -5px;
    width: 90px;
    height: 150px;
    z-index: 6;
    pointer-events: none;
    transform-origin: 45px 25px;
    transform: rotate(-35deg);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.arm-base {
    position: absolute;
    top: 10px;
    right: 30px;
    width: 32px;
    height: 32px;
    background-color: #374151;
    border: 3px solid #4b5563;
    border-radius: 50% !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.5);
}

.arm-shaft {
    position: absolute;
    top: 25px;
    right: 43px;
    width: 6px;
    height: 110px;
    background: linear-gradient(to right, #4b5563, #9ca3af, #1f2937);
    transform-origin: top center;
}

.arm-head {
    position: absolute;
    bottom: 5px;
    right: 37px;
    width: 18px;
    height: 25px;
    background-color: #1f2937;
    border: 2px solid #4b5563;
    transform: rotate(15deg);
}

/* Trigger arm placement on play */
.vinyl-record.playing ~ .player-arm {
    transform: rotate(-6deg);
}

/* Audio Waveform CSS visualizer */
.waveform-container {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 45px;
    width: 100%;
    max-width: 260px;
    justify-content: center;
}

.wave-bar {
    width: 6px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.08);
    transition: background-color 0.2s;
}

@keyframes bounceBar {
    0%, 100% { height: 6px; }
    50% { height: 38px; }
}

.playing-waveform .wave-bar {
    background-color: var(--primary);
    box-shadow: 0 0 8px rgba(0, 82, 255, 0.5);
}

.playing-waveform .wave-bar:nth-child(2n) { animation: bounceBar 0.7s ease-in-out infinite; }
.playing-waveform .wave-bar:nth-child(3n) { animation: bounceBar 1.0s ease-in-out infinite; }
.playing-waveform .wave-bar:nth-child(5n) { animation: bounceBar 0.5s ease-in-out infinite; }
.playing-waveform .wave-bar:nth-child(7n) { animation: bounceBar 1.3s ease-in-out infinite; }
.playing-waveform .wave-bar:nth-child(11n) { animation: bounceBar 0.8s ease-in-out infinite; }

/* Player Controls details */
.now-playing {
    margin-bottom: 30px;
}

.now-playing .badge {
    margin-bottom: 14px;
}

.track-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 900;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.track-artist {
    font-size: 1.15rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 2px;
}

.track-album {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Progress bar */
.progress-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
}

.time-display {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
}

.progress-bar-wrap {
    flex-grow: 1;
    height: 8px;
    background-color: #111827;
    border: 1px solid var(--border-color);
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background-color: var(--primary);
    position: relative;
}

.progress-bar-fill::after {
    content: '';
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 100%;
    background-color: #fff;
    opacity: 0;
}

.progress-bar-wrap:hover .progress-bar-fill::after {
    opacity: 1;
}

/* Control buttons */
.player-controls-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}

.player-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
}

.player-btn:hover {
    color: var(--primary);
}

.control-play {
    width: 64px;
    height: 64px;
    background-color: var(--primary);
    color: #ffffff;
    box-shadow: 4px 4px 0px #ffffff;
}

.control-play:hover {
    transform: translate(-3px, -3px);
    box-shadow: 7px 7px 0px #ffffff;
    color: #ffffff;
}

.control-play svg {
    border-radius: 0% !important;
}

/* Volume & Download actions & Switch */
.player-extra-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 3px solid var(--border-color);
    padding-top: 25px;
    flex-wrap: wrap;
}

.volume-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.volume-icon {
    color: var(--text-muted);
}

.volume-slider {
    width: 75px;
    height: 6px;
    -webkit-appearance: none;
    background: #111827;
    border: 1px solid var(--border-color);
    outline: none;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 8px;
    height: 12px;
    background-color: var(--primary);
    border-radius: 0px !important;
}

/* Square Switch for Vintage Sound */
.vintage-switch-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vintage-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #111827;
    transition: var(--transition);
    border: 2px solid var(--border-color);
}

.slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: var(--text-muted);
    transition: var(--transition);
}

input:checked + .slider {
    background-color: var(--primary);
    border-color: var(--primary);
}

input:checked + .slider:before {
    transform: translateX(20px);
    background-color: #ffffff;
}


/* ===== ÁLBUMES: cada disco = sección propia ===== */
.discography-anchor {
    height: 0;
    scroll-margin-top: 90px;
}

.album-section {
    position: relative;
    padding: 72px 0;
    border-bottom: 4px solid var(--border-color);
    scroll-margin-top: 88px;
    overflow: hidden;
}

.album-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.55;
    z-index: 0;
}

.album-section .container {
    z-index: 2;
}

.album-section-head {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 36px;
    align-items: end;
    margin-bottom: 36px;
}

.album-cover-block {
    position: relative;
}

.album-section-cover {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 3px solid #fff;
    display: block;
    box-shadow: 10px 10px 0 var(--album-accent, var(--primary));
}

.album-kicker {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--album-accent, var(--primary));
    margin-bottom: 10px;
}

.album-section-title {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    line-height: 0.95;
    margin-bottom: 14px;
    transform: skewX(-4deg);
}

.album-section-desc {
    color: var(--text-muted);
    max-width: 520px;
    font-size: 1.05rem;
    margin-bottom: 18px;
    line-height: 1.55;
}

.album-section-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.album-section-stats span {
    border: 2px solid var(--album-accent, var(--border-color));
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Temas de color por disco */
.theme-truenos {
    --album-accent: #0052FF;
    background: #000812;
}
.theme-truenos::before {
    background:
        radial-gradient(ellipse 70% 50% at 10% 20%, rgba(0, 82, 255, 0.22), transparent 60%),
        linear-gradient(180deg, #000 0%, #000812 100%);
}

.theme-corazon {
    --album-accent: #d0d0d0;
    background: #0a0a0a;
}
.theme-corazon::before {
    background:
        radial-gradient(ellipse 60% 45% at 85% 10%, rgba(200, 200, 200, 0.12), transparent 55%),
        linear-gradient(135deg, #111 0%, #050505 50%, #151515 100%);
}
.theme-corazon .album-section-cover {
    border-color: #cfcfcf;
    box-shadow: 10px 10px 0 #3a3a3a;
}
.theme-corazon .album-section-title {
    color: #f2f2f2;
}

.theme-honda {
    --album-accent: #c4a35a;
    background: #100c06;
}
.theme-honda::before {
    background:
        radial-gradient(ellipse 55% 50% at 15% 80%, rgba(196, 163, 90, 0.18), transparent 55%),
        linear-gradient(180deg, #1a140a 0%, #0c0905 100%);
}
.theme-honda .album-section-cover {
    box-shadow: 10px 10px 0 #c4a35a;
}

.theme-alma {
    --album-accent: #2dd4a8;
    background: #041510;
}
.theme-alma::before {
    background:
        radial-gradient(ellipse 60% 45% at 90% 30%, rgba(45, 212, 168, 0.16), transparent 55%),
        linear-gradient(180deg, #062018 0%, #030c09 100%);
}
.theme-alma .album-section-cover {
    box-shadow: 10px 10px 0 #2dd4a8;
}

.album-video-wrap {
    margin-top: 8px;
    border: 3px solid var(--album-accent, var(--primary));
    box-shadow: 8px 8px 0 color-mix(in srgb, var(--album-accent, #0052FF) 35%, transparent);
    background: #05070e;
    overflow: hidden;
}

.album-video {
    display: block;
    width: 100%;
    max-height: 70vh;
    background: #000;
}

.tracklist {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.track-item {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) auto auto;
    gap: 12px;
    align-items: center;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.45);
    border: 2px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: var(--transition);
    min-height: 52px;
}

.track-item:hover {
    border-color: var(--album-accent, var(--primary));
    transform: translateX(4px);
}

.track-item.active {
    border-color: var(--album-accent, var(--primary));
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 4px 4px 0 color-mix(in srgb, var(--album-accent, #0052FF) 30%, transparent);
}

.track-num {
    font-weight: 800;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
}

.track-item.active .track-num,
.track-item.active .track-info-name {
    color: var(--album-accent, var(--primary));
}

.track-info-name {
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.track-duration {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 700;
    min-width: 42px;
    text-align: right;
}

.track-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.track-action-btn {
    appearance: none;
    border: 2px solid var(--album-accent, var(--primary));
    background: transparent;
    color: #fff;
    font-family: inherit;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 7px 10px;
    cursor: pointer;
    min-height: 36px;
    transition: var(--transition);
}

.track-action-btn:hover {
    background: var(--album-accent, var(--primary));
    color: #000;
}

.track-action-btn.is-buy {
    border-color: var(--accent);
}
.track-action-btn.is-buy:hover {
    background: var(--accent);
    color: #fff;
}

@media (max-width: 768px) {
    .album-section-head {
        grid-template-columns: 1fr;
        gap: 22px;
        align-items: start;
    }
    .album-cover-block {
        max-width: 220px;
    }
    .track-item {
        grid-template-columns: 28px minmax(0, 1fr) auto;
        grid-template-rows: auto auto;
    }
    .track-duration { display: none; }
    .track-actions {
        grid-column: 2 / -1;
        justify-content: flex-start;
    }
}
/* La Mística del Blues - Lyrics Slider section */
.mistica-section {
    background-color: #03050a;
}

.lyrics-card-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.lyrics-card {
    background: var(--bg-card);
    border: var(--border-thick);
    padding: 36px 28px 28px;
    width: 100%;
    max-width: 800px;
    text-align: center;
    position: relative;
    box-shadow: 10px 10px 0px rgba(0, 82, 255, 0.2);
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 10rem;
    color: rgba(0, 82, 255, 0.06);
    position: absolute;
    top: -30px;
    left: 40px;
    line-height: 1;
    pointer-events: none;
}

.lyrics-slider {
    position: relative;
    min-height: 140px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.slide.active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.lyric-phrase {
    font-family: 'Reenie Beanie', cursive;
    font-size: 3.2rem;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lyric-song {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 700;
}

.lyrics-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 35px;
}

.lyric-nav-btn {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-white);
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.lyric-nav-btn:hover {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    transform: translate(-3px, -3px);
    box-shadow: 4px 4px 0px #ffffff;
}

/* Bio Section styling */
.bio-container {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 48px;
    align-items: stretch;
}

.bio-img-container {
    position: relative;
    display: flex;
    min-height: 100%;
    height: 100%;
    transition: var(--transition);
}

.bio-img-container .avatar-frame {
    flex: 1;
    display: flex;
    width: 100%;
    min-height: 100%;
    height: 100%;
}

.bio-img-glow {
    position: absolute;
    inset: 10%;
    background: rgba(138, 43, 226, 0.1);
    filter: blur(35px);
    z-index: 1;
}

.bio-img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    max-width: none;
    aspect-ratio: unset;
    object-fit: cover;
    object-position: center top;
    border: 3px solid #ffffff;
    box-shadow: 8px 8px 0px var(--secondary);
    z-index: 2;
}

.bio-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-tag {
    color: var(--secondary);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 800;
    display: block;
    margin-bottom: 12px;
}

.bio-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 8px;
    transform: skewX(-5deg);
}

.bio-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-weight: 500;
}

.bio-text {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.bio-text strong {
    color: var(--text-white);
}

.bio-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
    border-top: 3px solid var(--border-color);
    padding-top: 30px;
}

.bio-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 1.5rem;
    background-color: #010205;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid var(--border-color);
}

.bio-feature-item h4 {
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.bio-feature-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Contact Section Styling */
.contact-section {
    background-image: linear-gradient(to right, rgba(0,0,0,0.92), rgba(0,0,0,0.8)), url('assets/images/stormy_lightning_bg.png');
    background-size: cover;
    background-position: center;
    border-top: 5px solid var(--primary);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    transform: skewX(-5deg);
}

.contact-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 45px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 45px;
}

.contact-detail-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.detail-icon {
    font-size: 1.6rem;
    width: 50px;
    height: 50px;
    background-color: #010205;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 1.15rem;
    font-weight: 700;
    transition: var(--transition);
}

a.detail-value:hover {
    color: var(--primary);
}

.yt-btn {
    background-color: #ff0000;
    border-color: #ff0000;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-weight: 800;
    gap: 10px;
    min-height: 48px;
}

.yt-btn:hover {
    background-color: #cc0000;
    box-shadow: 5px 5px 0px #ffffff;
    transform: translate(-3px, -3px);
}

/* Contact form */
.contact-form-card {
    background: var(--bg-card);
    border: var(--border-thick);
    padding: 28px;
    box-shadow: 10px 10px 0px rgba(0,0,0,0.5);
}

.form-card-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: #010205;
    border: 2px solid var(--border-color);
    color: var(--text-white);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 4px 4px 0px rgba(0, 82, 255, 0.15);
}

/* Footer styling */
.main-footer {
    padding: 28px 0;
    background-color: #000000;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-top: 3px solid var(--primary);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-credits {
    font-size: 0.85rem;
    font-weight: 700;
}

/* Purchase Modal Backdrop */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.modal-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: #05070e;
    border: var(--border-thick);
    width: 100%;
    max-width: 580px;
    padding: 28px;
    position: relative;
    box-shadow: 12px 12px 0px rgba(0, 82, 255, 0.3);
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.95);
    transition: transform 0.25s cubic-bezier(0, 0, 0, 1);
}

.modal-backdrop.open .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
    min-width: 44px;
    min-height: 44px;
}

.modal-close:hover {
    color: var(--primary);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 6px;
    transform: skewX(-5deg);
}

.modal-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Price Box */
.song-price-box {
    background-color: #010205;
    border: 2px solid var(--border-color);
    padding: 20px;
    text-align: center;
    margin-bottom: 30px;
}

.price-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 4px;
}

.price-song-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin-bottom: 10px;
}

.price-amount {
    font-size: 2.4rem;
    font-weight: 900;
}

.price-currency {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-muted);
}

/* Options */
.payment-instructions-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-white);
}

.purchase-email-box {
    margin: 0 0 18px;
    padding: 16px;
    border: 1px solid var(--border-color);
    background: rgba(255,255,255,0.03);
}

.purchase-email-box label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-white);
}

.purchase-email-box input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    background: #010205;
    color: var(--text-white);
    font: inherit;
    border-radius: 0;
}

.purchase-email-hint {
    margin: 8px 0 0;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.purchase-email-error {
    margin: 8px 0 0;
    font-size: 0.85rem;
    color: #f87171;
    font-weight: 600;
}

#btnPurchaseContinue {
    margin-top: 8px;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 12px;
}

.payment-option-card {
    background-color: #010205;
    border: 2px solid var(--border-color);
    padding: 20px;
}

.payment-option-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.option-number {
    width: 24px;
    height: 24px;
    background-color: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--text-muted);
}

.payment-option-card h4 {
    font-size: 1rem;
    font-weight: 700;
}

.option-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.alias-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #000000;
    border: 2px solid var(--border-color);
    padding: 10px 14px;
}

.alias-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.alias-value {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--primary);
}

.highlighted-option {
    border-color: #25d366;
    background-color: rgba(37, 211, 102, 0.02);
}

.highlighted-option .option-number {
    background-color: rgba(37, 211, 102, 0.2);
    color: #25d366;
}

.modal-footer {
    margin-top: 30px;
    border-top: 2px solid var(--border-color);
    padding-top: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.link-contact {
    color: var(--primary);
    font-weight: 700;
}

/* Custom Alert Message Toast */
.toast-msg {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #05070e;
    border: 2px solid var(--primary);
    color: var(--text-white);
    padding: 12px 24px;
    box-shadow: 6px 6px 0px rgba(0,82,255,0.3);
    z-index: 3000;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition);
}

.toast-msg.show {
    transform: translateY(0);
    opacity: 1;
}

/* Responsiveness & Mobile Optimizations */
@media (max-width: 992px) {
    html {
        font-size: 15px;
    }
    
    .hero-section {
        min-height: auto;
        padding: 140px 0 90px;
        clip-path: none; /* remove clipping on mobile to ensure spacing */
        border-bottom-width: 3px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-album-cover {
        width: 300px;
        height: 300px;
    }
    
    .player-wrapper {
        grid-template-columns: 1fr;
        padding: 40px 30px;
        gap: 45px;
    }
    
    .album-panel {
        grid-template-columns: 1fr;
    }

    .album-panel--video .album-details-card {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }
    
    .bio-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 36px;
    }

    .bio-img-container {
        min-height: 320px;
        max-height: 420px;
    }

    .bio-img-container .avatar-frame {
        min-height: 320px;
    }
    
    .bio-features {
        align-items: center;
    }
    
    .bio-feature-item {
        text-align: left;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .main-header {
        background-color: #000000;
    }
    
    .menu-toggle {
        display: inline-flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 85px;
        left: 0;
        width: 100%;
        background-color: #000000;
        flex-direction: column;
        padding: 40px 20px;
        gap: 25px;
        border-bottom: 3px solid var(--primary);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
    }
    
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .btn-contact {
        width: 100%;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .track-item {
        grid-template-columns: 30px 1.5fr 1fr;
        padding: 12px 16px;
    }
    
    .track-duration {
        display: none;
    }
    
    .player-extra-actions {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
    }
    
    .volume-container {
        justify-content: center;
        width: 100%;
    }
    
    .volume-slider {
        width: 120px;
    }
    
    .btn-download, .btn-buy {
        width: 100%;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    /* Turntable mechanism scaling for small screens to prevent clipping */
    .vinyl-container {
        width: 250px;
        height: 250px;
    }
    
    .vinyl-record {
        width: 240px;
        height: 240px;
    }
    
    .vinyl-center-img {
        width: 85px;
        height: 85px;
    }
    
    .player-metal-base {
        width: 270px;
        height: 270px;
    }
    
    .turntable-neon {
        width: 255px;
        height: 255px;
    }
    
    .player-arm {
        width: 75px;
        height: 120px;
        top: -15px;
        right: -5px;
    }
    
    .arm-shaft {
        height: 90px;
        right: 38px;
    }
    
    .arm-base {
        width: 26px;
        height: 26px;
        right: 25px;
    }
    
    .arm-head {
        right: 32px;
    }
    
    /* Disable tilt transformations on mobile/touch screens */
    .album-details-card, .bio-img-container {
        transform: none !important;
        box-shadow: 8px 8px 0px rgba(0, 82, 255, 0.2) !important;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .vinyl-container {
        width: 210px;
        height: 210px;
    }
    
    .vinyl-record {
        width: 200px;
        height: 200px;
    }
    
    .vinyl-center-img {
        width: 70px;
        height: 70px;
    }
    
    .player-metal-base {
        width: 230px;
        height: 230px;
    }
    
    .turntable-neon {
        width: 220px;
        height: 220px;
    }
    
    .player-arm {
        width: 65px;
        height: 100px;
        top: -10px;
        right: -5px;
    }
    
    .arm-shaft {
        height: 70px;
        right: 30px;
    }
}
