@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --bg-color: #060609;
    --bg-alt: #0a0a0f;
    --surface-color: rgba(13, 13, 20, 0.7);
    --surface-hover: rgba(22, 22, 35, 0.85);
    --border-color: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --accent-purple: #c084fc;
    --accent-cyan: #22d3ee;
    --accent-magenta: #f472b6;
    
    --gradient-primary: linear-gradient(135deg, #c084fc 0%, #22d3ee 100%);
    --gradient-dark: linear-gradient(180deg, rgba(6, 6, 9, 0.8) 0%, rgba(6, 6, 9, 1) 100%);
    --gradient-glow: radial-gradient(circle at 50% 50%, rgba(192, 132, 252, 0.15) 0%, transparent 60%);
    --gradient-cyan-glow: radial-gradient(circle at 50% 50%, rgba(34, 211, 238, 0.1) 0%, transparent 60%);

    --glow-purple: 0 0 20px rgba(192, 132, 252, 0.4);
    --glow-cyan: 0 0 20px rgba(34, 211, 238, 0.4);
    --shadow-premium: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: var(--transition-fast);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-purple);
    box-shadow: var(--glow-purple);
}

/* Glassmorphism Utilities */
.glass-panel {
    background: var(--surface-color);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: border-color var(--transition-smooth), background-color var(--transition-smooth), transform var(--transition-smooth);
}

.glass-panel:hover {
    border-color: var(--border-hover);
    background: var(--surface-hover);
}

/* Text Gradient */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glowing Background Blobs */
.glow-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}

.blob-purple {
    background: var(--accent-purple);
    top: -10%;
    left: -10%;
}

.blob-cyan {
    background: var(--accent-cyan);
    bottom: -10%;
    right: -10%;
}

.blob-middle {
    background: var(--accent-magenta);
    top: 45%;
    left: 30%;
    width: 500px;
    height: 500px;
    opacity: 0.08;
}

/* Custom Selection */
::selection {
    background: rgba(192, 132, 252, 0.3);
    color: var(--text-primary);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: padding var(--transition-smooth), background-color var(--transition-smooth), backdrop-filter var(--transition-smooth);
}

header.scrolled {
    padding: 12px 0;
    background: rgba(6, 6, 9, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

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

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--accent-purple);
    box-shadow: var(--glow-purple);
    object-fit: cover;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    text-transform: uppercase;
    animation: neon-short-circuit 4s ease infinite;
}

.logo-subtitle {
    font-size: 0.65rem;
    color: var(--accent-cyan);
    letter-spacing: 0.25em;
    display: block;
    margin-top: -3px;
    font-weight: 600;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: var(--transition-fast);
    position: relative;
    padding: 6px 0;
}

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

.nav-link:hover {
    color: var(--text-primary);
}

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

.nav-link.active {
    color: var(--accent-purple);
    font-weight: 600;
}

/* Call to Action Button */
.btn-primary {
    background: var(--gradient-primary);
    color: #060609;
    border: none;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(34, 211, 238, 0.25);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-purple), var(--glow-cyan);
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-purple);
    transform: translateY(-2px);
}

/* Hamburger Menu button */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 6px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Sidebar Menu */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(6, 6, 9, 0.98);
    backdrop-filter: blur(25px);
    z-index: 999;
    padding: 120px 40px 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    border-left: 1px solid var(--border-color);
    transition: right var(--transition-smooth);
}

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

.mobile-nav .nav-link {
    font-size: 1.3rem;
    font-family: 'Space Grotesk', sans-serif;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 12px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 130px 20px;
    text-align: center;
    overflow: hidden;
    background: var(--gradient-dark);
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.18;
    filter: saturate(0.3) contrast(1.1) brightness(0.6);
    z-index: 1;
    transform: scale(1.02);
    animation: zoom-pulse 30s infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 40%, var(--bg-color) 100%),
                radial-gradient(circle at center, transparent 30%, var(--bg-color) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 950px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.hero-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-cyan);
    background: rgba(34, 211, 238, 0.06);
    border: 1px solid rgba(34, 211, 238, 0.15);
    padding: 6px 16px;
    border-radius: 30px;
    display: inline-block;
    box-shadow: inset 0 0 10px rgba(34, 211, 238, 0.05);
    animation: float 4s ease-in-out infinite;
}

