/* =========================================================
   DOS RIOS MUSIC — Premium Styles 2026
   Gold Particles + Dynamic Logo + Glassmorphism + Modal
   10x UPGRADE: Film Grain, 3D Tilt, Marquee, Equalizer, 
   Enhanced Particles, Floating CTA, Micro-Animations
   ========================================================= */

/* === VARIABLES === */
:root {
    --black: #0a0a0a;
    --black-pure: #000000;
    --gold: #d4af37;
    --gold-light: #f4d03f;
    --gold-dark: #b8860b;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --white: #ffffff;
    --gray: #888888;
    --gray-dark: #1a1a1a;
    --gray-mid: #141414;
    --text-main: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.6);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, system-ui, sans-serif;
    --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* === RESET === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
}

/* === SKIP LINK (Accessibility) === */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--gold);
    color: var(--black);
    font-weight: 600;
    z-index: 10000;
    border-radius: 0 0 4px 4px;
}

.skip-link:focus {
    top: 0;
}

/* === PARTICLES CANVAS === */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* === FILM GRAIN OVERLAY === */
.film-grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    animation: grainShift 0.5s steps(5) infinite;
}

@keyframes grainShift {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-2px, 2px);
    }

    50% {
        transform: translate(2px, -1px);
    }

    75% {
        transform: translate(-1px, -2px);
    }
}

/* === SCROLL PROGRESS BAR === */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    z-index: 9999;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px var(--gold-glow), 0 0 30px rgba(212, 175, 55, 0.2);
}

/* === LAYOUT === */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* =========================================================
   1. PRELOADER
   ========================================================= */
.loader {
    position: fixed;
    inset: 0;
    background: var(--black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s var(--ease-luxury), visibility 0.8s var(--ease-luxury);
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    margin-bottom: 2rem;
}

.loader-img {
    width: 200px;
    height: auto;
    animation: pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 40px var(--gold-glow));
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: var(--gray-dark);
    border-radius: 2px;
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    animation: loading 2.4s ease-out forwards;
}

.loader-text {
    margin-top: 1.5rem;
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    color: var(--text-dim);
    animation: textPulse 1.5s ease-in-out infinite;
}

@keyframes textPulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

@keyframes loading {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* =========================================================
   2. NAVIGATION
   ========================================================= */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 0;
    transition: all 0.4s var(--ease-luxury);
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

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

.nav-logo-img {
    height: 50px;
    width: auto;
    transition: filter 0.3s ease;
}

.nav-logo:hover .nav-logo-img {
    filter: drop-shadow(0 0 15px var(--gold-glow));
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
    transition: color 0.3s ease, text-shadow 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 0.4s var(--ease-luxury);
}

.nav-links a:hover {
    color: var(--gold);
    text-shadow: 0 0 20px var(--gold-glow);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

.nav-menu span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s var(--ease-luxury);
    display: block;
}

.nav-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--gold);
}

.nav-menu.active span:nth-child(2) {
    opacity: 0;
}

.nav-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background: var(--gold);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 6rem 2rem 2rem;
    flex-direction: column;
    gap: 2rem;
    z-index: 99;
    align-items: center;
    justify-content: center;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-size: 2rem;
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--text-main);
    transition: color 0.3s ease, transform 0.3s var(--ease-bounce);
}

.mobile-menu a:hover {
    color: var(--gold);
    transform: scale(1.05);
}

/* =========================================================
   3. HERO SECTION
   ========================================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center bottom, rgba(212, 175, 55, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at top, rgba(10, 10, 10, 1) 0%, transparent 100%),
        var(--black);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 5;
    padding: 2rem;
}

/* === MUSIC EQUALIZER === */
.equalizer {
    position: absolute;
    bottom: 8rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
    align-items: flex-end;
    height: 40px;
    opacity: 0.15;
    z-index: 3;
}

.eq-bar {
    width: 4px;
    background: linear-gradient(to top, var(--gold-dark), var(--gold-light));
    border-radius: 2px;
    animation: eqBounce 1s ease-in-out infinite;
}

.eq-bar:nth-child(1) {
    height: 60%;
    animation-delay: 0s;
}

.eq-bar:nth-child(2) {
    height: 40%;
    animation-delay: 0.1s;
}

.eq-bar:nth-child(3) {
    height: 80%;
    animation-delay: 0.2s;
}

.eq-bar:nth-child(4) {
    height: 50%;
    animation-delay: 0.05s;
}

.eq-bar:nth-child(5) {
    height: 90%;
    animation-delay: 0.15s;
}

