/* ==========================================================================
   MYSTIKOS DE LA NOCHE - SISTEMA DE DISEÑO CÁLIDO (DORADO / NARANJA / ROJO)
   Paleta: Cumbia Peruana Premium — Fondo oscuro + acentos cálidos
   ========================================================================== */

/* ==========================================================================
   MYSTIKOS DE LA NOCHE — PALETA OFICIAL DEL LOGO
   Verde neón + Dorado + Plata + Magenta — Sabor Cumbia Peruana
   ========================================================================== */

/* Custom Reset & Variables */
:root {
    /* ── Fondos oscuros elegantes ── */
    --color-bg-space: #060610;
    --color-bg-card: rgba(8, 8, 20, 0.72);
    --color-bg-card-hover: rgba(14, 14, 32, 0.92);

    /* ── Colores oficiales del logo Mystikos ── */
    --neon-green:  #00ff88;   /* verde neón brillante */
    --neon-pink:   #e91e8c;   /* magenta / rosa intenso */
    --neon-cyan:   #ffd700;   /* dorado brillante */
    --neon-yellow: #f0c000;   /* dorado más cálido */

    /* ── Colores semánticos del logo ── */
    --logo-green:  #00ff88;
    --logo-gold:   #ffd700;
    --logo-silver: #c8d8e8;
    --logo-magenta:#e91e8c;
    --logo-red:    #ff2244;

    /* ── Textos ── */
    --text-primary:   #f0f4ff;
    --text-secondary: #a8c0d0;
    --text-muted:     #5a7080;

    /* ── Tipografía ── */
    --font-heading: 'Outfit', sans-serif;
    --font-body:    'Outfit', sans-serif;

    /* ── Transiciones ── */
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);

    /* ── Glows ── */
    --glow-green:  0 0 12px rgba(0,255,136,0.55), 0 0 32px rgba(0,255,136,0.25);
    --glow-pink:   0 0 12px rgba(233,30,140,0.55), 0 0 32px rgba(233,30,140,0.25);
    --glow-cyan:   0 0 12px rgba(255,215,0,0.55),  0 0 32px rgba(255,215,0,0.25);
    --glow-gold:   0 0 14px rgba(255,215,0,0.6),   0 0 38px rgba(255,215,0,0.3);

    --neon-gold: #ffd700;
    --gold-gradient: linear-gradient(135deg, #888 0%, #fff 40%, #ffd700 60%, #c0c0c0 100%);
    --glow-gold: 0 0 14px rgba(255,215,0,0.6), 0 0 38px rgba(255,215,0,0.3);

    /* ── Gradiente de marca (verde → dorado → magenta) ── */
    --brand-gradient: linear-gradient(135deg, #00ff88 0%, #ffd700 50%, #e91e8c 100%);
    --brand-gradient-r: linear-gradient(135deg, #e91e8c 0%, #ffd700 50%, #00ff88 100%);
    /* ── Gradiente plata/dorado ── */
    --silver-gold: linear-gradient(135deg, #c0c0c0 0%, #ffd700 50%, #e8e8e8 100%);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-space);
}

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

/* Warm texture overlay -- REMOVIDO para pantalla limpia */
body::before {
    content: none;
    display: none;
}

/* Custom Scrollbar — cálido */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-space);
}
::-webkit-scrollbar-thumb {
    background: var(--brand-gradient);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--warm-gold), var(--warm-red));
}

/* Fixed Background Canvas */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -10;
    pointer-events: auto;
    background: radial-gradient(circle at center, #1a0a02 0%, var(--color-bg-space) 100%);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ==========================================================================
   REUSABLE COMPONENTS & UTILITIES
   ========================================================================== */

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

.section-padding {
    padding: 80px 0;
    position: relative;
}

.section-alt {
    background-color: rgba(5, 5, 15, 0.4);
    backdrop-filter: blur(5px);
}

/* Titles with warm underline */
.section-title-wrapper {
    text-align: center;
    margin-bottom: 50px;
}

.section-title-wrapper .subtitle {
    font-family: var(--font-heading);
    color: var(--warm-amber);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255,179,0,0.6);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(90deg, var(--warm-cream), var(--warm-gold), var(--warm-orange), var(--warm-cream));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineText 5s linear infinite;
    display: inline-block;
}

.title-line {
    width: 60px;
    height: 3px;
    background: var(--brand-gradient);
    margin: 15px auto 0;
    border-radius: 2px;
    box-shadow: var(--glow-gold);
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--brand-gradient);
    color: #000;
    font-weight: 800;
    box-shadow: 0 4px 18px rgba(255,140,0,0.45);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    transition: 0.5s;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(255,140,0,0.65), var(--glow-gold);
}

.btn-secondary {
    background: transparent;
    color: var(--warm-cream);
    border: 2px solid var(--warm-amber);
    box-shadow: 0 0 6px rgba(255,179,0,0.25);
}

.btn-secondary:hover {
    background: var(--warm-amber);
    color: #0d0804;
    box-shadow: 0 0 18px var(--warm-amber), var(--glow-cyan);
    transform: translateY(-3px);
}

.btn-glossy {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.2), 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    color: #fff;
}

.btn-primary.btn-glossy {
    background: linear-gradient(135deg, rgba(230,48,0,0.85) 0%, rgba(255,179,0,0.85) 100%);
    border: 1px solid rgba(255,255,255,0.25);
}

.btn-icon {
    width: 18px;
    height: 18px;
    margin-left: 10px;
    fill: currentColor;
}

.btn-full {
    width: 100%;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.8rem;
}

/* Glassmorphic Cards Base */
.glass-card {
    background: var(--color-bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    background: var(--color-bg-card-hover);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

/* ==========================================================================
   HEADER NAVIGATION
   ========================================================================== */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(3, 3, 8, 0.7);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    padding: 10px 0;
    background: rgba(3, 3, 8, 0.95);
    border-bottom: 1px solid rgba(57, 255, 20, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

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

.nav-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.main-header.scrolled .nav-logo {
    height: 40px;
}

/* Nav Menu */
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-gradient);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
    color: var(--warm-cream);
    text-shadow: 0 0 10px rgba(255,179,0,0.7);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1100;
}

.hamburger {
    display: block;
    position: relative;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: var(--transition-smooth);
}

.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: var(--transition-smooth);
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

/* Hamburger Open States */
.mobile-nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}
.mobile-nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}
.mobile-nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    z-index: 1;
}

.hero-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 0, 127, 0.15) 0%, rgba(57, 255, 20, 0.05) 50%, transparent 100%);
    z-index: -1;
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero-logo-wrapper {
    margin-bottom: 20px;
}

.hero-logo {
    max-width: 90%;
    width: 450px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 25px rgba(57, 255, 20, 0.4));
    animation: floatLogo 6s ease-in-out infinite;
}

.hero-slogan {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    pointer-events: none;
}

.mouse-icon {
    width: 22px;
    height: 35px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--neon-green);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

/* ==========================================================================
   NOSOTROS SECTION
   ========================================================================== */

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

.about-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: visible;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 2px solid rgba(255, 0, 127, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    object-fit: cover;
    transition: var(--transition-smooth);
}

.about-image-wrapper:hover .about-img {
    border-color: var(--neon-green);
    transform: scale(1.02);
}

.img-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    z-index: -1;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-green));
    filter: blur(15px);
    opacity: 0.3;
    transition: var(--transition-smooth);
}

.about-image-wrapper:hover .img-glow {
    opacity: 0.6;
    filter: blur(20px);
}

.about-text-wrapper h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.about-text-wrapper p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.features-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: var(--transition-smooth);
}

.feature-item:hover {
    border-color: var(--neon-cyan);
    background: rgba(0, 240, 255, 0.05);
}

.feature-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--neon-green);
    margin-bottom: 5px;
}