.hero-title-container {
    position: relative;
    width: 100%;
}

.hero-title {
    font-size: clamp(3.2rem, 8vw, 6.8rem);
    line-height: 0.95;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 10px;
}

.hero-title span.shadows {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(192, 132, 252, 0.2));
}

.hero-title-acronym {
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--accent-magenta);
    font-weight: 300;
    letter-spacing: 0.4em;
    text-indent: 0.4em;
    margin-top: 15px;
    opacity: 0.9;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.4rem);
    color: var(--text-secondary);
    max-width: 650px;
    margin: 10px auto 20px auto;
    font-weight: 300;
    line-height: 1.7;
}

.hero-genres {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.genre-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    background: rgba(6, 6, 9, 0.4);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    transition: var(--transition-smooth);
    animation: neon-genre-glow 6s linear infinite;
}

/* Dynamic staggered delays for cascading neon wave effect */
.genre-tag:nth-child(1) { animation-delay: 0s; }
.genre-tag:nth-child(2) { animation-delay: -0.8s; }
.genre-tag:nth-child(3) { animation-delay: -1.6s; }
.genre-tag:nth-child(4) { animation-delay: -2.4s; }
.genre-tag:nth-child(5) { animation-delay: -3.2s; }
.genre-tag:nth-child(6) { animation-delay: -4.0s; }
.genre-tag:nth-child(7) { animation-delay: -4.8s; }

@keyframes neon-genre-glow {
    0% {
        color: var(--accent-cyan);
        border-color: rgba(34, 211, 238, 0.4);
        box-shadow: 0 0 10px rgba(34, 211, 238, 0.25), inset 0 0 5px rgba(34, 211, 238, 0.1);
    }
    33% {
        color: var(--accent-purple);
        border-color: rgba(192, 132, 252, 0.4);
        box-shadow: 0 0 10px rgba(192, 132, 252, 0.25), inset 0 0 5px rgba(192, 132, 252, 0.1);
    }
    66% {
        color: var(--accent-magenta);
        border-color: rgba(244, 114, 182, 0.4);
        box-shadow: 0 0 10px rgba(244, 114, 182, 0.25), inset 0 0 5px rgba(244, 114, 182, 0.1);
    }
    100% {
        color: var(--accent-cyan);
        border-color: rgba(34, 211, 238, 0.4);
        box-shadow: 0 0 10px rgba(34, 211, 238, 0.25), inset 0 0 5px rgba(34, 211, 238, 0.1);
    }
}

.genre-tag:hover {
    transform: translateY(-4px) scale(1.08);
    background: rgba(255, 255, 255, 0.06);
    filter: brightness(1.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5), 0 0 20px currentColor;
    cursor: default;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.scroll-indicator:hover {
    color: var(--text-primary);
}

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

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel-anim 1.8s infinite;
}

/* Sections Common Styles */
section {
    padding: 100px 20px;
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    z-index: 2;
}

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

.section-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent-purple);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 300;
}

/* Sound Desk & Player Section */
.sound-desk-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: stretch;
}

/* Media Player Component */
.media-player {
    display: flex;
    flex-direction: column;
    padding: 30px;
    height: 100%;
}

.player-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 30px;
}

.now-playing-cover {
    width: 140px;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
    flex-shrink: 0;
}

.now-playing-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.now-playing-cover img.spinning {
    animation: rotate-disk 20s linear infinite;
}

.now-playing-cover::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25px;
    height: 25px;
    background: #000;
    border-radius: 50%;
    border: 3px solid var(--bg-color);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.now-playing-cover.spinning::after {
    opacity: 1;
}

.now-playing-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.track-status {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-cyan);
}

.now-playing-title {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
}

.now-playing-artist {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

.now-playing-genre {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 10px;
    background: rgba(192, 132, 252, 0.08);
    border: 1px solid rgba(192, 132, 252, 0.15);
    color: var(--accent-purple);
    border-radius: 12px;
    width: max-content;
    margin-top: 6px;
}

/* Audio Visualizer */
.visualizer-container {
    height: 60px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3px;
    margin-bottom: 25px;
    padding: 0 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.visualizer-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.03);
    text-transform: uppercase;
    pointer-events: none;
    font-weight: 700;
}