.eq-bar:nth-child(6) {
    height: 30%;
    animation-delay: 0.25s;
}

.eq-bar:nth-child(7) {
    height: 70%;
    animation-delay: 0.08s;
}

.eq-bar:nth-child(8) {
    height: 45%;
    animation-delay: 0.18s;
}

.eq-bar:nth-child(9) {
    height: 65%;
    animation-delay: 0.12s;
}

@keyframes eqBounce {

    0%,
    100% {
        transform: scaleY(0.3);
    }

    50% {
        transform: scaleY(1);
    }
}

.hero-logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.hero-logo-img {
    max-width: min(500px, 80vw);
    height: auto;
    filter: drop-shadow(0 0 60px rgba(212, 175, 55, 0.4));
}

/* Fallback: show logo after 4s if JS hasn't run */
@keyframes logoFallback {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.hero-logo-img:not([style*="opacity"]) {
    animation: logoFallback 0.5s ease-out 4s forwards;
}

/* === DYNAMIC LOGO EFFECTS 2026 === */
.dynamic-logo {
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite, goldPulse 3s ease-in-out infinite;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: glowPulse 3s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

.logo-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.08) 40%,
            rgba(255, 255, 255, 0.25) 50%,
            rgba(255, 255, 255, 0.08) 60%,
            transparent 100%);
    transform: skewX(-25deg);
    animation: shimmerSweep 4s ease-in-out infinite;
    z-index: 3;
    pointer-events: none;
}

/* Logo Ring — new 10x element */
.logo-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    animation: ringPulse 4s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes ringPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
        border-color: rgba(212, 175, 55, 0.15);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0;
        border-color: rgba(212, 175, 55, 0.4);
    }
}

@keyframes goldPulse {

    0%,
    100% {
        filter: drop-shadow(0 0 60px rgba(212, 175, 55, 0.4)) brightness(1);
    }

    50% {
        filter: drop-shadow(0 0 100px rgba(212, 175, 55, 0.7)) brightness(1.1);
    }
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes shimmerSweep {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 200%;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-tagline {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* === BUTTONS === */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-luxury);
    position: relative;
    overflow: hidden;
}

.btn-glow {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4), 0 15px 40px rgba(212, 175, 55, 0.2);
}

.btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    transition: left 0.6s ease;
    pointer-events: none;
}

.btn-primary:hover .btn-shimmer {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-primary:focus-visible {
    outline: 3px solid var(--gold-light);
    outline-offset: 3px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    cursor: pointer;
    transition: all 0.4s var(--ease-luxury);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.2;
    transition: left 0.6s ease;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

.btn-secondary:focus-visible {
    outline: 3px solid var(--gold-light);
    outline-offset: 3px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 5;
}

.scroll-indicator span {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--text-dim);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        height: 60px;
    }

    50% {
        opacity: 1;
        height: 80px;
    }
}

/* =========================================================
   MARQUEE TICKER STRIP
   ========================================================= */
.marquee-strip {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 10;
    padding: 0.75rem 0;
}

.marquee-track {
    display: inline-flex;
    gap: 2rem;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-item {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--black);
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.marquee-separator {
    color: rgba(0, 0, 0, 0.3);
    font-size: 0.7rem;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* =========================================================
   4. STATS BAR
   ========================================================= */
.stats-bar {
    background: var(--gray-mid);
    padding: 4rem 0;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat {
    padding: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.08);
    background: rgba(26, 26, 26, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s var(--ease-luxury);
}

.stat:hover {
    border-color: rgba(212, 175, 55, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
    animation: iconFloat 3s ease-in-out infinite;
}

.stat:nth-child(2) .stat-icon {
    animation-delay: 0.3s;
}

.stat:nth-child(3) .stat-icon {
    animation-delay: 0.6s;
}

.stat:nth-child(4) .stat-icon {
    animation-delay: 0.9s;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
    display: block;
}

/* =========================================================
   GRADIENT DIVIDER
   ========================================================= */
.gradient-divider {
    height: 2px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--gold-dark) 20%,
            var(--gold) 40%,
            var(--gold-light) 50%,
            var(--gold) 60%,
            var(--gold-dark) 80%,
            transparent 100%);
    position: relative;
    z-index: 10;
    animation: dividerGlow 3s ease-in-out infinite;
}

@keyframes dividerGlow {

    0%,
    100% {
        opacity: 0.5;
        filter: blur(0px);
    }

    50% {
        opacity: 1;
        filter: blur(1px);
    }
}

/* =========================================================
   5. SECTIONS — SHARED
   ========================================================= */
section {
    position: relative;
    z-index: 2;
    padding: 7rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    position: relative;
    padding: 0 1.5rem;
}

.section-label::before,
.section-label::after {
    content: '—';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(212, 175, 55, 0.3);
}

.section-label::before {
    left: -0.5rem;
}

.section-label::after {
    right: -0.5rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    color: var(--text-main);
}

.accent {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    margin-top: 1rem;
    font-size: 1.125rem;
    color: var(--text-dim);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================================
   5. ARTISTS
   ========================================================= */
.artists {
    background: var(--black);
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* 3D Tilt Card Base */
.tilt-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.artist-card {
    position: relative;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.08);
    overflow: hidden;
    transition: transform 0.4s var(--ease-luxury), box-shadow 0.4s var(--ease-luxury), border-color 0.4s ease;
    cursor: pointer;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.08), transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.artist-card:hover .card-glow {
    opacity: 1;
}

/* Gradient border on hover */
.artist-card::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    background: linear-gradient(135deg, var(--gold), transparent 60%);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.artist-card:hover {
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 60px rgba(212, 175, 55, 0.08);
}

.artist-card:hover::before {
    opacity: 1;
}

.artist-card:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

.artist-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-dark) 100%);
}

