/* Escobar Entertainment Custom Premium CSS */

/* --- CSS Variables & Design Tokens --- */
:root {
    --font-primary: 'Inter', sans-serif;
    --font-accent: 'Syne', sans-serif;

    /* Color Palette */
    --color-bg-deep: #060608;
    --color-bg-card: rgba(20, 20, 28, 0.45);
    --color-bg-card-hover: rgba(30, 30, 42, 0.6);
    --color-border: rgba(255, 255, 255, 0.05);
    --color-border-glow: rgba(255, 255, 255, 0.25);
    
    /* Neon Accents */
    --color-primary: #ffffff; /* Cyber Cyan */
    --color-secondary: #94a3b8; /* Purple */
    --color-gradient-primary: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    --color-gradient-accent: linear-gradient(135deg, #e2e8f0 0%, #64748b 100%);
    --color-gradient-text: linear-gradient(90deg, #ffffff, #94a3b8);

    /* Text colors */
    --color-text-main: #f3f4f6;
    --color-text-muted: #9ca3af;
    --color-text-dark: #1f2937;

    /* Transitions & Blurs */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --blur-glass: blur(16px);
    
    /* Layout */
    --header-height: 80px;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--color-bg-deep);
    color: var(--color-text-main);
    font-family: var(--font-primary);
    overflow-x: hidden;
    width: 100%;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-deep);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gradient-primary);
}

/* --- Typography Utilities --- */
.text-gradient {
    background: var(--color-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-silver {
    color: var(--color-primary);
}

/* --- Scroll Progress Bar --- */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    z-index: 9999;
    transition: width 0.1s ease-out;
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-tag {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-secondary);
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-accent);
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    font-weight: 400;
}

/* --- Button Styles --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-smooth);
    cursor: pointer;
    font-family: var(--font-primary);
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--color-gradient-primary);
    color: var(--color-bg-deep);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: var(--color-text-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: var(--blur-glass);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-spotify {
    background-color: #1DB954;
    color: #fff;
    font-size: 0.85rem;
    padding: 10px 20px;
}

.btn-spotify:hover {
    background-color: #1ed760;
    box-shadow: 0 0 15px rgba(29, 185, 84, 0.4);
}

.btn-card {
    background: var(--color-gradient-text);
    color: #fff;
    font-size: 0.85rem;
    padding: 10px 20px;
    font-weight: 600;
}

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

.btn-block {
    display: flex;
    width: 100%;
}

/* --- Header & Nav Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(6, 6, 8, 0.7);
    backdrop-filter: var(--blur-glass);
    border-bottom: 1px solid var(--color-border);
    z-index: 1100;
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(6, 6, 8, 0.92);
    height: 70px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.nav-container {
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.nav-logo {
    height: 48px;
    width: auto;
    transition: var(--transition-smooth);
}

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

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-muted);
    letter-spacing: 0.5px;
    padding: 8px 0;
    position: relative;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--color-text-main);
}

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

.nav-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 18px !important;
    border-radius: 30px;
}

.nav-btn:hover {
    background: var(--color-gradient-primary);
    color: var(--color-bg-deep) !important;
    border-color: transparent;
}

.nav-btn::after {
    display: none;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
    padding: 8px;
}

.burger-bar {
    width: 24px;
    height: 2px;
    background-color: var(--color-text-main);
    transition: var(--transition-smooth);
}

/* Burger Active States */
.burger-menu.active .burger-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.burger-menu.active .burger-bar:nth-child(2) {
    opacity: 0;
}
.burger-menu.active .burger-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* --- Hero Section --- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: var(--header-height);
    background: linear-gradient(180deg, rgba(6, 6, 8, 0.75) 0%, rgba(6, 6, 8, 0.95) 100%), url('whatsapp_image_team.jpeg');
    background-size: cover;
    background-position: center center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.015) 1px, transparent 0);
    background-size: 24px 24px;
    pointer-events: none;
}

/* Background Ambient Glows */
.hero-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    pointer-events: none;
}

.glow-1 {
    width: 400px;
    height: 400px;
    background: var(--color-primary);
    top: 15%;
    left: 15%;
}