.visualizer-bar {
    flex-grow: 1;
    height: 3px;
    background: linear-gradient(to top, var(--accent-cyan), var(--accent-purple));
    border-radius: 3px 3px 0 0;
    transition: height 0.08s ease;
    min-height: 3px;
    opacity: 0.4;
}

.visualizer-bar.active {
    opacity: 0.85;
}

/* Player Controls & Scrubber */
.player-controls {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: auto;
}

.scrubber-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.scrubber-bar-wrapper {
    position: relative;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    cursor: pointer;
}

.scrubber-bar-progress {
    height: 100%;
    width: 0%;
    background: var(--gradient-primary);
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    transition: width 0.1s linear;
}

.scrubber-bar-wrapper input[type="range"] {
    position: absolute;
    top: -12px;
    left: 0;
    width: 100%;
    height: 30px;
    opacity: 0;
    cursor: pointer;
    z-index: 10;
}

.time-display {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
}

/* Control Buttons */
.controls-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.btn-ctrl {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid transparent;
}

.btn-ctrl:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.05);
}

.btn-ctrl.active {
    color: var(--accent-cyan);
    text-shadow: var(--glow-cyan);
}

.btn-ctrl-play {
    width: 64px;
    height: 64px;
    background: #fff;
    color: #060609 !important;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.25);
    border: none !important;
}

.btn-ctrl-play:hover {
    transform: scale(1.06);
    background: var(--text-primary);
    box-shadow: 0 4px 25px rgba(255, 255, 255, 0.4);
}

.btn-ctrl-play:active {
    transform: scale(0.96);
}

/* Extra controls (Volume, watch video link) */
.extra-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
}

.volume-slider-wrapper {
    position: relative;
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}

.volume-progress {
    height: 100%;
    width: 80%;
    background: var(--accent-purple);
    border-radius: 4px;
    position: absolute;
    left: 0;
    top: 0;
}

.volume-slider-wrapper input[type="range"] {
    position: absolute;
    top: -13px;
    left: 0;
    width: 100%;
    height: 30px;
    opacity: 0;
    cursor: pointer;
    z-index: 10;
}

.btn-watch-video {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(34, 211, 238, 0.05);
    border: 1px solid rgba(34, 211, 238, 0.15);
    padding: 6px 14px;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-watch-video:hover {
    background: var(--accent-cyan);
    color: #060609;
    box-shadow: var(--glow-cyan);
}

.btn-watch-video.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

/* Playlist Panel */
.playlist-panel {
    display: flex;
    flex-direction: column;
    max-height: 520px;
    padding: 24px;
    overflow: hidden;
}

.playlist-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.playlist-count {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    padding: 3px 8px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
}

.playlist-rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    flex-grow: 1;
    padding-right: 6px;
}

.playlist-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

.playlist-row:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.04);
}

.playlist-row.active {
    background: rgba(192, 132, 252, 0.06);
    border-color: rgba(192, 132, 252, 0.15);
}

.row-index-container {
    width: 24px;
    text-align: center;
    color: var(--text-muted);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
}

.playlist-row.active .row-index-container {
    color: var(--accent-purple);
}

.row-cover {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

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

.row-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0; /* Ensures ellipsis works */
}

.row-title {
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.playlist-row.active .row-title {
    color: var(--accent-purple);
}

.row-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    gap: 8px;
}

.row-genre {
    color: var(--accent-cyan);
}

.row-video-badge {
    color: var(--accent-magenta);
}

.row-duration {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
}

/* Discography Grid Section */
.disco-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

.album-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.album-card-inner {
    padding: 16px;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 2;
}

.album-art-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 18px;
    border: 1px solid var(--border-color);
}

.album-art-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.album-art-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 6, 9, 0.65);
    backdrop-filter: blur(4px);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: opacity var(--transition-smooth);
    z-index: 3;
}

.album-card:hover .album-art-overlay {
    opacity: 1;
}

.album-card:hover .album-art-wrapper img {
    transform: scale(1.08);
}

.btn-play-quick {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-purple);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition-bounce);
    box-shadow: var(--glow-purple);
}

.btn-play-quick:hover {
    transform: scale(1.15);
    background: #fff;
    color: var(--bg-color);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}