.feature-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   STAFF SECTION
   ========================================================================== */

.staff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.staff-card {
    background: var(--color-bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.staff-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-pink);
    box-shadow: 0 10px 30px rgba(255, 0, 127, 0.15);
}

.staff-img-container {
    position: relative;
    width: 100%;
    padding-top: 130%; /* 4:3 Aspect ratio approx, vertical */
    overflow: hidden;
}

.staff-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.staff-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(3, 3, 8, 0.95) 0%, rgba(3, 3, 8, 0) 100%);
    display: flex;
    align-items: flex-end;
}

.staff-role {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--neon-cyan);
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--neon-cyan);
    padding: 4px 10px;
    border-radius: 4px;
}

.staff-info {
    padding: 25px;
}

.staff-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 10px;
}

.staff-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   SERVICIOS SECTION
   ========================================================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.service-card {
    background: rgba(15, 15, 30, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(20, 20, 45, 0.7);
    border-color: rgba(0, 240, 255, 0.3);
}

.service-card.highlighted {
    border-color: rgba(255, 0, 127, 0.3);
}

.service-card.highlighted::after {
    background: linear-gradient(90deg, transparent, var(--neon-pink), transparent);
}

.service-card.highlighted:hover {
    border-color: var(--neon-pink);
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.2);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}

.service-card h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Budgets Comparison Layout */
.budgets-wrapper {
    margin-top: 80px;
    background: radial-gradient(circle at top right, rgba(57, 255, 20, 0.05), transparent 60%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.budget-section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.budget-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.budget-card {
    background: rgba(10, 10, 22, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    transition: var(--transition-smooth);
}

.budget-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 5px 25px rgba(0, 240, 255, 0.1);
}

.budget-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--neon-cyan);
    border: 1px solid var(--neon-cyan);
    padding: 3px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.budget-badge.highlighted {
    color: var(--neon-gold);
    border-color: var(--neon-gold);
    box-shadow: var(--glow-gold);
}

.budget-card.grand-event {
    border-color: rgba(255, 215, 0, 0.2);
    background: linear-gradient(135deg, rgba(20, 15, 10, 0.8) 0%, rgba(5, 5, 10, 0.9) 100%);
}

.budget-card.grand-event:hover {
    border-color: var(--neon-gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.budget-card h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 5px;
}

.budget-setup {
    font-size: 0.85rem;
    color: var(--neon-green);
    margin-bottom: 25px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.budget-card.grand-event .budget-setup {
    color: var(--neon-gold);
}

.budget-features {
    list-style: none;
    margin-bottom: 35px;
}

.budget-features li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
}

.budget-features li::before {
    content: '⚡';
    margin-right: 10px;
    color: var(--neon-yellow);
}

/* ==========================================================================
   MUSICA & PLAYLIST SECTION
   ========================================================================== */

.music-player-container {
    max-width: 750px;
    margin: 0 auto;
}

.media-deck {
    background: rgba(10, 10, 20, 0.85);
    border: 2px solid var(--neon-green);
    box-shadow: var(--glow-green), inset 0 0 15px rgba(57, 255, 20, 0.1);
    border-radius: 20px;
    overflow: hidden;
    padding: 30px;
}

.deck-screen {
    background: #020204;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Custom Player Controls Panel */
.deck-controls {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 25px;
    border-radius: 12px;
}

.control-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--neon-green);
    color: #000;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow: var(--glow-green);
}

.control-btn:hover {
    background: #fff;
    transform: scale(1.08);
}

.progress-container {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

#deck-progress-bar {
    flex-grow: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
}

#deck-progress-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--neon-pink);
    box-shadow: var(--glow-pink);
    transition: var(--transition-smooth);
}

#deck-progress-bar::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.volume-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.volume-icon {
    font-size: 0.9rem;
}

#deck-volume {
    width: 70px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
}

#deck-volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.equalizer-bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 40px;
}

.equalizer-bars span {
    width: 3px;
    height: 5px;
    background: var(--neon-green);
    animation: bounce 1.2s ease-in-out infinite alternate;
}

/* Animate individual bars */
.equalizer-bars span:nth-child(1) { animation-delay: 0.1s; height: 15px; }
.equalizer-bars span:nth-child(2) { animation-delay: 0.4s; height: 25px; }
.equalizer-bars span:nth-child(3) { animation-delay: 0.2s; height: 35px; }
.equalizer-bars span:nth-child(4) { animation-delay: 0.6s; height: 10px; }
.equalizer-bars span:nth-child(5) { animation-delay: 0.3s; height: 30px; }
.equalizer-bars span:nth-child(6) { animation-delay: 0.5s; height: 18px; }
.equalizer-bars span:nth-child(7) { animation-delay: 0.7s; height: 28px; }

.track-details {
    text-align: right;
}

.track-details .now-playing {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    color: var(--neon-pink);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 5px;
}

.track-details h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #fff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.track-details .track-origin {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.playlist-tracks {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.track-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.track-item:hover {
    background: rgba(57, 255, 20, 0.05);
    border-color: rgba(57, 255, 20, 0.3);
}

.track-item.active {
    background: rgba(57, 255, 20, 0.1);
    border-color: var(--neon-green);
}

.track-num {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--neon-pink);
    font-weight: 700;
    width: 30px;
}

.track-name {
    flex-grow: 1;
    font-weight: 600;
    font-size: 0.95rem;
    color: #fff;
}

.track-duration {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-right: 20px;
}

.play-btn-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--neon-green);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.play-btn-circle:hover {
    background: #fff;
    transform: scale(1.1);
    box-shadow: var(--glow-green);
}

.deck-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
}

.deck-footer p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   GALERIA & VIDEOS SECTION
   ========================================================================== */

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 12px 25px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-btn.active, .tab-btn:hover {
    background: var(--neon-pink);
    border-color: var(--neon-pink);
    color: #fff;
    box-shadow: var(--glow-pink);
}

/* Tab contents */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0,0,0,0.5);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 3, 8, 0.7);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--neon-cyan);
    border: 1px solid var(--neon-cyan);
    padding: 8px 16px;
    border-radius: 4px;
    box-shadow: var(--glow-cyan);
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Videos Grid */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.video-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.video-card.link-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.video-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 8px 25px rgba(0, 240, 255, 0.1);
    transform: translateY(-5px);
}

.video-thumbnail-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    overflow: hidden;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.video-card:hover .video-thumbnail {
    opacity: 0.9;
    transform: scale(1.05);
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn-large {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--neon-pink);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: none;
    box-shadow: var(--glow-pink);
    cursor: pointer;
}

.play-btn-large:hover {
    transform: scale(1.15);
    background: #fff;
    color: var(--neon-pink);
    box-shadow: 0 0 25px #fff;
}

.video-info {
    padding: 20px;
}

.video-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 8px;
}