.glow-2 {
    width: 450px;
    height: 450px;
    background: var(--color-secondary);
    bottom: 15%;
    right: 15%;
}

.hero-content {
    max-width: 900px;
    padding: 0 24px;
    z-index: 10;
}

.hero-tagline {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 6px;
    color: var(--color-primary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-accent);
    font-size: 4.8rem;
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -2px;
    margin-bottom: 24px;
    text-transform: uppercase;
    background: linear-gradient(180deg, #ffffff 30%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    max-width: 650px;
    margin: 0 auto 40px auto;
    font-weight: 400;
}

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

/* Scroll indicator animation */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 4px;
    animation: scroll-bounce 1.6s infinite;
}

@keyframes scroll-bounce {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.3; }
    100% { transform: translateY(0); opacity: 1; }
}

/* --- Verticals & Services Section --- */
.vertientes-section {
    background-color: #08080c;
}

.verticals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.vertical-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 40px;
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
}

.vertical-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.15);
    background: var(--color-bg-card-hover);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.vertical-card.active {
    border-color: var(--color-primary);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.card-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--color-gradient-primary);
    color: var(--color-bg-deep);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    text-transform: uppercase;
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--color-primary);
    transition: var(--transition-smooth);
}

.vertical-card:hover .card-icon-wrapper {
    background: var(--color-gradient-primary);
    color: var(--color-bg-deep);
    border-color: transparent;
}

.vertical-card.active .card-icon-wrapper {
    background: var(--color-gradient-primary);
    color: var(--color-bg-deep);
}

.card-icon {
    width: 28px;
    height: 28px;
}

.vertical-card h3 {
    font-family: var(--font-accent);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.vertical-boss {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.vertical-card p:not(.vertical-boss) {
    color: var(--color-text-muted);
    font-size: 1rem;
    margin-bottom: 30px;
    flex-grow: 1;
}

.card-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-main);
    display: inline-flex;
    align-items: center;
}

.vertical-card:hover .card-link {
    color: var(--color-primary);
}

/* --- Roster (MGMT) Section --- */
.mgmt-section {
    background-color: var(--color-bg-deep);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-text-main);
    color: var(--color-bg-deep);
    border-color: transparent;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.artist-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.artist-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.12);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.artist-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #0f1015;
    overflow: hidden;
}

.artist-img-primary,
.artist-img-secondary {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
}

.artist-img-primary {
    z-index: 1;
    opacity: 1;
}

.artist-img-secondary {
    z-index: 2;
    opacity: 0;
    transform: scale(1.05);
    filter: blur(5px);
    visibility: hidden;
    pointer-events: none;
}

.artist-card:hover .artist-img-primary,
.artist-card.active .artist-img-primary {
    opacity: 0;
    transform: scale(0.95);
}

.artist-card:hover .artist-img-secondary,
.artist-card.active .artist-img-secondary {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
    visibility: visible;
}

.artist-card:hover .artist-img-primary:only-child,
.artist-card.active .artist-img-primary:only-child {
    opacity: 1;
    transform: scale(1.06);
}

.artist-image-placeholder {
    font-family: var(--font-accent);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    opacity: 0.8;
}

.artist-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 6, 8, 0.85);
    backdrop-filter: blur(4px);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    padding: 20px;
    pointer-events: none;
    z-index: 10;
}

.artist-card.active .artist-overlay {
    opacity: 1;
    pointer-events: auto;
}

@media (hover: hover) {
    .artist-card:hover .artist-overlay {
        opacity: 1;
        pointer-events: auto;
    }
}

.artist-card-note {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 6px 14px;
    border-radius: 20px;
}