.btn-video-quick {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    transition: var(--transition-bounce);
    backdrop-filter: blur(8px);
}

.btn-video-quick:hover {
    transform: scale(1.15);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: var(--glow-cyan);
}

.album-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-grow: 1;
}

.album-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.album-category {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-cyan);
}

.album-year {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}

.album-title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.album-footer-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 4px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.album-footer-desc span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Video Showcase Section */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.video-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    cursor: pointer;
}

.video-thumb-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.video-thumb-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    transition: transform var(--transition-smooth), opacity var(--transition-smooth);
}

.video-play-btn-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: rgba(6, 6, 9, 0.75);
    border: 2px solid #fff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition-smooth);
    backdrop-filter: blur(8px);
    z-index: 3;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.video-card:hover .video-play-btn-circle {
    transform: translate(-50%, -50%) scale(1.08);
    background: #fff;
    color: #060609;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

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

.video-card-info {
    padding: 20px;
}

.video-badge {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--accent-magenta);
    background: rgba(244, 114, 182, 0.08);
    border: 1px solid rgba(244, 114, 182, 0.15);
    padding: 2px 10px;
    border-radius: 10px;
    width: max-content;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.video-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 6px;
}

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

/* About / Biography Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-visuals {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-main-image {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
    position: relative;
}

.about-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-offset-image {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 50%;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid var(--bg-color);
    box-shadow: var(--shadow-premium);
    z-index: 5;
}

.about-offset-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-quote {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-primary);
    border-left: 4px solid var(--accent-purple);
    padding-left: 20px;
    line-height: 1.5;
    font-weight: 500;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-weight: 300;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 10px;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.highlight-stat {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-cyan);
    line-height: 1;
}

.highlight-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Logos Carousel Section */
.logo-carousel-section {
    padding: 60px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    background: rgba(255, 255, 255, 0.005);
}

.carousel-title {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.logo-carousel-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.logo-carousel-item {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    opacity: 0.65;
    filter: grayscale(0.5);
}

.logo-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-carousel-item:hover {
    opacity: 1;
    filter: grayscale(0);
    border-color: var(--accent-purple);
    transform: scale(1.1);
    box-shadow: var(--glow-purple);
}

/* Contact / Booking Section */
.contact-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding: 40px;
    height: 100%;
}

.contact-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(34, 211, 238, 0.06);
    border: 1px solid rgba(34, 211, 238, 0.15);
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: inset 0 0 10px rgba(34, 211, 238, 0.05);
}

.contact-card:hover .contact-icon {
    border-color: var(--accent-purple);
    color: var(--accent-purple);
    box-shadow: var(--glow-purple);
}

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

.contact-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.contact-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.contact-socials {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.social-circle-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-circle-btn:hover {
    border-color: var(--accent-purple);
    color: var(--accent-purple);
    background: rgba(192, 132, 252, 0.05);
    transform: translateY(-3px);
    box-shadow: var(--glow-purple);
}

/* Contact Form styling */
.contact-form-panel {
    padding: 40px;
}

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

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-purple);
    background: rgba(0, 0, 0, 0.35);
    box-shadow: 0 0 15px rgba(192, 132, 252, 0.15);
}

.form-group textarea {
    resize: none;
    min-height: 120px;
}

.btn-submit-form {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    font-size: 1rem;
    margin-top: 10px;
}

.form-status-msg {
    padding: 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    display: none;
    animation: fade-in 0.3s ease;
}

.form-status-msg.success {
    display: block;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.3);
    color: var(--accent-cyan);
}

/* Footer Section */
footer {
    background: #040406;
    border-top: 2px solid var(--accent-cyan);
    padding: 24px 20px; /* Reduced height to optimize space */
    position: relative;
    z-index: 2;
    animation: neon-border-color-change 8s linear infinite; /* Color-changing neon border */
    box-shadow: 0 -4px 20px rgba(34, 211, 238, 0.05);
}

@keyframes neon-border-color-change {
    0%, 100% {
        border-top-color: var(--accent-cyan);
        box-shadow: 0 -4px 20px rgba(34, 211, 238, 0.08);
    }
    33% {
        border-top-color: var(--accent-purple);
        box-shadow: 0 -4px 20px rgba(192, 132, 252, 0.08);
    }
    66% {
        border-top-color: var(--accent-magenta);
        box-shadow: 0 -4px 20px rgba(244, 114, 182, 0.08);
    }
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Compact layout */
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
    font-size: 0.8rem;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Secret M transparent PC metrics trigger button */
.pc-metrics-trigger {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.08);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    margin-left: 8px;
    vertical-align: middle;
    outline: none;
}