.artist-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.artist-logo {
    width: 70%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.3));
    transition: transform 0.6s var(--ease-luxury), filter 0.6s var(--ease-luxury);
}

.artist-card:hover .artist-logo {
    transform: scale(1.1) rotateY(5deg);
    filter: drop-shadow(0 0 60px rgba(212, 175, 55, 0.6));
}

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

.artist-card:hover .artist-overlay {
    opacity: 1;
}

.play-btn {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--black);
    cursor: pointer;
    transform: scale(0.6);
    transition: transform 0.4s var(--ease-bounce), box-shadow 0.4s ease;
}

.artist-card:hover .play-btn {
    transform: scale(1);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.5), 0 0 80px rgba(212, 175, 55, 0.2);
}

.play-btn svg {
    margin-left: 3px;
}

.artist-info {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.artist-genre {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
    display: block;
}

.artist-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    transition: text-shadow 0.3s ease;
}

.artist-card:hover .artist-name {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.artist-desc {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.artist-stats {
    display: flex;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 500;
}

/* =========================================================
   ARTIST MODAL
   ========================================================= */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.modal-content {
    position: relative;
    background: var(--gray-dark);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(212, 175, 55, 0.15);
    animation: modalIn 0.4s var(--ease-luxury);
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s var(--ease-luxury);
}

.modal-close:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: rotate(90deg);
}

.modal-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: var(--black);
}

.modal-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Modal video container with YouTube fallback link */
.modal-video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.modal-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.modal-youtube-link {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    background: rgba(0, 0, 0, 0.8);
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s;
}

.modal-video-wrapper:hover .modal-youtube-link {
    opacity: 1;
}

.modal-youtube-link:hover {
    background: var(--gold);
    color: var(--black);
}

/* Modal Video Thumbnail (click-to-YouTube) - More reliable */
.modal-video-thumbnail {
    position: absolute;
    inset: 0;
    cursor: pointer;
    overflow: hidden;
}

.modal-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease-luxury), filter 0.4s ease;
}

.modal-video-thumbnail:hover .modal-thumb-img {
    transform: scale(1.03);
    filter: brightness(0.7);
}

.modal-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.modal-video-thumbnail:hover .modal-play-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.modal-play-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s var(--ease-bounce), filter 0.3s ease;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

.modal-video-thumbnail:hover .modal-play-btn {
    transform: scale(1.15);
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.6));
}

.modal-play-text {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.modal-video-thumbnail:hover .modal-play-text {
    opacity: 1;
    transform: translateY(0);
}

.modal-info {
    padding: 2rem;
}

.modal-genre {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.modal-artist-name {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.modal-origin {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 1rem;
}

.modal-stats-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.modal-stat {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    padding: 0.3rem 0.75rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.modal-bio {
    font-size: 1rem;
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.modal-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
}

/* =========================================================
   6. VIDEOS
   ========================================================= */
.videos {
    background: var(--gray-dark);
}

.videos-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: var(--black);
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.08);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Custom Video Thumbnail Overlay */
.video-thumbnail-overlay {
    position: absolute;
    inset: 0;
    cursor: pointer;
    z-index: 5;
    overflow: hidden;
}

.video-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-luxury);
}

.video-thumbnail-overlay:hover .video-thumbnail-img {
    transform: scale(1.05);
}

.video-thumbnail-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
    pointer-events: none;
}