.artist-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.artist-role {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.artist-info h3 {
    font-family: var(--font-accent);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.artist-bio {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 18px;
    flex-grow: 1;
}

.artist-highlights {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.highlight-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.highlight-title {
    color: var(--color-text-muted);
    font-weight: 500;
}

.highlight-value {
    font-weight: 700;
    color: var(--color-text-main);
    background: rgba(255, 255, 255, 0.03);
    padding: 2px 8px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.highlight-value.stat-glow {
    text-shadow: 
        0 0 5px rgba(255, 255, 255, 0.8),
        0 0 10px rgba(255, 255, 255, 0.4);
    font-weight: 800;
}

.artist-meta {
    margin-top: auto;
}

.meta-tag {
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--color-border);
    padding: 4px 10px;
    border-radius: 12px;
    color: var(--color-text-muted);
}

/* --- Triángulo Records (Player) Section --- */
.records-section {
    background-color: #0b0b0f;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

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

.records-info p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-top: 24px;
    margin-bottom: 40px;
}

.spotify-mock {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--color-border);
    padding: 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.spotify-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.spotify-logo {
    color: #1DB954;
}

.spotify-header h4 {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 600;
}

.spotify-header p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin: 0 !important;
}

/* Custom Music Player */
.player-container {
    background: rgba(20, 20, 30, 0.65);
    backdrop-filter: var(--blur-glass);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 28px;
    padding: 36px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5), 0 0 40px rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}

.player-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 16px;
}

.player-live {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-primary);
}

/* Equalizer Visualizer */
.equalizer {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 18px;
}

.equalizer .bar {
    width: 3px;
    height: 100%;
    background-color: var(--color-primary);
    border-radius: 2px;
    transform-origin: bottom;
}

.equalizer.playing .bar {
    animation: bounce 0.8s ease-in-out infinite alternate;
}

.equalizer.playing .bar:nth-child(1) { animation-duration: 0.4s; }
.equalizer.playing .bar:nth-child(2) { animation-duration: 0.6s; animation-delay: 0.15s; }
.equalizer.playing .bar:nth-child(3) { animation-duration: 0.5s; animation-delay: 0.3s; }
.equalizer.playing .bar:nth-child(4) { animation-duration: 0.7s; animation-delay: 0.1s; }
.equalizer.playing .bar:nth-child(5) { animation-duration: 0.45s; animation-delay: 0.2s; }

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

/* Vinyl disk area */
.player-disk-area {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 32px;
}

.disk {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: radial-gradient(circle, #222 20%, #08080a 60%, #111 100%);
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255,255,255,0.03);
    flex-shrink: 0;
    transition: transform 0.5s ease;
}

.disk.playing {
    animation: rotate 6s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.disk-center {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--color-primary);
    border: 6px solid var(--color-bg-deep);
}

.track-details h3 {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.2;
}

.track-details p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Seek Bar */
.player-progress-area {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.time {
    font-size: 0.75rem;
    font-family: var(--font-primary);
    color: var(--color-text-muted);
    width: 35px;
}

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

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 10px var(--color-primary);
    transition: var(--transition-smooth);
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.3);
}

/* Controls */
.player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 28px;
}

.ctrl-btn {
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.ctrl-btn:hover {
    color: var(--color-text-main);
    transform: scale(1.1);
}

.play-btn-main {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-gradient-primary);
    color: var(--color-bg-deep);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.25);
    transition: var(--transition-smooth);
}

.play-btn-main:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.4);
}

/* Volume control */
.player-volume {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

.slider-vol {
    -webkit-appearance: none;
    width: 80px;
    height: 3px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.slider-vol::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-text-main);
}

/* Track list inside player */
.track-list {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.track-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.track-item:hover {
    background-color: rgba(255,255,255,0.03);
}

.track-item.active {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.track-number {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-muted);
    width: 30px;
}

.track-item.active .track-number {
    color: var(--color-primary);
}

.track-title-row {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.track-name {
    font-size: 0.95rem;
    font-weight: 600;
}

.track-item.active .track-name {
    color: var(--color-primary);
}

.track-author {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.track-dur {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* --- Triángulo Films Section --- */
.films-section {
    background-color: var(--color-bg-deep);
}

.films-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.film-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-smooth);
    flex: 0 1 360px;
    width: 100%;
}

.film-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.12);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.film-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #0f1015;
    overflow: hidden;
}

.film-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    padding: 20px;
    text-align: center;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.film-card:hover .film-img-placeholder {
    transform: scale(1.05);
    opacity: 0.95;
}