.pc-metrics-trigger:hover {
    color: var(--accent-cyan);
    border-color: var(--accent-cyan);
    background: rgba(34, 211, 238, 0.05);
    text-shadow: var(--glow-cyan);
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.25);
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .pc-metrics-trigger {
        display: none !important; /* Strictly hide on mobile viewports */
    }
}

/* PC METRIC DASHBOARD OVERLAY MODAL */
.metrics-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(3, 3, 5, 0.97);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    z-index: 2020;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    overflow-y: auto;
    padding: 60px 20px;
    scrollbar-width: thin;
}

.metrics-modal.active {
    opacity: 1;
    pointer-events: all;
}

.metrics-content-wrapper {
    width: 95%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-top: 45px; /* Prevent close button overlay collision */
    transform: scale(0.96) translateY(10px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.metrics-modal.active .metrics-content-wrapper {
    transform: scale(1) translateY(0);
}

.btn-metrics-close {
    position: absolute;
    top: 25px;
    right: 40px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    transition: var(--transition-fast);
    z-index: 2030;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-metrics-close:hover {
    color: var(--accent-magenta);
    border-color: rgba(244, 114, 182, 0.3);
    box-shadow: 0 0 15px rgba(244, 114, 182, 0.25);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-1px);
}

.metrics-header {
    text-align: center;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-bottom: 5px;
}

/* PC Dashboard Tabs System */
.metrics-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 15px;
    margin-bottom: 10px;
}

.metrics-tab-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    padding: 10px 24px;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    outline: none;
}

.metrics-tab-btn i {
    font-size: 0.95rem;
}

.metrics-tab-btn:hover {
    color: var(--accent-cyan);
    border-color: rgba(34, 211, 238, 0.3);
    background: rgba(34, 211, 238, 0.02);
}

.metrics-tab-btn.active {
    background: rgba(34, 211, 238, 0.07);
    border-color: var(--accent-cyan);
    color: #fff;
    box-shadow: var(--glow-cyan);
    text-shadow: var(--glow-cyan);
}

/* Tab panes switching logic */
.metrics-tab-pane {
    display: none;
}

.metrics-tab-pane.active {
    display: block;
    animation: metrics-pane-fade-in 0.45s ease forwards;
}

@keyframes metrics-pane-fade-in {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Didactic educational text panels */
.metrics-explanation-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-weight: 300;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.metrics-explanation-text p {
    margin: 0;
}

.explanation-list {
    margin-left: 20px;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style-type: none;
}

.explanation-list li {
    position: relative;
    padding-left: 20px;
}

.explanation-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-purple);
    font-size: 1.2rem;
    line-height: 1;
    filter: drop-shadow(var(--glow-purple));
}

.metrics-badge {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--accent-magenta);
    background: rgba(244, 114, 182, 0.08);
    border: 1px solid rgba(244, 114, 182, 0.15);
    padding: 3px 12px;
    border-radius: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.metrics-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: #fff;
}