.video-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.videos-more {
    margin-top: 30px;
    text-align: center;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(3, 3, 8, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-media-container {
    position: relative;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 80%;
    max-height: 70vh;
    width: 100%;
}

.lightbox-content {
    display: block;
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border: 2px solid var(--neon-cyan);
    box-shadow: var(--glow-cyan);
    border-radius: 8px;
    animation: zoomLightbox 0.3s ease-out;
}

.lightbox-video {
    display: none;
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16/9;
    border: 2px solid var(--neon-pink);
    box-shadow: var(--glow-pink);
    border-radius: 8px;
    animation: zoomLightbox 0.3s ease-out;
}

/* Badges for platforms */
.video-platform-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.yt-badge {
    background: #ff0000;
    color: #fff;
    border: 1px solid rgba(255, 0, 0, 0.5);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

.tt-badge {
    background: #010101;
    color: #fff;
    border: 1px solid var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

.fb-badge {
    background: #1877f2;
    color: #fff;
    border: 1px solid rgba(24, 119, 242, 0.5);
    box-shadow: 0 0 10px rgba(24, 119, 242, 0.4);
}

.lightbox-close {
    position: absolute;
    top: 40px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover {
    color: var(--neon-pink);
    transform: scale(1.1);
}

#lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: var(--text-secondary);
    padding: 20px 0;
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 1px;
}

/* ==========================================================================
   CONTACT & FOOTER
   ========================================================================== */

.main-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #020205;
}

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

.footer-logo {
    max-width: 250px;
    height: auto;
    object-fit: contain;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px rgba(57, 255, 20, 0.3));
}

.footer-desc {
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-size: 1rem;
}

.footer-email-link {
    margin: 15px 0 25px 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-email-link a {
    color: var(--neon-cyan);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: var(--transition-smooth);
    text-shadow: var(--glow-cyan);
}

.footer-email-link a:hover {
    color: #fff;
    text-shadow: 0 0 10px #fff, 0 0 20px var(--neon-cyan);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition-smooth);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon.fb:hover { background: #1877f2; border-color: #1877f2; box-shadow: 0 0 15px #1877f2; }
.social-icon.tt:hover { background: #010101; border-color: #00f0ff; box-shadow: 0 0 15px #00f0ff; }
.social-icon.yt:hover { background: #ff0000; border-color: #ff0000; box-shadow: 0 0 15px #ff0000; }

.footer-contacts h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.exclusive-note {
    font-size: 0.9rem;
    color: var(--neon-yellow);
    margin-bottom: 25px;
    font-weight: 600;
}

.contact-buttons-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-card-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-card-btn:hover {
    background: rgba(57, 255, 20, 0.05);
    border-color: var(--neon-green);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(57, 255, 20, 0.1);
}

.contact-num-info {
    display: flex;
    flex-direction: column;
}

.contact-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.contact-number {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-top: 3px;
}

.contact-card-btn:hover .contact-number {
    color: var(--neon-green);
    text-shadow: 0 0 5px rgba(57, 255, 20, 0.5);
}

.whatsapp-badge-icon {
    font-size: 1.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    margin-top: 50px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   FLOATING WHATSAPP WIDGET
   ========================================================================== */

.whatsapp-float-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1500;
}

.wa-float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25d366;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4), 0 0 10px rgba(37, 211, 102, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition-smooth);
}

.wa-icon-svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

.wa-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4), 0 0 20px rgba(37, 211, 102, 0.8);
}

.wa-btn-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: waPulse 2s infinite;
    pointer-events: none;
}

/* Expandable Card */
.wa-card {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: rgba(10, 10, 22, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6), 0 0 15px rgba(37, 211, 102, 0.2);
    overflow: hidden;
    transform: translateY(20px) scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform-origin: bottom right;
}

.wa-card.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.wa-card-header {
    background: linear-gradient(135deg, #128c7e, #25d366);
    padding: 20px;
    display: flex;
    align-items: center;
    position: relative;
}

.wa-avatar {
    font-size: 1.8rem;
    margin-right: 15px;
}

.wa-header-text h5 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: #fff;
    margin: 0;
}

.wa-header-text span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
}

.wa-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

.wa-card-body {
    padding: 20px;
}

.wa-welcome {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.4;
}

.wa-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wa-link-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.wa-link-item:hover {
    background: rgba(37, 211, 102, 0.08);
    border-color: #25d366;
    transform: translateX(3px);
}

.wa-link-icon {
    font-size: 1.2rem;
    margin-right: 12px;
}

.wa-link-info {
    display: flex;
    flex-direction: column;
}

.wa-link-name {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.wa-link-num {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}

.wa-link-item:hover .wa-link-num {
    color: #25d366;
}

.wa-footer-note {
    font-size: 0.75rem;
    color: var(--neon-yellow);
    text-align: center;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* ==========================================================================
   SCROLL REVEAL & FADE-IN SYSTEM
   ========================================================================== */

.scroll-reveal {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.scroll-reveal.fade-in.revealed {
    opacity: 1;
    transform: none;
}

.scroll-reveal.slide-up {
    transform: translateY(30px);
}

.scroll-reveal.slide-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   KEYFRAMES & ANIMATIONS
   ========================================================================== */

@keyframes floatLogo {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes scrollWheel {
    0% { top: 6px; opacity: 1; }
    50% { top: 15px; opacity: 0; }
    100% { top: 6px; opacity: 0; }
}

@keyframes bounce {
    0% { transform: scaleY(0.2); }
    100% { transform: scaleY(1); }
}

@keyframes waPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

@keyframes zoomLightbox {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes shineText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ==========================================================================
   MOBILE FIRST MEDIA QUERIES (RESPONSIVE VIEWPORTS)
   ========================================================================== */

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    /* Header & Mobile Navigation */
    .mobile-nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: rgba(3, 3, 8, 0.98);
        backdrop-filter: blur(20px);
        padding: 100px 40px 40px;
        transition: var(--transition-smooth);
        border-left: 1px solid rgba(57, 255, 20, 0.2);
        box-shadow: -10px 0 30px rgba(0,0,0,0.8);
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 30px;
    }
    
    .nav-link {
        font-size: 1.1rem;
        display: block;
    }
    
    /* Hero Section */
    .hero-logo {
        width: 320px;
    }
    
    .hero-slogan {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* Grid Layouts to 1 Column */
    .about-grid, 
    .staff-grid, 
    .services-grid, 
    .budget-grid,
    .videos-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features-row {
        gap: 10px;
    }
    
    .feature-number {
        font-size: 1.1rem;
    }
    
    .feature-label {
        font-size: 0.7rem;
    }
    
    /* Budgets Section */
    .budgets-wrapper {
        padding: 20px;
        margin-top: 40px;
    }
    
    .budget-card {
        padding: 30px 20px;
    }
    
    /* Music Deck responsive */
    .media-deck {
        padding: 15px;
    }
    
    .deck-screen {
        padding: 12px;
    }
    
    .track-details h4 {
        font-size: 0.95rem;
    }
    
    .track-name {
        font-size: 0.85rem;
    }
    
    .track-duration {
        display: none; /* Hide durations to save space on mobile */
    }
    
    .deck-footer {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    /* Music Deck controls stacked for mobile/tablet */
    .deck-controls {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px 15px;
    }
    
    .control-btn {
        grid-row: 2;
        justify-self: center;
        width: 55px; /* target larger for thumb navigation */
        height: 55px;
        font-size: 1.3rem;
        margin: 5px 0;
    }
    
    .progress-container {
        grid-row: 1;
        width: 100%;
    }
    
    #deck-progress-bar {
        height: 6px;
    }
    
    #deck-progress-bar::-webkit-slider-thumb {
        width: 16px;
        height: 16px;
    }
    
    .volume-container {
        grid-row: 3;
        width: 100%;
        justify-content: center;
        gap: 10px;
    }
    
    #deck-volume {
        width: 120px;
        height: 6px;
    }
    
    #deck-volume::-webkit-slider-thumb {
        width: 14px;
        height: 14px;
    }
    
    /* Lightbox Modal */
    .lightbox-content {
        max-width: 95%;
    }
    
    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .wa-card {
        width: 280px;
        bottom: 70px;
    }
}

/* ==========================================================================
   FLOATING SOCIAL SIDEBAR / DOCK
   ========================================================================== */
.floating-social-sidebar {
    position: fixed;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.float-social-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 20, 0.75);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.float-social-btn svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* Brand borders + hover glows */
.float-fb {
    border-color: rgba(24, 119, 242, 0.4);
}
.float-fb:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: #fff;
    box-shadow: 0 0 20px rgba(24, 119, 242, 0.8);
    transform: scale(1.1) translateX(5px);
}