.film-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.4;
    transition: var(--transition-smooth);
}

.film-card:hover .film-play-overlay {
    opacity: 1;
    background: rgba(6, 6, 8, 0.65);
}

.play-arrow {
    width: 50px;
    height: 50px;
    background-color: var(--color-text-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.play-arrow::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 14px solid var(--color-bg-deep);
    margin-left: 4px;
}

.film-card:hover .play-arrow {
    background-color: var(--color-primary);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.film-info {
    padding: 24px;
}

.film-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.film-info h3 {
    font-family: var(--font-accent);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.film-info p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Media Services Showcase Upgrade */
.media-services-showcase {
    display: grid;
    grid-template-columns: 1.1fr 1.9fr;
    gap: 40px;
    margin-top: 70px;
    background-color: #060608;
    background-image: linear-gradient(135deg, rgba(6, 6, 8, 0.55) 0%, rgba(15, 15, 25, 0.65) 100%), 
                      url('galactic_cloud_bg.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
    position: relative;
    backdrop-filter: var(--blur-glass);
}

.showcase-visual-side {
    position: relative;
    width: 100%;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.glass-branding-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    text-align: center;
    position: relative;
}

.glass-logo {
    max-width: 130px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.15));
}

.glass-statement {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    margin-top: 10px;
}

.showcase-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 2;
}

.showcase-content-side {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.showcase-header {
    margin-bottom: 35px;
    text-align: center;
}

.showcase-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.showcase-title {
    font-family: var(--font-accent);
    font-size: 1.8rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 16px;
    color: #ffffff;
    text-transform: uppercase;
}

.showcase-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.showcase-items-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.showcase-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition-smooth);
}

.showcase-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.item-number {
    font-family: var(--font-accent);
    font-size: 1.4rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    transition: var(--transition-smooth);
}

.showcase-item:hover .item-number {
    color: #ffffff;
    -webkit-text-stroke: 1px #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.item-text h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #ffffff;
}

.item-text p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .media-services-showcase {
        grid-template-columns: 1fr;
    }
    .showcase-visual-side {
        min-height: 250px;
    }
    .showcase-visual-overlay {
        background: linear-gradient(to bottom, rgba(6, 6, 8, 0) 50%, rgba(6, 6, 8, 0.95) 100%);
    }
    .showcase-content-side {
        padding: 30px 24px;
    }
}

/* --- Distribution Section --- */
.dist-section {
    background-color: #08080c;
    border-top: 1px solid var(--color-border);
}

.dist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.dist-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    transition: var(--transition-smooth);
}

.dist-card:hover {
    border-color: rgba(255,255,255,0.15);
    background: var(--color-bg-card-hover);
    transform: translateY(-6px);
}

.dist-logo-wrapper {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.dist-placeholder {
    font-family: var(--font-accent);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--color-text-main);
    letter-spacing: -0.5px;
    opacity: 0.9;
}

.dist-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.dist-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Contact & Booking Section --- */
.contact-section {
    background-color: var(--color-bg-deep);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-top: 24px;
    margin-bottom: 40px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.05rem;
}

.detail-icon {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 40px;
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 14px 18px;
    color: var(--color-text-main);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    outline: none;
    width: 100%;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239ca3af'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px 16px;
}

.form-group select option {
    background-color: var(--color-bg-deep);
    color: var(--color-text-main);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.form-status-msg {
    margin-top: 10px;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

.form-status-msg.success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-status-msg.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.hidden {
    display: none !important;
}

/* Button Spinner */
.btn-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0,0,0,0.1);
    border-top-color: var(--color-bg-deep);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* --- Footer --- */
.footer {
    background-color: #040406;
    border-top: 1px solid var(--color-border);
    padding: 80px 0 40px 0;
}

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

.footer-logo {
    height: 44px;
    margin-bottom: 24px;
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    max-width: 400px;
}

.footer-links h4,
.footer-social h4 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    color: var(--color-text-main);
}

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

.footer-links a {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

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

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-weight: 700;
    font-size: 0.8rem;
}