.metrics-subtitle {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.2em;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.metrics-card {
    padding: 30px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: var(--shadow-premium);
}

.metrics-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 12px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.metrics-card-title i {
    color: var(--accent-purple);
    filter: drop-shadow(var(--glow-purple));
}

.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.metric-val {
    font-size: 1.15rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

.text-cyan {
    color: var(--accent-cyan);
    text-shadow: var(--glow-cyan);
}

.text-purple {
    color: var(--accent-purple);
    text-shadow: var(--glow-purple);
}

.text-magenta {
    color: var(--accent-magenta);
    text-shadow: var(--glow-magenta);
}

/* Country Progress Bar Chart */
.country-chart {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.country-bar-row {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 15px;
}

.country-name {
    font-size: 0.8rem;
    color: var(--text-secondary);
    width: 110px;
    flex-shrink: 0;
    font-weight: 600;
}

.country-progress-bg {
    flex-grow: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.country-progress-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease-in-out;
}

.country-progress-fill.cyan {
    background: var(--accent-cyan);
    box-shadow: var(--glow-cyan);
}

.country-progress-fill.purple {
    background: var(--accent-purple);
    box-shadow: var(--glow-purple);
}

.country-progress-fill.magenta {
    background: var(--accent-magenta);
    box-shadow: var(--glow-magenta);
}

.country-percent {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    width: 35px;
    text-align: right;
    font-family: 'Space Grotesk', sans-serif;
}

/* Playback heatmap grid */
.playback-heatmap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.heatmap-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 90px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.heatmap-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(192, 132, 252, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.heatmap-box.has-plays {
    background: rgba(34, 211, 238, 0.03);
    border-color: rgba(34, 211, 238, 0.2);
}

.heatmap-box.has-plays::after {
    background: radial-gradient(circle at center, rgba(34, 211, 238, 0.15) 0%, transparent 70%);
    opacity: 1;
}

.heatmap-box.hot {
    background: rgba(244, 114, 182, 0.05);
    border-color: rgba(244, 114, 182, 0.3);
}

.heatmap-box.hot::after {
    background: radial-gradient(circle at center, rgba(244, 114, 182, 0.25) 0%, transparent 70%);
    opacity: 1;
}

.heatmap-track-index {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--text-muted);
    font-family: 'Space Grotesk', sans-serif;
}

.heatmap-box.has-plays .heatmap-track-index {
    color: var(--accent-cyan);
}

.heatmap-box.hot .heatmap-track-index {
    color: var(--accent-magenta);
}

.heatmap-track-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    margin: 8px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.heatmap-track-plays {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    align-self: flex-end;
    font-family: 'Space Grotesk', sans-serif;
    display: flex;
    align-items: center;
    gap: 4px;
}

.heatmap-box.has-plays .heatmap-track-plays {
    color: var(--accent-cyan);
    text-shadow: var(--glow-cyan);
}

.heatmap-box.hot .heatmap-track-plays {
    color: var(--accent-magenta);
    text-shadow: var(--glow-magenta);
}

/* Video Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(3, 3, 5, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-smooth);
}

.lightbox-modal.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content-wrapper {
    position: relative;
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #000;
    transform: scale(0.9);
    transition: transform var(--transition-smooth);
}

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

.lightbox-video {
    width: 100%;
    height: 100%;
    display: block;
}

.btn-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: rgba(15, 15, 23, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    transition: var(--transition-fast);
    z-index: 2010;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.btn-lightbox-close:hover {
    color: var(--accent-magenta);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(244, 114, 182, 0.3);
    box-shadow: 0 0 15px rgba(244, 114, 182, 0.25);
    transform: translateY(-1px);
}

/* --- Mobile App Shell Styles (Desktop Default) --- */
.mobile-tab-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 70px;
    background: rgba(6, 6, 9, 0.75);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1999;
    align-items: center;
    justify-content: space-around;
    padding: 0 10px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    width: 20%;
    height: 100%;
    transition: var(--transition-fast);
}

.tab-item i {
    font-size: 1.25rem;
}

.tab-item:hover, .tab-item.active {
    color: var(--accent-cyan);
    text-shadow: var(--glow-cyan);
}

.tab-item.active i {
    color: var(--accent-purple);
    filter: drop-shadow(var(--glow-purple));
}

/* Floating Mini-Player */
.mobile-mini-player {
    display: none;
    position: fixed;
    bottom: 78px; /* Above TabBar + margin */
    left: 5%;
    width: 90%;
    height: 60px;
    background: rgba(13, 13, 20, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    z-index: 1998;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8), var(--shadow-premium);
    transform: translateY(150%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
    cursor: pointer;
}

.mobile-mini-player.active {
    transform: translateY(0);
    opacity: 1;
}

.mini-player-progress-container {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    position: absolute;
    top: 0;
    left: 0;
}

.mini-player-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--gradient-primary);
    transition: width 0.1s linear;
}

.mini-player-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 0 16px;
    margin-top: 2px; /* Avoid overlapping the progress bar */
}

.mini-player-info-col {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0; /* Enables ellipsis text */
    flex-grow: 1;
}