.float-tt {
    border-color: rgba(0, 240, 255, 0.4);
}
.float-tt:hover {
    background: #000;
    border-color: #ff007f;
    color: #fff;
    box-shadow: -3px -3px 15px rgba(0, 240, 255, 0.8), 3px 3px 15px rgba(255, 0, 127, 0.8);
    transform: scale(1.1) translateX(5px);
}

.float-yt {
    border-color: rgba(255, 0, 0, 0.4);
}
.float-yt:hover {
    background: #ff0000;
    border-color: #ff0000;
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
    transform: scale(1.1) translateX(5px);
}

/* Mobile responsive social dock */
@media (max-width: 768px) {
    .floating-social-sidebar {
        left: 20px;
        bottom: 20px;
        top: auto;
        transform: none;
        flex-direction: row;
        gap: 12px;
    }
    
    .float-social-btn:hover {
        transform: scale(1.1); /* Don't offset on mobile */
    }
}

/* ==============================================================
   MYSTIKOS — REDISEÑO PALETA CÁLIDA (DORADO / NARANJA / ROJO)
   Override de todos los colores fríos residuales en el CSS
   Cumbia Peruana Premium — Fondo oscuro + acentos cálidos
   ============================================================== */

/* ── Hero: fondo oscuro cálido ── */
.hero-section, #inicio {
    background:
        radial-gradient(ellipse 80% 70% at 20% 20%, rgba(255,140,0,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 70% at 80% 70%, rgba(230,48,0,0.10) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 50% 95%, rgba(255,215,0,0.08) 0%, transparent 60%),
        #0d0804 !important;
}

/* ── Tarjetas glassmorphic ── */
.glass-card {
    background: rgba(25,14,6,0.65) !important;
    border-color: rgba(255,140,0,0.12) !important;
}
.glass-card:hover {
    background: rgba(40,22,8,0.88) !important;
    border-color: rgba(255,179,0,0.28) !important;
    box-shadow: 0 12px 40px rgba(255,140,0,0.18) !important;
}

/* ── Secciones alternas ── */
.section-alt { background-color: rgba(20,10,2,0.5) !important; }