.social-icons a:hover {
    color: var(--color-bg-deep);
    background: var(--color-gradient-primary);
    border-color: transparent;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    transform: scale(1.08);
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 30px;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* --- Back To Top --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-gradient-primary);
    color: var(--color-bg-deep);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.45);
}

/* --- Video Lightbox --- */
.video-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 4, 6, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    padding: 24px;
}

.video-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: var(--color-text-main);
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-smooth);
}

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

.lightbox-content {
    width: 100%;
    max-width: 900px;
}

.lightbox-title {
    font-family: var(--font-accent);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

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

.lightbox-fallback a {
    color: var(--color-text-muted);
    text-decoration: underline;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.lightbox-fallback a:hover {
    color: var(--color-primary);
}

/* --- Scroll Reveal Animations --- */
[data-reveal] {
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}

[data-reveal="bottom"] {
    transform: translateY(40px);
}

[data-reveal="left"] {
    transform: translateX(-40px);
}

[data-reveal="right"] {
    transform: translateX(40px);
}

[data-reveal="scale"] {
    transform: scale(0.92);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Delay modifiers */
[data-delay="50"] { transition-delay: 50ms; }
[data-delay="100"] { transition-delay: 100ms; }
[data-delay="150"] { transition-delay: 150ms; }
[data-delay="200"] { transition-delay: 200ms; }
[data-delay="250"] { transition-delay: 250ms; }
[data-delay="300"] { transition-delay: 300ms; }
[data-delay="350"] { transition-delay: 350ms; }
[data-delay="400"] { transition-delay: 400ms; }

/* Hero Transitions */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: hero-fade-in 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-tagline.fade-in { animation-delay: 0.1s; }
.hero-title.fade-in { animation-delay: 0.25s; }
.hero-description.fade-in { animation-delay: 0.4s; }
.hero-actions.fade-in { animation-delay: 0.55s; }

@keyframes hero-fade-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Media Queries --- */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.8rem;
    }
    
    .verticals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vertical-card:nth-child(3) {
        grid-column: span 2;
    }

    .artists-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .records-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .films-grid {
        justify-content: center;
    }



    .dist-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    /* Header & Navigation burger */
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: rgba(10, 10, 15, 0.96);
        backdrop-filter: blur(20px);
        border-left: 1px solid var(--color-border);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition-smooth);
        z-index: 1050;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 36px;
        text-align: center;
    }

    .nav-link {
        font-size: 1.25rem;
    }

    /* General Layouts */
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: -0.5px;
    }

    .hero-description {
        font-size: 1.02rem;
    }

    .hero-actions {
        flex-direction: column;
        padding: 0 40px;
    }

    .section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .verticals-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .vertical-card:nth-child(3) {
        grid-column: span 1;
    }

    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .artist-card {
        border-radius: 16px;
    }

    .artist-info {
        padding: 16px;
    }

    .player-disk-area {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .player-container {
        padding: 24px;
    }

    .films-grid {
        gap: 24px;
    }

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

    .footer-brand {
        grid-column: span 1;
    }

    /* Hero Section Mobile Optimization */
    .hero-section {
        background-position: center top;
    }

    /* Media Services Showcase Mobile Optimization */
    .media-services-showcase {
        border-radius: 20px;
        margin-top: 40px;
        background-attachment: scroll;
    }

    .showcase-visual-side {
        min-height: 200px;
        padding: 20px;
    }

    .glass-branding-card {
        padding: 24px 16px;
    }

    .glass-logo {
        max-width: 90px;
        margin-bottom: 12px;
    }

    .glass-statement {
        font-size: 0.68rem;
        letter-spacing: 1.5px;
    }

    .showcase-badge {
        top: 12px;
        left: 12px;
        font-size: 0.65rem;
        padding: 4px 10px;
    }

    .showcase-content-side {
        padding: 24px 20px;
    }

    .showcase-title {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    .showcase-desc {
        font-size: 0.88rem;
    }

    .showcase-item {
        gap: 12px;
        padding-bottom: 16px;
    }

    .item-number {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.15;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.35rem;
    }

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

    .preloader-logo {
        width: 120px;
    }

    .preloader-audio-btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

    .preloader-skip-btn {
        font-size: 0.75rem;
    }
}

/* --- History / Nosotros Section --- */
.about-section {
    background-color: #0b0b0f;
    border-top: 1px solid var(--color-border);
}

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

.about-content h3 {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.about-content p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-stats {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 40px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-accent);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 8px;
    background: var(--color-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.stat-number.stat-glow {
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: #ffffff;
    color: #ffffff;
    text-shadow: 
        0 0 5px rgba(255, 255, 255, 0.8),
        0 0 10px rgba(255, 255, 255, 0.5),
        0 0 20px rgba(255, 255, 255, 0.3);
    animation: bulbFlash 3.5s ease-in-out infinite alternate;
}

@keyframes bulbFlash {
    0%, 100% {
        text-shadow: 
            0 0 4px rgba(255, 255, 255, 0.6),
            0 0 8px rgba(255, 255, 255, 0.3),
            0 0 15px rgba(255, 255, 255, 0.15);
        opacity: 0.85;
    }
    45%, 55% {
        text-shadow: 
            0 0 8px rgba(255, 255, 255, 1),
            0 0 18px rgba(255, 255, 255, 0.7),
            0 0 35px rgba(255, 255, 255, 0.5),
            0 0 55px rgba(255, 255, 255, 0.3);
        opacity: 1;
    }
    48% {
        text-shadow: 
            0 0 2px rgba(255, 255, 255, 0.3),
            0 0 5px rgba(255, 255, 255, 0.1);
        opacity: 0.6;
    }
    52% {
        text-shadow: 
            0 0 3px rgba(255, 255, 255, 0.4),
            0 0 6px rgba(255, 255, 255, 0.2);
        opacity: 0.75;
    }
}


.stat-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Artist Overlay Buttons --- */
.artist-overlay-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    align-items: center;
}

.artist-overlay-btns .btn {
    width: 160px;
    text-align: center;
    padding: 10px 16px;
    font-size: 0.85rem;
    border-radius: 30px;
    pointer-events: auto !important;
}

/* --- Responsive Adjustments for Nosotros --- */
@media (max-width: 1024px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        padding: 30px;
        gap: 24px;
    }
    .stat-item {
        flex: 1 1 30%;
    }
    .stat-action {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .about-stats {
        flex-direction: column;
        gap: 24px;
    }
    .stat-number {
        font-size: 2.8rem;
    }
}

/* --- Team Photo Nosotros --- */
.about-team-media {
    margin-top: 50px;
    width: 100%;
}

.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

.about-team-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-wrapper:hover .about-team-img {
    transform: scale(1.03);
}

.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 24px;
    background: linear-gradient(to top, rgba(6, 6, 8, 0.95) 0%, rgba(6, 6, 8, 0.6) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
}

.about-image-caption {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-main);
    border-left: 3px solid var(--color-primary);
    padding-left: 12px;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* --- Cinematic Preloader --- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    width: 100dvw;
    height: 100vh;
    height: 100dvh;
    background-color: var(--color-bg-deep);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), transform 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s;
}