.mini-player-cover-wrapper {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.mini-player-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-player-cover.spinning {
    animation: rotate-disk 20s linear infinite;
}

.mini-player-text {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.mini-player-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mini-player-artist {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mini-player-controls-col {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.mini-player-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.mini-player-btn:active {
    transform: scale(0.9);
    background: rgba(255, 255, 255, 0.05);
}

/* Animations declarations */
@keyframes zoom-pulse {
    0% { transform: scale(1.02); }
    100% { transform: scale(1.12); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes scroll-wheel-anim {
    0% {
        top: 6px;
        opacity: 1;
    }
    50% {
        top: 18px;
        opacity: 0.3;
    }
    100% {
        top: 6px;
        opacity: 0;
    }
}

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

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsiveness - Tablet and Mobile */
@media (max-width: 1024px) {
    .sound-desk-container {
        grid-template-columns: 1fr;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-offset-image {
        bottom: -20px;
        right: -20px;
    }
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-info {
        padding: 20px 0;
    }
    .contact-form-panel {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }
    .nav-links-desktop,
    .nav-cta-desktop {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .hero-title-acronym {
        font-size: 1.8rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    .btn-primary, .btn-secondary {
        width: 100%;
    }
    .sound-desk-container {
        gap: 20px;
    }
    .media-player {
        padding: 20px;
    }
    .player-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .playlist-panel {
        padding: 16px;
        max-height: 400px;
    }
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .about-offset-image {
        display: none;
    }
    .btn-lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    .visualizer-container {
        gap: 1.5px;
        padding: 0 6px;
    }

    /* Show Mobile App Shell Components */
    .mobile-tab-bar {
        display: flex;
    }

    .mobile-mini-player {
        display: block;
    }

    /* Hide hamburger and let bottom bar govern layout */
    header .hamburger {
        display: none !important;
    }

    /* Avoid clipping text under persistent bottom navigation */
    body, main {
        padding-bottom: 90px !important;
    }

    /* Convert desktop grids into high-fidelity touch carousels with mandatory snapping */
    .disco-grid, .video-grid, .shorts-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 20px !important;
        padding: 10px 20px 24px 20px !important;
        margin: 0 -20px !important;
        scrollbar-width: none !important; /* Hide scrollbars Firefox */
        -webkit-overflow-scrolling: touch;
    }

    .disco-grid::-webkit-scrollbar, 
    .video-grid::-webkit-scrollbar, 
    .shorts-grid::-webkit-scrollbar {
        display: none !important; /* Hide scrollbars Chrome/Safari */
    }

    /* Set app-like card widths and snap alignments for swipe ease */
    .album-card, .video-card, .short-card {
        flex: 0 0 280px !important;
        scroll-snap-align: center !important;
        margin-bottom: 0 !important;
    }

    .video-card {
        flex: 0 0 310px !important;
    }

    .short-card {
        flex: 0 0 220px !important;
    }
}

/* Height-based responsiveness to prevent hero elements overlap */
@media (max-height: 750px) {
    .hero {
        padding-top: 100px;
        padding-bottom: 110px;
    }
    .hero-content {
        gap: 16px;
    }
    .hero-subtitle {
        margin: 5px auto 10px auto;
    }
}

@media (max-height: 680px) {
    .scroll-indicator {
        display: none !important;
    }
}

/* Animated Shorts Layout & Perspective Styles */
.shorts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
}

.short-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    cursor: pointer;
    transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.short-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-magenta);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8), var(--glow-cyan);
}

.short-thumb-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9/15;
    background: #000;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

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

.short-card:hover .short-video-preview {
    transform: scale(1.04);
    opacity: 0.95;
}

.short-play-btn-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(6, 6, 9, 0.75);
    border: 2px solid #fff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition-smooth);
    backdrop-filter: blur(8px);
    z-index: 3;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    opacity: 0;
}

.short-card:hover .short-play-btn-circle {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
}

.short-play-btn-circle:hover {
    background: #fff;
    color: #060609;
}

.short-duration-tag {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(6, 6, 9, 0.75);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    z-index: 3;
}

.short-card-info {
    padding: 16px;
}

.short-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.short-card-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Intro Preloader Overlay Styles */
.intro-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #030305;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    overflow: hidden;
}

.intro-preloader.dismissed {
    opacity: 0;
    pointer-events: none;
    transform: scale(1.08) translateY(-20px);
}

/* Background video styling */
.intro-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
    opacity: 0.38; /* Dimmed for text contrast */
    filter: saturate(0.4) contrast(1.1) brightness(0.6);
}

/* Radial Vignette Masking */
.intro-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, #030305 90%),
                linear-gradient(180deg, rgba(3, 3, 5, 0.4) 0%, #030305 100%);
    z-index: 2;
    pointer-events: none;
}

.intro-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
    text-align: center;
    max-width: 90%;
    position: relative;
    z-index: 3;
}