/* ── Gradientes de texto decorativos ── */
.gradient-text, [class*="neon-text"], [class*="gradient-title"], .hero-title-gradient {
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 45%, #e63000 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* ── Tabs activos ── */
.rep-tab.active, .tab-btn.active {
    background: linear-gradient(135deg, #ffd700, #ff8c00, #e63000) !important;
    color: #000 !important;
    box-shadow: 0 0 20px rgba(255,140,0,0.4) !important;
    border-color: transparent !important;
}

/* ── Ribbons / badges de paquetes ── */
.paq-card::before { background: linear-gradient(135deg, #ffd700, #ff8c00, #e63000) !important; }
.paq-ribbon, .paquete-badge {
    background: rgba(255,140,0,0.15) !important;
    border-color: rgba(255,140,0,0.35) !important;
    color: #ff8c00 !important;
}
.ribbon-hot, .premium-badge {
    background: rgba(230,48,0,0.15) !important;
    border-color: rgba(230,48,0,0.35) !important;
    color: #e63000 !important;
}

/* ── Check icons ── */
.chk, .check-icon, .feature-check {
    background: rgba(255,140,0,0.15) !important;
    color: #ff8c00 !important;
}
.chk-hot { background: rgba(230,48,0,0.15) !important; color: #e63000 !important; }

/* ── Botones de paquete ── */
.paq-btn, .btn-paquete, .inline-cta {
    background: linear-gradient(135deg, #ffd700, #ff8c00, #e63000) !important;
    color: #000 !important;
}
.paq-btn:hover, .btn-paquete:hover, .inline-cta:hover {
    box-shadow: 0 0 30px rgba(255,140,0,0.55) !important;
}

/* ── CTAs hero ── */
.cta-outline { border-color: rgba(255,179,0,0.5) !important; color: #ffb300 !important; }
.cta-outline:hover { background: rgba(255,140,0,0.1) !important; border-color: #ff8c00 !important; }

/* ── Sec badge ── */
.sec-badge {
    background: linear-gradient(135deg, #ffd700, #ff8c00, #e63000) !important;
    color: #000 !important;
}

/* ── Stats counters ── */
.stat strong, .stat span, .stat-num, .stat-n {
    background: linear-gradient(135deg, #ffd700, #ff8c00, #e63000) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* ── Loader ── */
.loader-fill { background: linear-gradient(135deg, #ffd700, #ff8c00, #e63000) !important; }
.loader-logo { filter: drop-shadow(0 0 22px rgba(255,140,0,0.7)) !important; }

/* ── Lightbox dots ── */
.lb-dot.on, .lightbox-dot.active { background: #ff8c00 !important; }
.lb-prev:hover, .lb-next:hover, .lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(255,140,0,0.2) !important;
}

/* ── Flotantes ── */
.fab-gal, .float-gallery {
    background: linear-gradient(135deg, #ff8c00, #e63000) !important;
    box-shadow: 0 4px 22px rgba(255,140,0,0.5) !important;
}
.fab-gal:hover, .float-gallery:hover {
    box-shadow: 0 8px 32px rgba(255,140,0,0.75) !important;
}

/* ── Footer social icons ── */
.fsoc-ico:hover, .footer-icon:hover {
    background: rgba(255,140,0,0.15) !important;
    color: #ff8c00 !important;
    box-shadow: 0 8px 20px rgba(255,140,0,0.25) !important;
}

/* ── Header scrolled borde ── */
.main-header.scrolled, .navbar.scrolled {
    border-bottom-color: rgba(255,140,0,0.25) !important;
}

/* ── Géneros chips ── */
.gen-chip:hover, .genero-chip:hover {
    border-color: rgba(255,140,0,0.4) !important;
    box-shadow: 0 6px 20px rgba(255,140,0,0.22) !important;
}

/* ── Galería hover ── */
.gal-item:hover, .galeria-item:hover {
    box-shadow: 0 18px 50px rgba(230,48,0,0.3) !important;
}

/* ── Scroll hint ── */
.scroll-mouse { border-color: #7a5c3a !important; }
.scroll-wheel { background: #c4a882 !important; }

/* ── Banda overlay cálido ── */
.banda-overlay {
    background: linear-gradient(to right,
        rgba(13,8,4,0.94) 0%,
        rgba(13,8,4,0.65) 55%,
        rgba(13,8,4,0.18) 100%) !important;
}

/* ── Focus ring ── */
:focus-visible { outline-color: #ff8c00 !important; }

/* ── Logo glow cálido ── */
.hero-logo, .hero-logo-wrap img {
    filter: drop-shadow(0 0 28px rgba(255,140,0,0.55))
            drop-shadow(0 0 60px rgba(230,48,0,0.3)) !important;
}

/* ── Logo float animation: warm ── */
@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
        filter: drop-shadow(0 0 28px rgba(255,140,0,0.55)) drop-shadow(0 0 60px rgba(230,48,0,0.3));
    }
    50% {
        transform: translateY(-14px);
        filter: drop-shadow(0 0 50px rgba(255,140,0,0.8)) drop-shadow(0 0 80px rgba(230,48,0,0.5));
    }
}

/* ── Logo glow ring ── */
.logo-glow-ring {
    background: radial-gradient(circle, rgba(255,140,0,0.2) 0%, transparent 70%) !important;
}

/* ── Hero orbs cálidos ── */
.orb-1 { background: radial-gradient(circle, rgba(255,140,0,0.18), transparent 70%) !important; }
.orb-2 { background: radial-gradient(circle, rgba(230,48,0,0.14), transparent 70%) !important; }
.orb-3 { background: radial-gradient(circle, rgba(255,215,0,0.12), transparent 70%) !important; }

/* ── Hero grid cálido ── */
.hero-grid {
    background-image:
        linear-gradient(rgba(255,140,0,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,140,0,0.04) 1px, transparent 1px) !important;
}

/* ── Pulsing alerts ── */
@keyframes alertPulse {
    0%, 100% { border-color: rgba(255,140,0,0.22); }
    50%       { border-color: rgba(255,140,0,0.55); box-shadow: 0 0 22px rgba(255,140,0,0.14); }
}
@keyframes waPulse {
    0%  { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
    100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
    0%  { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
    100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
@keyframes caDot {
    0%  { box-shadow: 0 0 0 0 rgba(233,30,140,0.5); }
    70% { box-shadow: 0 0 0 10px rgba(233,30,140,0); }
    100%{ box-shadow: 0 0 0 0 rgba(233,30,140,0); }
}

/* ==============================================================
   🎵 NUEVOS ESTILOS — CAJA COTIZACIÓN + NOTAS MUSICALES + LOGO PALETTE
   ============================================================== */

/* ── Caja de cotización ── */
.cotizacion-box {
    margin: 1.8rem 0;
    padding: 1.5rem 1.8rem;
    background: rgba(0,255,136,0.05);
    border: 1px solid rgba(0,255,136,0.22);
    border-left: 4px solid #00ff88;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}
.cotizacion-titulo {
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 1rem;
}
.cotizacion-lista {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    margin-bottom: 1.2rem;
}
.cotizacion-lista li {
    font-size: .95rem;
    color: var(--text-secondary);
    padding: .4rem .6rem;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
}
.cotizacion-lista li strong { color: var(--text-primary); }
.cotizacion-wa {
    font-size: .9rem;
    color: var(--text-secondary);
    margin-bottom: .8rem;
    font-weight: 600;
}
.cotizacion-numeros {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
}
.cotizacion-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .7rem 1.4rem;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    font-weight: 900;
    font-size: .95rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    transition: transform .25s, box-shadow .25s;
}
.cotizacion-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 26px rgba(37,211,102,0.65);
}

/* ── Social links con label ── */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-top: 1rem;
}
.social-icon {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .45rem 1rem;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform .25s, box-shadow .25s, opacity .25s;
    border: 1px solid rgba(255,255,255,0.1);
}
.social-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex-shrink: 0;
}
.social-icon span { letter-spacing: .03em; }
.social-icon.fb  { background: rgba(24,119,242,.18);  color: #4a90f8; }
.social-icon.tt  { background: rgba(255,255,255,.08);  color: #e0e0e0; }
.social-icon.yt  { background: rgba(255,0,0,.15);      color: #ff4545; }
.social-icon.em  { background: rgba(255,215,0,.14);    color: #ffd700; }
.social-icon:hover { transform: translateY(-3px); opacity: .9; }
.social-icon.fb:hover  { box-shadow: 0 6px 20px rgba(24,119,242,.4); }
.social-icon.tt:hover  { box-shadow: 0 6px 20px rgba(255,255,255,.15); }
.social-icon.yt:hover  { box-shadow: 0 6px 20px rgba(255,0,0,.4); }
.social-icon.em:hover  { box-shadow: 0 6px 20px rgba(255,215,0,.4); }

/* ── Notas musicales flotantes ── */
.music-notes-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}
.music-note {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0;
    animation: noteFloat var(--dur, 8s) var(--delay, 0s) ease-in-out infinite;
    animation-fill-mode: both;
    user-select: none;
    filter: drop-shadow(0 0 6px var(--note-color, #ffd700));
}
@keyframes noteFloat {
    0%   { opacity: 0; transform: translateY(0) translateX(0) rotate(0deg) scale(.8); }
    10%  { opacity: .7; }
    50%  { opacity: .5; transform: translateY(-40vh) translateX(var(--drift, 30px)) rotate(20deg) scale(1); }
    90%  { opacity: .2; }
    100% { opacity: 0; transform: translateY(-90vh) translateX(var(--drift2, -20px)) rotate(-10deg) scale(.6); }
}

/* ── Hero background logo palette ── */
.hero-section, #inicio {
    background:
        radial-gradient(ellipse 70% 60% at 15% 20%, rgba(0,255,136,0.10) 0%, transparent 65%),
        radial-gradient(ellipse 55% 65% at 85% 70%, rgba(233,30,140,0.10) 0%, transparent 65%),
        radial-gradient(ellipse 45% 45% at 50% 100%, rgba(255,215,0,0.08) 0%, transparent 60%),
        #060610 !important;
}

/* ── Canvas background logo palette ── */
#bg-canvas {
    background: radial-gradient(circle at center, #0c0a22 0%, #060610 100%) !important;
}

/* ── Botones con paleta del logo ── */
.btn-primary {
    background: var(--brand-gradient) !important;
    color: #000 !important;
    box-shadow: 0 4px 20px rgba(0,255,136,0.4) !important;
}
.btn-primary:hover {
    box-shadow: 0 8px 30px rgba(0,255,136,0.6) !important;
}
.btn-secondary {
    color: #00ff88 !important;
    border-color: rgba(0,255,136,0.45) !important;
}
.btn-secondary:hover {
    background: rgba(0,255,136,0.1) !important;
    border-color: #00ff88 !important;
    box-shadow: 0 0 18px rgba(0,255,136,0.3) !important;
}

/* ── Section titles logo palette ── */
.section-title {
    background: linear-gradient(90deg, #f0f4ff, #00ff88, #ffd700, #f0f4ff) !important;
    background-size: 200% auto !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}
.section-title-wrapper .subtitle { color: #00ff88 !important; text-shadow: 0 0 10px rgba(0,255,136,0.5) !important; }
.title-line { background: var(--brand-gradient) !important; }

/* ── Nav link logo palette ── */
.nav-link::after { background: var(--brand-gradient) !important; }
.nav-link:hover, .nav-link.active { color: #00ff88 !important; text-shadow: 0 0 10px rgba(0,255,136,0.5) !important; }

/* ── Scrollbar logo ── */
::-webkit-scrollbar-thumb { background: var(--brand-gradient) !important; }

/* ── Cards, hero, orbs paleta logo ── */
.glass-card { background: rgba(8,8,20,0.7) !important; border-color: rgba(0,255,136,0.1) !important; }
.glass-card:hover { border-color: rgba(0,255,136,0.28) !important; box-shadow: 0 12px 40px rgba(0,255,136,0.12) !important; }
.section-alt { background-color: rgba(0,0,15,0.5) !important; }

/* ── Feature numbers dorado/plata ── */
.feature-number {
    background: linear-gradient(135deg, #c0c0c0, #ffd700) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* ── Budget cards paleta ── */
.budget-card { border-color: rgba(0,255,136,0.15) !important; background: rgba(8,8,20,0.72) !important; }
.budget-card.grand-event { border-color: rgba(255,215,0,0.25) !important; }
.budget-badge { background: rgba(0,255,136,0.12) !important; color: #00ff88 !important; border: 1px solid rgba(0,255,136,0.3) !important; }
.budget-badge.highlighted { background: rgba(255,215,0,0.12) !important; color: #ffd700 !important; border-color: rgba(255,215,0,0.3) !important; }

/* ── Contact card buttons ── */
.contact-card-btn { border-color: rgba(0,255,136,0.2) !important; background: rgba(0,255,136,0.04) !important; }
.contact-card-btn:hover { border-color: #00ff88 !important; box-shadow: 0 8px 25px rgba(0,255,136,0.2) !important; }
.contact-number { background: var(--silver-gold) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; background-clip: text !important; }

/* ── Footer ── */
.footer-email-link a { color: #ffd700 !important; }
.footer-email-link a:hover { color: #00ff88 !important; }
.footer-bottom { border-top-color: rgba(0,255,136,0.15) !important; }

/* ── Header scrolled ── */
.main-header.scrolled { border-bottom-color: rgba(0,255,136,0.22) !important; }

/* ── Floating social sidebar ── */
.float-fb:hover  { box-shadow: 0 0 20px rgba(24,119,242,0.6) !important; }
.float-tt:hover  { box-shadow: 0 0 20px rgba(255,255,255,0.3) !important; }
.float-yt:hover  { box-shadow: 0 0 20px rgba(255,0,0,0.6) !important; }

/* ── WA float button pulso verde ── */
.wa-float-btn, .whatsapp-float-widget button {
    background: linear-gradient(135deg, #25d366, #128c7e) !important;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5) !important;
}

/* ── Service cards ── */
.service-card.highlighted, .service-card:hover {
    border-color: rgba(0,255,136,0.3) !important;
    box-shadow: 0 10px 30px rgba(0,255,136,0.12) !important;
}
.service-icon { filter: drop-shadow(0 0 8px rgba(255,215,0,0.4)); }

/* ── Staff overlay ── */
.staff-overlay { background: linear-gradient(to top, rgba(0,255,136,0.3), transparent) !important; }

/* ── Géneros chip ── */
.gen-chip:hover, .genero-chip:hover {
    border-color: rgba(0,255,136,0.4) !important;
    box-shadow: 0 6px 20px rgba(0,255,136,0.2) !important;
}

/* ── Cotización box en Quiénes Somos ya incluida arriba ── */

/* ── Focus ring ── */
:focus-visible { outline-color: #00ff88 !important; }

/* ── Logo glow verde/dorado ── */
.hero-logo, .nav-logo {
    filter: drop-shadow(0 0 22px rgba(0,255,136,0.5)) drop-shadow(0 0 45px rgba(255,215,0,0.25)) !important;
}
.hero-logo:hover, .nav-logo:hover {
    filter: drop-shadow(0 0 35px rgba(0,255,136,0.8)) drop-shadow(0 0 70px rgba(233,30,140,0.35)) !important;
}

/* ── Orbs hero logo colors ── */
.orb-1, [class*="orb-1"] { background: radial-gradient(circle, rgba(0,255,136,0.16), transparent 70%) !important; }
.orb-2, [class*="orb-2"] { background: radial-gradient(circle, rgba(233,30,140,0.13), transparent 70%) !important; }
.orb-3, [class*="orb-3"] { background: radial-gradient(circle, rgba(255,215,0,0.12), transparent 70%) !important; }

/* ── Hero grid lines ── */
.hero-grid, [class*="hero-grid"] {
    background-image:
        linear-gradient(rgba(0,255,136,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,255,136,0.04) 1px, transparent 1px) !important;
}

/* ── Imagen glow ── */
.img-glow, .about-image-wrapper::after {
    box-shadow: 0 0 40px rgba(0,255,136,0.3), 0 0 80px rgba(233,30,140,0.15) !important;
}

/* ── Lightbox dot ── */
.lb-dot.on { background: #00ff88 !important; }

/* ── Responsive: cotizacion ── */
@media (max-width: 600px) {
    .cotizacion-numeros { flex-direction: column; }
    .cotizacion-btn { justify-content: center; }
}

/* ==============================================================
   🆕 NAV 3D BOX + EMAIL FLOAT + MUSIC PLATFORMS
   ============================================================== */

/* ── Nav 3D Box ── */
.nav-3d-box {
    display: flex;
    align-items: center;
    padding: 4px 8px;
    background: linear-gradient(180deg, rgba(20,20,50,0.88), rgba(6,6,20,0.97));
    border: 1px solid rgba(0,255,136,0.28);
    border-radius: 14px;
    box-shadow:
        0 3px 0 rgba(0,255,136,0.14),
        0 8px 22px rgba(0,0,0,0.65),
        inset 0 1px 0 rgba(255,255,255,0.1),
        inset 0 -1px 0 rgba(0,0,0,0.45);
    transform: perspective(900px) rotateX(2.5deg);
    transform-origin: center top;
    backdrop-filter: blur(16px);
    transition: box-shadow .3s, transform .3s;
}
.nav-3d-box:hover {
    box-shadow:
        0 3px 0 rgba(0,255,136,0.28),
        0 10px 30px rgba(0,255,136,0.12),
        inset 0 1px 0 rgba(255,255,255,0.12),
        inset 0 -1px 0 rgba(0,0,0,0.4);
}
.nav-3d-box ul {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0; padding: 0;
}

/* ── Botón Contacto estilo nav-link ── */
.nav-contacto-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
    padding: 8px 0;
    position: relative;
    transition: var(--transition-smooth);
}
.nav-contacto-btn::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--brand-gradient);
    transition: var(--transition-smooth);
    border-radius: 2px;
}
.nav-contacto-btn:hover { color: #00ff88 !important; text-shadow: 0 0 10px rgba(0,255,136,0.5); }
.nav-contacto-btn:hover::after { width: 100%; }

/* ── YouTube nav link accent ── */
.nav-yt { color: #ff5555 !important; }
.nav-yt:hover { color: #ff2020 !important; text-shadow: 0 0 10px rgba(255,69,69,0.6) !important; }
.nav-yt::after { background: linear-gradient(90deg, #ff0000, #ff6600) !important; }

/* ── Float Email ── */
.float-email {
    background: linear-gradient(135deg, #0072c6, #003087) !important;
    border-color: rgba(0,114,198,0.5) !important;
    color: #fff !important;
}
.float-email svg { fill: #fff; }
.float-email:hover {
    background: #0078d4 !important;
    box-shadow: -3px -3px 15px rgba(0,120,212,0.7), 3px 3px 15px rgba(0,120,212,0.7) !important;
    transform: scale(1.1) translateX(5px);
}

/* ── Floating Music Platforms ── */
.float-music-platforms {
    position: fixed;
    bottom: 7rem;
    right: 1.5rem;
    z-index: 950;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: .5rem;
}
.float-music-toggle {
    width: 54px; height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1db954, #191414);
    border: 2px solid rgba(29,185,84,0.55);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(29,185,84,0.55);
    transition: transform .3s, box-shadow .3s;
    display: flex; align-items: center; justify-content: center;
    line-height: 1;
}
.float-music-toggle:hover,
.float-music-toggle.active {
    transform: scale(1.12) rotate(15deg);
    box-shadow: 0 8px 28px rgba(29,185,84,0.8);
}
.float-music-menu {
    display: flex;
    flex-direction: column;
    gap: .45rem;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .45s cubic-bezier(0.4,0,0.2,1), opacity .3s;
    pointer-events: none;
}
.float-music-menu.open {
    max-height: 300px;
    opacity: 1;
    pointer-events: all;
}
.fmp-btn {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.15);
    transition: transform .25s, box-shadow .25s;
}
.fmp-btn svg { width: 24px; height: 24px; fill: #fff; }

.fmp-spotify  { background: #1db954; box-shadow: 0 3px 14px rgba(29,185,84,0.5); }
.fmp-spotify:hover  { transform: scale(1.16); box-shadow: 0 6px 24px rgba(29,185,84,0.8); }

.fmp-amazon   { background: #00a8e0; box-shadow: 0 3px 14px rgba(0,168,224,0.5); }
.fmp-amazon:hover   { transform: scale(1.16); box-shadow: 0 6px 24px rgba(0,168,224,0.8); }

.fmp-apple    { background: linear-gradient(135deg, #fc3c44, #ff5e69); box-shadow: 0 3px 14px rgba(252,60,68,0.5); }
.fmp-apple:hover    { transform: scale(1.16); box-shadow: 0 6px 24px rgba(252,60,68,0.8); }

.fmp-ytmusic  { background: #ff0000; box-shadow: 0 3px 14px rgba(255,0,0,0.5); }
.fmp-ytmusic:hover  { transform: scale(1.16); box-shadow: 0 6px 24px rgba(255,0,0,0.8); }

/* ── Hero slogan compacto ── */
.hero-slogan {
    font-size: clamp(1.6rem, 4.5vw, 3.2rem) !important;
    white-space: nowrap;
    letter-spacing: .05em;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .nav-3d-box { transform: none; background: none; border: none; box-shadow: none; padding: 0; width: 100%; }
    .nav-3d-box ul { flex-direction: column; align-items: flex-start; width: 100%; gap: 0; }
    .float-music-platforms { bottom: 5.5rem; right: 1rem; }
    .fmp-btn { width: 42px; height: 42px; }
    .float-music-toggle { width: 48px; height: 48px; font-size: 1.3rem; }
    .hero-slogan { white-space: normal !important; font-size: clamp(1.1rem, 6vw, 1.8rem) !important; text-align: center !important; }
}

/* ==============================================================
   🎯 NAV 3D INDIVIDUAL ITEMS
   ============================================================== */

/* Lista contenedora sin estilo propio */
.nav-3d-list {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0; padding: 0;
}

/* Cada ítem es un rectángulo 3D independiente */
.nav-3d-item {
    position: relative;
    /* Caja 3D */
    background: linear-gradient(175deg, rgba(25,25,55,0.92) 0%, rgba(8,8,22,0.98) 100%);
    border: 1px solid rgba(0,255,136,0.22);
    border-radius: 9px;
    /* Sombra 3D: borde inferior simula profundidad */
    box-shadow:
        0 4px 0 rgba(0,200,100,0.22),
        0 6px 16px rgba(0,0,0,0.7),
        inset 0 1px 0 rgba(255,255,255,0.1),
        inset 0 -1px 0 rgba(0,0,0,0.5);
    /* Perspectiva 3D sutil */
    transform: perspective(600px) rotateX(4deg) translateZ(0);
    transform-origin: center top;
    transform-style: preserve-3d;
    transition: transform .22s cubic-bezier(0.4,0,0.2,1),
                box-shadow .22s,
                border-color .22s,
                background .22s;
    padding: 0 4px;
    backdrop-filter: blur(12px);
}

/* Cara delantera iluminada */
.nav-3d-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.07), transparent);
    border-radius: 9px 9px 0 0;
    pointer-events: none;
}

/* Hover: sube y brilla */
.nav-3d-item:hover {
    transform: perspective(600px) rotateX(0deg) translateY(-4px) translateZ(4px);
    border-color: rgba(0,255,136,0.5);
    background: linear-gradient(175deg, rgba(0,255,136,0.12) 0%, rgba(8,8,22,0.98) 100%);
    box-shadow:
        0 8px 0 rgba(0,255,136,0.14),
        0 12px 28px rgba(0,255,136,0.18),
        inset 0 1px 0 rgba(255,255,255,0.15),
        inset 0 -1px 0 rgba(0,0,0,0.3);
}

/* Active/link activo */
.nav-3d-item:has(.active),
.nav-3d-item:has(.nav-link.active) {
    border-color: rgba(0,255,136,0.45);
    box-shadow:
        0 4px 0 rgba(0,255,136,0.3),
        0 8px 22px rgba(0,255,136,0.2),
        inset 0 1px 0 rgba(255,255,255,0.12),
        inset 0 -1px 0 rgba(0,0,0,0.4);
}

/* Videos (YT) item — rojo */
.nav-3d-yt {
    border-color: rgba(255,69,69,0.3) !important;
    box-shadow:
        0 4px 0 rgba(255,0,0,0.2),
        0 6px 16px rgba(0,0,0,0.7),
        inset 0 1px 0 rgba(255,255,255,0.08),
        inset 0 -1px 0 rgba(0,0,0,0.5) !important;
}
.nav-3d-yt:hover {
    border-color: rgba(255,50,50,0.65) !important;
    background: linear-gradient(175deg, rgba(255,0,0,0.12) 0%, rgba(8,8,22,0.98) 100%) !important;
    box-shadow:
        0 8px 0 rgba(255,0,0,0.15),
        0 12px 28px rgba(255,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.12),
        inset 0 -1px 0 rgba(0,0,0,0.3) !important;
}

/* Contacto item — verde WhatsApp */
.nav-3d-contact {
    border-color: rgba(37,211,102,0.35) !important;
    background: linear-gradient(175deg, rgba(37,211,102,0.08) 0%, rgba(8,8,22,0.98) 100%) !important;
    box-shadow:
        0 4px 0 rgba(37,211,102,0.25),
        0 6px 16px rgba(0,0,0,0.7),
        inset 0 1px 0 rgba(255,255,255,0.08),
        inset 0 -1px 0 rgba(0,0,0,0.5) !important;
}
.nav-3d-contact:hover {
    border-color: rgba(37,211,102,0.65) !important;
    background: linear-gradient(175deg, rgba(37,211,102,0.18) 0%, rgba(8,8,22,0.98) 100%) !important;
    box-shadow:
        0 8px 0 rgba(37,211,102,0.2),
        0 12px 28px rgba(37,211,102,0.25),
        inset 0 1px 0 rgba(255,255,255,0.12),
        inset 0 -1px 0 rgba(0,0,0,0.3) !important;
}

/* nav-link dentro del item (quitamos el padding lateral que ya da el li) */
.nav-3d-item .nav-link,
.nav-3d-item .nav-contacto-btn {
    padding: 7px 10px;
    display: block;
}

/* ==============================================================
   🎵 BRAND TITLE — MYSTIKOS DE LA NOCHE
   ============================================================== */
.about-brand-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem) !important;
    font-weight: 900 !important;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #c0c0c0 0%, #ffd700 30%, #00ff88 60%, #e91e8c 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    margin-bottom: 1.2rem;
    line-height: 1.15;
    text-shadow: none;
    filter: drop-shadow(0 0 16px rgba(255,215,0,0.35));
}

/* ==============================================================
   💃🕺 BAILARINES ANIMADOS
   ============================================================== */
.dancer-banner {
    width: 100%;
    overflow: hidden;
    padding: 1.5rem 0;
    background: linear-gradient(90deg,
        rgba(0,255,136,0.04) 0%,
        rgba(255,215,0,0.06) 50%,
        rgba(233,30,140,0.04) 100%);
    border-top: 1px solid rgba(0,255,136,0.12);
    border-bottom: 1px solid rgba(255,215,0,0.1);
    margin-top: 2.5rem;
    position: relative;
}

/* Fade edges */
.dancer-banner::before,
.dancer-banner::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.dancer-banner::before {
    left: 0;
    background: linear-gradient(to right, rgba(14,14,35,1), transparent);
}
.dancer-banner::after {
    right: 0;
    background: linear-gradient(to left, rgba(14,14,35,1), transparent);
}

/* Track que se mueve */
.dancer-track {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    width: max-content;
    animation: dancerScroll 18s linear infinite;
    will-change: transform;
}

.dancer {
    font-size: 2.4rem;
    display: inline-block;
    animation: danceBounce 0.6s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 8px rgba(255,215,0,0.4));
    user-select: none;
}

/* Bailarina (mujer) */
.dancer:not(.dancer-m) {
    animation-duration: 0.55s;
    filter: drop-shadow(0 0 8px rgba(233,30,140,0.5));
}

/* Bailarín (hombre) */
.dancer-m {
    animation-duration: 0.65s;
    animation-delay: 0.3s;
    filter: drop-shadow(0 0 8px rgba(0,255,136,0.5));
}

@keyframes dancerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes danceBounce {
    0%   { transform: translateY(0) scaleX(1) rotate(-3deg); }
    100% { transform: translateY(-10px) scaleX(0.95) rotate(3deg); }
}

/* Mobile nav 3D items */
@media (max-width: 768px) {
    .nav-3d-list { flex-direction: column; align-items: stretch; gap: 4px; width: 100%; }
    .nav-3d-item {
        transform: none !important;
        border-radius: 8px;
        box-shadow: 0 2px 0 rgba(0,200,100,0.2), 0 4px 10px rgba(0,0,0,0.5);
    }
    .nav-3d-item:hover { transform: translateX(4px) !important; }
    .dancer { font-size: 1.8rem; }
    .about-brand-title { font-size: clamp(1.4rem, 6vw, 2rem) !important; }
}

/* ==============================================================
   ✏️ TEXTO CON BORDE BLANCO — ESTILO LOGO MYSTIKOS
   ============================================================== */

/* Hero slogan — solo borde blanco, relleno transparente */
.hero-slogan-outline {
    /* Borde blanco fino como el logo */
    -webkit-text-stroke: 2px #ffffff;
    text-stroke: 2px #ffffff;
    /* Relleno: degradado dorado-verde semi-transparente */
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
    background: linear-gradient(135deg, rgba(255,215,0,0.25) 0%, rgba(0,255,136,0.15) 50%, rgba(255,255,255,0.1) 100%);
    -webkit-background-clip: text !important;
    background-clip: text !important;
    /* Sombra de texto blanca para el efecto "neón outline" */
    filter: drop-shadow(0 0 12px rgba(255,255,255,0.55))
            drop-shadow(0 0 28px rgba(255,215,0,0.35));
    /* Pintar el stroke por fuera del fill */
    paint-order: stroke fill;
    font-weight: 900 !important;
    letter-spacing: .08em;
}

/* About brand title — borde blanco + gradiente */
.about-brand-title {
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.85) !important;
    text-stroke: 1.5px rgba(255,255,255,0.85) !important;
    paint-order: stroke fill !important;
    filter: drop-shadow(0 0 14px rgba(255,215,0,0.45))
            drop-shadow(0 0 30px rgba(0,255,136,0.2)) !important;
}

/* ==============================================================
   🎵 SOUNDWAVE CANVAS — ONDA SONORA EN EL HERO
   ============================================================== */
.soundwave-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Detrás del contenido del hero pero delante del fondo */
    z-index: 1;
    pointer-events: none;
    /* Opacidad para que no tape el logo ni los textos */
    opacity: 0.45;
    mix-blend-mode: screen;
}

/* El hero-content va encima de la onda */
.hero-section .hero-content {
    position: relative;
    z-index: 2;
}
.hero-section .scroll-indicator {
    position: relative;
    z-index: 2;
}
.hero-section .hero-glow-effect {
    z-index: 0;
}

/* ==============================================================
   📱 RESPONSIVE SOUNDWAVE
   ============================================================== */
@media (max-width: 768px) {
    .soundwave-canvas { opacity: 0.35; }
    .hero-slogan-outline { -webkit-text-stroke: 1.5px #ffffff; }
}

/* ==============================================================
   📸 HERO SLIDESHOW — FOTOS DEL SHOW
   ============================================================== */

.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

/* Cada slide es una foto de fondo */
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.04);  /* Ken Burns muy sutil */
    animation: heroKenBurns 12s ease-in-out infinite alternate;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Ken Burns effect sutil */
@keyframes heroKenBurns {
    0%   { transform: scale(1) translate(0, 0); }
    50%  { transform: scale(1.06) translate(-1%, 0.5%); }
    100% { transform: scale(1.03) translate(1%, -0.5%); }
}

/* Overlay degradado oscuro para que el texto se vea bien */
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        /* Arriba oscuro para el header */
        linear-gradient(to bottom,
            rgba(6,6,16,0.75) 0%,
            rgba(6,6,16,0.30) 30%,
            rgba(6,6,16,0.20) 55%,
            rgba(6,6,16,0.65) 85%,
            rgba(6,6,16,0.90) 100%
        );
}

/* Asegurar que la señal de onda y el contenido van encima del slideshow */
.hero-section .soundwave-canvas { z-index: 3; }
.hero-section .hero-content { z-index: 4; }
.hero-section .hero-glow-effect { z-index: 0; }
.hero-section .scroll-indicator { z-index: 4; }
.hero-section .hero-slide-dots { z-index: 5; }

/* Puntos indicadores del slideshow */
.hero-slide-dots {
    position: absolute;
    bottom: 6.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: .75rem;
    align-items: center;
}

.hero-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.6);
    background: transparent;
    cursor: pointer;
    transition: background .3s, transform .3s, border-color .3s;
    padding: 0;
}

.hero-dot.active {
    background: #ffd700;
    border-color: #ffd700;
    transform: scale(1.35);
    box-shadow: 0 0 10px rgba(255,215,0,0.7);
}

.hero-dot:hover {
    background: rgba(255,255,255,0.5);
    border-color: #fff;
}

@media (max-width: 768px) {
    .hero-slide-dots { bottom: 5.5rem; }
    .hero-dot { width: 8px; height: 8px; }
}

/* ==============================================================
   🎭 FONDO DE ESCENARIO AZUL — HERO
   ============================================================== */
.hero-stage-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('assets/stage-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: brightness(0.45) saturate(1.3);
    animation: stagePulse 8s ease-in-out infinite alternate;
}

@keyframes stagePulse {
    0%   { filter: brightness(0.42) saturate(1.3); }
    100% { filter: brightness(0.52) saturate(1.5); }
}

/* Overlay encima del escenario para profundidad */
.hero-with-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(6,6,18,0.55) 0%,
        rgba(0,10,30,0.25) 40%,
        rgba(0,10,30,0.20) 60%,
        rgba(6,6,18,0.80) 100%
    );
    pointer-events: none;
}

/* Orden de capas */
.hero-with-bg .hero-glow-effect { z-index: 1; }
.hero-with-bg .soundwave-canvas { z-index: 2; }
.hero-with-bg .hero-float-photos { z-index: 3; }
.hero-with-bg .hero-content { z-index: 4; }
.hero-with-bg .scroll-indicator { z-index: 4; }

/* ==============================================================
   🖼️ GALERÍA — FOTOS COMPLETAS (sin recortar)
   ============================================================== */
.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: contain !important;
    object-position: center;
    background: #08081a;
    display: block;
    transition: transform 0.4s ease;
}

/* Destacadas — más altas, foto completa vertical */
.gallery-item-featured {
    background: #06060f;
}

.gallery-item-featured img {
    height: 350px !important;
    object-fit: contain !important;
    object-position: center top;
    background: #06060f !important;
}

@media (min-width: 769px) {
    .gallery-item-featured img { height: 420px !important; }
}

@media (max-width: 600px) {
    .gallery-item img { height: 180px; }
    .gallery-item-featured img { height: 260px !important; }
}

/* ==============================================================
   🖼️ GALERÍA DE FOTOS — TAMAÑO NATURAL + BORDE DORADO
   ============================================================== */

.gallery-foto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
    padding: 8px 0;
}

/* Tarjeta limpia: solo foto + borde dorado */
.foto-item {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #c8960c;
    box-shadow:
        0 0 0 1px rgba(255,215,0,0.12),
        0 4px 18px rgba(0,0,0,0.55),
        0 0 12px rgba(200,150,12,0.18);
    background: #06060f;
    cursor: pointer;
    transition: border-color .25s, box-shadow .25s, transform .25s;
}

/* Foto a su tamaño natural — sin recorte */
.foto-item img {
    display: block;
    width: 100%;
    height: auto !important;
    object-fit: unset !important;
    object-position: unset !important;
    background: transparent;
    transition: transform .35s ease;
}

/* Hover: borde dorado brillante */
.foto-item:hover {
    border-color: #ffd700;
    box-shadow:
        0 0 0 2px rgba(255,215,0,0.35),
        0 8px 30px rgba(0,0,0,0.7),
        0 0 28px rgba(255,215,0,0.30);
    transform: translateY(-3px) scale(1.01);
}

.foto-item:hover img {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .gallery-foto-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

@media (max-width: 480px) {
    .gallery-foto-grid { grid-template-columns: 1fr; gap: 10px; }
}