.preloader-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.04);
}

.preloader-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    animation: pulseGlow 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes pulseGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 420px;
    padding: 0 24px;
    box-sizing: border-box;
}

.preloader-logo {
    width: 160px;
    height: auto;
    margin-bottom: 30px;
    opacity: 0;
    filter: blur(15px);
    transform: scale(0.8);
    animation: revealLogo 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.2s;
}

@keyframes revealLogo {
    to {
        opacity: 1;
        filter: blur(0);
        transform: scale(1);
    }
}

.preloader-bar-container {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.preloader-bar {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 10px;
    transform: scaleX(0);
    transform-origin: left;
    animation: fillBar 2.2s cubic-bezier(0.65, 0.05, 0.36, 1) forwards;
    animation-delay: 0.3s;
}

@keyframes fillBar {
    to {
        transform: scaleX(1);
    }
}

.preloader-text {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 5px;
    color: var(--color-text-muted);
    opacity: 0;
    transform: translateY(10px);
    animation: fadeUpText 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1.2s;
}

@keyframes fadeUpText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Mobile Menu Dimming Overlay --- */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 6, 8, 0.65);
    backdrop-filter: blur(4px);
    z-index: 1020;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
    pointer-events: none;
}

body.menu-open::after {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.menu-open {
    overflow: hidden;
}

/* --- Floating Audio Control Button --- */
.floating-audio-control {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-gradient-primary);
    color: var(--color-bg-deep);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.floating-audio-control.visible {
    opacity: 1;
    visibility: visible;
}

.floating-audio-control:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.25);
}