.intro-title {
    font-size: clamp(2.2rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
}

.intro-letter {
    display: inline-block;
    color: #fff;
    opacity: 0;
    transform: translateY(20px) scale(0.85);
    filter: blur(8px);
    animation: reveal-letter 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Dynamic Short-Circuit Flickering Neon animation */
.intro-letter.flicker {
    animation: reveal-letter 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
               neon-short-circuit 3s ease infinite;
}

.intro-subtitle {
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--accent-cyan);
    opacity: 0;
    transform: translateY(10px);
    animation: fade-in-up-simple 0.8s ease forwards;
    animation-delay: 1.6s;
    text-shadow: var(--glow-cyan);
}

/* Glassmorphic Skip Intro button */
.intro-skip-btn {
    background: rgba(15, 15, 23, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    position: relative;
    z-index: 4;
}

.intro-skip-btn:hover {
    background: var(--gradient-primary);
    color: #060609;
    border-color: transparent;
    box-shadow: var(--glow-purple), var(--glow-cyan);
    transform: translateY(-2px);
}

@keyframes reveal-letter {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes fade-in-up-simple {
    to {
        opacity: 0.8;
        transform: translateY(0);
    }
}

/* Neon Short-Circuit flickering and color-shifting keyframes */
@keyframes neon-short-circuit {
    0%, 12%, 18%, 22%, 40%, 43%, 45%, 47%, 75%, 79%, 83%, 100% {
        color: #fff;
        text-shadow: 0 0 4px #fff, 
                     0 0 10px var(--accent-purple), 
                     0 0 20px var(--accent-purple), 
                     0 0 40px var(--accent-cyan);
        opacity: 1;
    }
    13%, 17%, 41%, 44%, 76%, 78%, 80% {
        color: rgba(255, 255, 255, 0.05);
        text-shadow: none;
        opacity: 0.08;
    }
    14%, 42%, 77%, 81% {
        color: var(--accent-cyan);
        text-shadow: 0 0 10px var(--accent-cyan), 0 0 20px var(--accent-cyan);
        opacity: 0.75;
    }
    20%, 46% {
        color: rgba(255, 255, 255, 0.02);
        text-shadow: none;
        opacity: 0.03;
    }
    21%, 82% {
        color: var(--accent-magenta);
        text-shadow: 0 0 10px var(--accent-magenta), 0 0 20px var(--accent-magenta);
        opacity: 0.85;
    }
}

/* Preloader Sound Badge */
.preloader-sound-badge {
    background: rgba(15, 15, 23, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    pointer-events: all;
    animation: fade-in-up-simple 0.8s ease forwards;
    animation-delay: 1.8s;
    opacity: 0;
    transform: translateY(10px);
    position: relative;
    z-index: 5;
}

.preloader-sound-badge:hover {
    border-color: var(--accent-cyan);
    color: var(--text-primary);
    box-shadow: var(--glow-cyan);
    transform: translateY(-1px);
}

.preloader-sound-badge.unmuted {
    border-color: var(--accent-purple);
    color: var(--accent-purple);
    box-shadow: var(--glow-purple);
}

.preloader-sound-badge i {
    font-size: 0.9rem;
}

.preloader-sound-badge.unmuted i {
    animation: bounce-pulse-horizontal 1.2s infinite;
}

@keyframes bounce-pulse-horizontal {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.25); }
}

/* Premium Language Switcher Button styling */
.btn-lang-toggle {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    cursor: pointer;
    transition: var(--transition-fast);
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
}

.btn-lang-toggle:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    background: rgba(34, 211, 238, 0.06);
    box-shadow: var(--glow-cyan);
    transform: translateY(-1px);
}

.btn-lang-toggle:active {
    transform: translateY(0);
}