.video-play-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s var(--ease-bounce), filter 0.3s ease;
    z-index: 6;
    opacity: 0.85;
}

.video-thumbnail-overlay:hover .video-play-large {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
}

.play-bg {
    transition: fill-opacity 0.3s ease;
}

.video-thumbnail-overlay:hover .play-bg {
    fill: var(--gold-dark);
    fill-opacity: 0.95;
}

.video-thumbnail-overlay.hidden {
    display: none;
}

/* Video Fallback (when embed is blocked) */
.video-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--black);
}

.video-fallback .fallback-thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.video-fallback .fallback-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.video-fallback .fallback-overlay p {
    color: var(--text-dim);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Direct YouTube Channel Link */
.youtube-direct-link {
    display: block;
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    grid-column: 1 / -1;
}

.youtube-direct-link:hover {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.video-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.video-thumb {
    display: flex;
    gap: 1rem;
    padding: 0.75rem;
    background: var(--black);
    cursor: pointer;
    transition: all 0.3s var(--ease-luxury);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.video-thumb:hover {
    background: rgba(212, 175, 55, 0.08);
    transform: translateX(5px);
}

.video-thumb.active {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.thumb-active-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gold);
    transform: scaleY(0);
    transition: transform 0.3s var(--ease-luxury);
}

.video-thumb.active .thumb-active-bar {
    transform: scaleY(1);
}

.thumb-img {
    width: 120px;
    height: 68px;
    flex-shrink: 0;
    overflow: hidden;
    background: var(--gray-dark);
}

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

.video-thumb:hover .thumb-img img {
    transform: scale(1.1);
}

.thumb-info h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.thumb-info span {
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* =========================================================
   7. CONTACT
   ========================================================= */
.contact {
    background: var(--black);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(26, 26, 26, 0.3);
    transition: all 0.3s var(--ease-luxury);
}

.contact-item:hover {
    border-color: rgba(212, 175, 55, 0.15);
    background: rgba(212, 175, 55, 0.03);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 0.2rem;
    display: block;
}

.contact-item a,
.contact-item span,
.contact-item strong {
    font-size: 1.05rem;
    color: var(--text-main);
    display: block;
}

.contact-item a {
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.contact-item a:hover {
    color: var(--gold);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-link {
    padding: 0.75rem 1.5rem;
    background: var(--gray-dark);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.4s var(--ease-luxury);
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-icon {
    font-size: 1rem;
}

.social-link:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.social-link.whatsapp {
    border-color: #25d366;
    color: #25d366;
}

.social-link.whatsapp:hover {
    background: #25d366;
    color: var(--white);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--gray-dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23888888' stroke-width='2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    cursor: pointer;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}

/* =========================================================
   FLOATING WHATSAPP CTA
   ========================================================= */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.4s var(--ease-bounce);
}

.whatsapp-float:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.wa-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: waPulse 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes waPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* =========================================================
   8. FOOTER
   ========================================================= */
.footer {
    background: var(--black-pure);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    z-index: 2;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.2));
    transition: filter 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.5));
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dim);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    opacity: 0.7;
    text-shadow: 0 0 15px var(--gold-glow);
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.footer-location {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.05em;
}

/* =========================================================
   SCROLL-DRIVEN ANIMATIONS (CSS 2024+ native)
   ========================================================= */
@supports (animation-timeline: scroll()) {
    .hero-logo-img {
        animation: heroFadeScale linear;
        animation-timeline: scroll();
        animation-range: 0 300px;
    }

    @keyframes heroFadeScale {
        from {
            opacity: 1;
            transform: scale(1);
        }

        to {
            opacity: 0;
            transform: scale(0.85);
        }
    }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
    .videos-showcase {
        grid-template-columns: 1fr;
    }

    .video-list {
        flex-direction: row;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 0.75rem;
        padding-bottom: 0.5rem;
    }

    .video-thumb {
        flex-shrink: 0;
        width: 280px;
        scroll-snap-align: start;
    }
}

@media (max-width: 768px) {
    section {
        padding: 5rem 0;
    }

    .nav-links {
        display: none;
    }

    .nav-menu {
        display: flex;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .artists-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .modal-content {
        max-height: 100vh;
        max-width: 100%;
        margin: 0;
    }

    .modal {
        padding: 0;
    }

    .equalizer {
        bottom: 5rem;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .container {
        padding: 0 1.25rem;
    }

    .contact-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .marquee-item {
        font-size: 0.75rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   ACCESSIBILITY — Reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .scroll-indicator,
    .equalizer,
    .film-grain {
        display: none;
    }

    #particles {
        display: none;
    }
}

/* Focus visible for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}