.floating-audio-control svg {
    transition: var(--transition-smooth);
}

/* --- Preloader Audio Trigger Controls --- */
.preloader-controls-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
    z-index: 10;
    animation: revealLogo 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.preloader-audio-btn {
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
    background: var(--color-gradient-primary);
    color: var(--color-bg-deep);
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.preloader-audio-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.25);
}

.preloader-skip-btn {
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
}

.preloader-skip-btn:hover {
    color: var(--color-text-main);
    text-decoration: underline;
}

.preloader-skip-intro-btn {
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
    background: var(--color-gradient-primary);
    color: var(--color-bg-deep);
    padding: 14px 36px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: var(--transition-smooth);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.preloader-skip-intro-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.35);
}

/* --- Detailed Statistics Modal --- */
.stats-modal-content {
    background: rgba(10, 10, 14, 0.95);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 650px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 30px 60px rgba(0,0,0,0.7);
    position: relative;
    z-index: 2100;
    transform: scale(0.95);
    transition: var(--transition-smooth);
}

.video-lightbox.active .stats-modal-content {
    transform: scale(1);
}

.stats-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
}

.stats-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}

.stats-table th, 
.stats-table td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-table th {
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-text-main);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.stats-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.stats-table td {
    color: var(--color-text-muted);
}

.stats-table td strong {
    color: var(--color-text-main);
}

.artist-badge {
    font-size: 0.65rem;
    padding: 3px 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-muted);
    border-radius: 10px;
    margin-left: 8px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: inline-block;
}

.summary-row {
    background: rgba(255, 255, 255, 0.04) !important;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.summary-row td {
    color: var(--color-text-main);
    font-weight: 700;
}

.stats-modal-footer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
    text-align: center;
    margin-top: 10px;
}

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

/* Custom Scrollbar for stats modal content */
.stats-modal-content::-webkit-scrollbar {
    width: 6px;
}
.stats-modal-content::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.1);
}
.stats-modal-content::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
}
.stats-modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.25);
}

/* --- Photo Wall / Gallery --- */
.photo-wall-container {
    margin-top: 50px;
    width: 100%;
}

.photo-wall-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.photo-wall-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #0d0d13;
}

.photo-wall-item.large {
    grid-column: span 3;
    aspect-ratio: 21 / 9;
}

.photo-wall-item.large img {
    object-position: center top;
}

.photo-wall-item:not(.large) {
    aspect-ratio: 1 / 1;
}

.photo-wall-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.photo-wall-item:hover img {
    transform: scale(1.06);
}

.photo-wall-item .item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 6, 8, 0.4);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.photo-wall-item:hover .item-overlay {
    opacity: 1;
}

.zoom-icon {
    font-size: 2rem;
    font-weight: 300;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 6, 8, 0.6);
    backdrop-filter: blur(4px);
    transition: var(--transition-smooth);
    transform: scale(0.9);
}

.photo-wall-item:hover .zoom-icon {
    transform: scale(1) rotate(90deg);
    border-color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .photo-wall-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .photo-wall-item.large {
        grid-column: span 2;
        aspect-ratio: 16 / 9;
    }
}

/* --- Image Lightbox --- */
.image-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(6, 6, 8, 0.95);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.image-lightbox-content {
    max-width: 85%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.image-lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-lightbox.active .image-lightbox-content img {
    transform: scale(1);
}

.image-lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 2.5rem;
    color: var(--color-text-muted);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 2100;
}

.image-lightbox-close:hover {
    color: #ffffff;
    transform: scale(1.1);
}

