/* ========================================
   CSS RESET & GLOBAL STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

:root {
    /* Modern Color Palette */
    --primary-color: #6C63FF;
    --secondary-color: #FF6584;
    --accent-color: #FFD93D;
    --dark-bg: #0F0E17;
    --dark-secondary: #1a1825;
    --dark-tertiary: #2E2B3E;
    --light-text: #FFFFFE;
    --gray-text: #A7A9BE;
    --card-bg: #1E1C2A;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6C63FF 0%, #FF6584 100%);
    --gradient-secondary: linear-gradient(135deg, #FF6584 0%, #FFD93D 100%);
    --gradient-dark: linear-gradient(180deg, rgba(15, 14, 23, 0.9) 0%, rgba(15, 14, 23, 0.7) 100%);

    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Raleway', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 80px;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.container-full {
    padding: var(--container-padding);
}

/* ========================================
   MUSIC CONTROLS & VISUALIZER
   ======================================== */

.music-controls {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.music-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: var(--light-text);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition-spring);
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.music-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(108, 99, 255, 0.6);
}

.music-btn.playing {
    animation: musicPulse 1s infinite;
}

@keyframes musicPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(30, 28, 42, 0.95);
    padding: 10px 15px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition-smooth);
}

.music-controls:hover .volume-control {
    opacity: 1;
    transform: translateX(0);
}

.volume-control i {
    color: var(--primary-color);
    font-size: 18px;
}

.volume-slider {
    width: 100px;
    height: 4px;
    background: var(--dark-tertiary);
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background: var(--gradient-primary);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.3);
}

.volume-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: var(--gradient-primary);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

/* Audio Visualizer */
.audio-visualizer {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    gap: 8px;
    align-items: flex-end;
    height: 60px;
    z-index: 999;
}

.visualizer-bar {
    width: 6px;
    background: var(--gradient-primary);
    border-radius: 3px;
    height: 10px;
    transition: height 0.12s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 8px rgba(108, 99, 255, 0.4);
    will-change: height;
}

.visualizer-bar:nth-child(1) {
    height: 10px;
}

.visualizer-bar:nth-child(2) {
    height: 10px;
}

.visualizer-bar:nth-child(3) {
    height: 10px;
}

.visualizer-bar:nth-child(4) {
    height: 10px;
}

.visualizer-bar:nth-child(5) {
    height: 10px;
}

/* Mini Piano Keyboard */
.mini-piano {
    position: fixed;
    top: 50%;
    left: -180px;
    transform: translateY(-50%);
    display: flex;
    gap: 2px;
    z-index: 998;
    transition: var(--transition-smooth);
    padding: 15px;
    background: rgba(30, 28, 42, 0.95);
    border-radius: 0 15px 15px 0;
    backdrop-filter: blur(10px);
}

.mini-piano:hover {
    left: 0;
}

.piano-key {
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.piano-key.white {
    width: 28px;
    height: 120px;
    background: linear-gradient(to bottom, #fff, #e8e8e8);
    border: 1px solid #333;
    border-radius: 0 0 5px 5px;
}

.piano-key.black {
    width: 18px;
    height: 75px;
    background: linear-gradient(to bottom, #333, #000);
    border-radius: 0 0 3px 3px;
    margin-left: -10px;
    margin-right: -10px;
    z-index: 2;
}

.piano-key:hover {
    transform: translateY(2px);
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.5);
}

.piano-key.active {
    transform: translateY(3px);
    box-shadow: inset 0 3px 10px rgba(0, 0, 0, 0.3);
}

.piano-key.white.active {
    background: linear-gradient(to bottom, #f0f0f0, #d0d0d0);
}

.piano-key.black.active {
    background: linear-gradient(to bottom, #222, #000);
}

/* Floating Musical Notes */
.floating-notes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    transition: opacity 0.8s ease-out;
}

.floating-notes .note {
    position: absolute;
    top: -50px;
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0;
    animation: floatNote linear infinite;
}

@keyframes floatNote {
    0% {
        top: -50px;
        opacity: 0;
        transform: translateX(0) rotate(0deg);
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        top: 110vh;
        opacity: 0;
        transform: translateX(100px) rotate(360deg);
    }
}

.floating-notes .note:nth-child(1) {
    left: 10%;
    font-size: 20px;
}

.floating-notes .note:nth-child(2) {
    left: 30%;
    font-size: 28px;
}

.floating-notes .note:nth-child(3) {
    left: 50%;
    font-size: 22px;
}

.floating-notes .note:nth-child(4) {
    left: 70%;
    font-size: 26px;
}

.floating-notes .note:nth-child(5) {
    left: 90%;
    font-size: 24px;
}

/* Hide floating notes after about section */
.about~* .floating-notes,
.about~.floating-notes,
section#about~section .floating-notes {
    display: none !important;
}

/* Hide floating notes globally after about section appears */
body:has(#discography:target) .floating-notes,
body:has(#music-players:target) .floating-notes {
    display: none !important;
}

/* Sound Wave Effect */
.sound-wave {
    position: fixed;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    display: flex;
    gap: 6px;
    align-items: center;
    height: 150px;
    z-index: 998;
    padding: 20px;
    background: rgba(30, 28, 42, 0.95);
    border-radius: 15px 0 0 15px;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.sound-wave:hover {
    right: 0;
}

.wave-line {
    width: 4px;
    height: 20%;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: height 0.15s ease;
}

.wave-line:nth-child(1) {
    height: 40%;
}

.wave-line:nth-child(2) {
    height: 70%;
}

.wave-line:nth-child(3) {
    height: 50%;
}

.wave-line:nth-child(4) {
    height: 90%;
}

.wave-line:nth-child(5) {
    height: 60%;
}

.wave-line:nth-child(6) {
    height: 80%;
}

.wave-line:nth-child(7) {
    height: 45%;
}

/* Beat Indicator */
.beat-indicator {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 999;
}

.beat-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    animation: beatPulse 2s ease-in-out infinite;
}

.beat-circle:nth-child(1) {
    animation-delay: 0s;
}

.beat-circle:nth-child(2) {
    animation-delay: 0.5s;
}

.beat-circle:nth-child(3) {
    animation-delay: 1s;
}

.beat-circle:nth-child(4) {
    animation-delay: 1.5s;
}

@keyframes beatPulse {

    0%,
    100% {
        transform: scale(1);
        background: var(--dark-tertiary);
        box-shadow: 0 0 0 rgba(108, 99, 255, 0);
    }

    50% {
        transform: scale(1.5);
        background: var(--primary-color);
        box-shadow: 0 0 20px rgba(108, 99, 255, 0.8);
    }
}

.beat-circle.active {
    background: var(--gradient-primary);
    box-shadow: 0 0 20px rgba(108, 99, 255, 0.8);
    transform: scale(1.5);
}

/* Frequency Spectrum */
.frequency-spectrum {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    display: flex;
    gap: 8px;
    align-items: flex-end;
    justify-content: center;
    padding: 0 20px;
    opacity: 0.4;
    pointer-events: none;
}

.hero-spectrum {
    display: none;
}

.album-spectrum {
    display: flex;
}

.freq-bar {
    flex: 1;
    max-width: 60px;
    background: var(--gradient-primary);
    border-radius: 4px 4px 0 0;
    transform-origin: bottom;
}

.freq-bar:nth-child(1) {
    height: 40%;
    animation: freqRandom1 2.2s ease-in-out infinite;
}

.freq-bar:nth-child(2) {
    height: 60%;
    animation: freqRandom2 1.9s ease-in-out infinite;
}

.freq-bar:nth-child(3) {
    height: 80%;
    animation: freqRandom3 2.5s ease-in-out infinite;
}

.freq-bar:nth-child(4) {
    height: 50%;
    animation: freqRandom4 2.1s ease-in-out infinite;
}

.freq-bar:nth-child(5) {
    height: 90%;
    animation: freqRandom5 1.8s ease-in-out infinite;
}

.freq-bar:nth-child(6) {
    height: 70%;
    animation: freqRandom6 2.3s ease-in-out infinite;
}

.freq-bar:nth-child(7) {
    height: 100%;
    animation: freqRandom7 2.0s ease-in-out infinite;
}

.freq-bar:nth-child(8) {
    height: 60%;
    animation: freqRandom8 2.4s ease-in-out infinite;
}

.freq-bar:nth-child(9) {
    height: 85%;
    animation: freqRandom9 1.95s ease-in-out infinite;
}

.freq-bar:nth-child(10) {
    height: 65%;
    animation: freqRandom10 2.25s ease-in-out infinite;
}

.freq-bar:nth-child(11) {
    height: 75%;
    animation: freqRandom11 2.15s ease-in-out infinite;
}

.freq-bar:nth-child(12) {
    height: 95%;
    animation: freqRandom12 1.85s ease-in-out infinite;
}

/* Random animation keyframes for each bar */
@keyframes freqRandom1 {
    0% {
        transform: scaleY(0.3);
    }

    25% {
        transform: scaleY(0.8);
    }

    50% {
        transform: scaleY(0.5);
    }

    75% {
        transform: scaleY(1.1);
    }

    100% {
        transform: scaleY(0.3);
    }
}

@keyframes freqRandom2 {
    0% {
        transform: scaleY(0.6);
    }

    30% {
        transform: scaleY(1.2);
    }

    60% {
        transform: scaleY(0.4);
    }

    85% {
        transform: scaleY(0.9);
    }

    100% {
        transform: scaleY(0.6);
    }
}

@keyframes freqRandom3 {
    0% {
        transform: scaleY(0.4);
    }

    20% {
        transform: scaleY(0.7);
    }

    45% {
        transform: scaleY(1.3);
    }

    70% {
        transform: scaleY(0.6);
    }

    100% {
        transform: scaleY(0.4);
    }
}

@keyframes freqRandom4 {
    0% {
        transform: scaleY(0.5);
    }

    35% {
        transform: scaleY(1.0);
    }

    55% {
        transform: scaleY(0.8);
    }

    80% {
        transform: scaleY(0.35);
    }

    100% {
        transform: scaleY(0.5);
    }
}

@keyframes freqRandom5 {
    0% {
        transform: scaleY(0.7);
    }

    28% {
        transform: scaleY(0.4);
    }

    52% {
        transform: scaleY(1.15);
    }

    78% {
        transform: scaleY(0.65);
    }

    100% {
        transform: scaleY(0.7);
    }
}

@keyframes freqRandom6 {
    0% {
        transform: scaleY(0.45);
    }

    22% {
        transform: scaleY(0.95);
    }

    48% {
        transform: scaleY(0.55);
    }

    72% {
        transform: scaleY(1.25);
    }

    100% {
        transform: scaleY(0.45);
    }
}

@keyframes freqRandom7 {
    0% {
        transform: scaleY(0.35);
    }

    32% {
        transform: scaleY(1.1);
    }

    58% {
        transform: scaleY(0.7);
    }

    82% {
        transform: scaleY(0.5);
    }

    100% {
        transform: scaleY(0.35);
    }
}

@keyframes freqRandom8 {
    0% {
        transform: scaleY(0.55);
    }

    27% {
        transform: scaleY(0.75);
    }

    53% {
        transform: scaleY(0.4);
    }

    77% {
        transform: scaleY(1.2);
    }

    100% {
        transform: scaleY(0.55);
    }
}

@keyframes freqRandom9 {
    0% {
        transform: scaleY(0.65);
    }

    24% {
        transform: scaleY(1.15);
    }

    51% {
        transform: scaleY(0.45);
    }

    76% {
        transform: scaleY(0.85);
    }

    100% {
        transform: scaleY(0.65);
    }
}

@keyframes freqRandom10 {
    0% {
        transform: scaleY(0.5);
    }

    29% {
        transform: scaleY(0.6);
    }

    56% {
        transform: scaleY(1.05);
    }

    81% {
        transform: scaleY(0.38);
    }

    100% {
        transform: scaleY(0.5);
    }
}

@keyframes freqRandom11 {
    0% {
        transform: scaleY(0.42);
    }

    26% {
        transform: scaleY(1.08);
    }

    54% {
        transform: scaleY(0.68);
    }

    79% {
        transform: scaleY(0.52);
    }

    100% {
        transform: scaleY(0.42);
    }
}

@keyframes freqRandom12 {
    0% {
        transform: scaleY(0.58);
    }

    31% {
        transform: scaleY(0.48);
    }

    59% {
        transform: scaleY(1.18);
    }

    83% {
        transform: scaleY(0.72);
    }

    100% {
        transform: scaleY(0.58);
    }
}

.freq-bar:nth-child(odd) {
    opacity: 0.8;
}

.freq-bar:nth-child(even) {
    opacity: 0.6;
}

/* Genre Badges */
.genre-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.genre-badge {
    padding: 10px 20px;
    background: rgba(30, 28, 42, 0.8);
    border: 1px solid var(--primary-color);
    border-radius: 25px;
    font-size: 13px;
    color: var(--gray-text);
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    transition: var(--transition-spring);
}

.genre-badge i {
    color: var(--primary-color);
    font-size: 14px;
}

.genre-badge:hover {
    background: var(--gradient-primary);
    color: var(--light-text);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(108, 99, 255, 0.4);
}

.genre-badge:hover i {
    color: var(--light-text);
}

/* Vinyl Record */
.vinyl-record {
    position: absolute;
    top: 10%;
    right: 5%;
    z-index: 1;
    opacity: 0.15;
    pointer-events: none;
}

.vinyl-disc {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #1a1825 0%, #0F0E17 40%, #1a1825 60%, #0F0E17 100%);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.vinyl-disc::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: repeating-radial-gradient(circle at center,
            transparent 0px,
            transparent 2px,
            rgba(108, 99, 255, 0.1) 2px,
            rgba(108, 99, 255, 0.1) 4px);
    border-radius: 50%;
}

.vinyl-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vinyl-label::after {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--dark-bg);
    border-radius: 50%;
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
    background: transparent;
    transform: translateZ(0);
    will-change: transform, background;
    backface-visibility: hidden;
}

.navbar.scrolled {
    background: rgba(15, 14, 23, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.logo .beat-indicator {
    position: static;
    transform: none;
    display: flex;
    gap: 12px;
    z-index: auto;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--light-text);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #0F0E17 0%, #1a1825 50%, #2E2B3E 100%);
    overflow: visible;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(108,99,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -10%;
    width: 120%;
    height: 250px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 200" preserveAspectRatio="none"><path d="M0,50 Q150,130 300,90 T600,110 T900,70 T1200,90 L1200,200 L0,200 Z" fill="rgba(108,99,255,0.1)"/></svg>');
    background-size: 100% 100%;
    background-position: bottom;
    background-repeat: no-repeat;
    animation: waveMove 15s ease-in-out infinite;
    z-index: 1;
}

@keyframes waveMove {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-100px);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(108, 99, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255, 101, 132, 0.15) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 120px;
    font-weight: 900;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 10px;
    animation: slideDown 1s ease-out;
}

.hero-subtitle {
    font-family: var(--font-secondary);
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 8px;
    margin-bottom: 15px;
    color: var(--gray-text);
    text-transform: uppercase;
}

.hero-description {
    font-size: 18px;
    color: var(--gray-text);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 80px;
}

.btn {
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    transition: var(--transition-spring);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    transform: translateZ(0);
    will-change: transform;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--light-text);
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(108, 99, 255, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--light-text);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 10px;
    background: var(--primary-color);
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        top: 10px;
        opacity: 1;
    }

    100% {
        top: 30px;
        opacity: 0;
    }
}

/* ========================================
   SECTION HEADERS
   ======================================== */

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    font-family: var(--font-secondary);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--light-text);
    margin-bottom: 10px;
}

.section-header.light .section-title {
    color: var(--light-text);
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about {
    padding: var(--section-padding);
    background: var(--dark-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.2;
    transition: var(--transition-smooth);
}

.image-wrapper:hover .image-overlay {
    opacity: 0.1;
}

.about-text h3 {
    font-family: var(--font-display);
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--light-text);
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-text);
    margin-bottom: 20px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--dark-tertiary);
    border-radius: 15px;
    transition: var(--transition-smooth);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: var(--card-bg);
}

.stat-item h4 {
    font-family: var(--font-primary);
    font-size: 42px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 14px;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--dark-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    text-decoration: none;
    font-size: 20px;
    transition: var(--transition-spring);
}

.social-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px) rotate(360deg);
}

/* ========================================
   FEATURED ALBUM SECTION
   ======================================== */

.featured-album {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #1a1825 0%, #0F0E17 100%);
}

.album-showcase {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.album-cover-link {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.album-cover-link::after {
    content: '\f04b';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 60px;
    color: var(--light-text);
    background: var(--gradient-primary);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-spring);
    z-index: 10;
    box-shadow: 0 10px 40px rgba(108, 99, 255, 0.5);
}

.album-cover-link:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.album-cover-link:hover .album-cover-large {
    transform: scale(1.02);
}

.album-cover-large {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

.album-cover-large:hover {
    transform: scale(1.02);
}

.album-cover-large img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
}

.album-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(15, 14, 23, 0.95) 0%, transparent 100%);
}

.album-info-overlay h3 {
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 10px;
}

.album-info-overlay p {
    font-size: 14px;
    color: var(--gray-text);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.album-tracks {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.album-track {
    background: var(--dark-tertiary);
    padding: 25px 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.album-track:hover {
    background: var(--card-bg);
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.track-number {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 50px;
}

.track-info {
    flex: 1;
}

.track-info h4 {
    font-family: var(--font-secondary);
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--light-text);
}

.track-info p {
    font-size: 13px;
    color: var(--gray-text);
}

.track-links {
    display: flex;
    gap: 12px;
}

.track-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: var(--transition-spring);
    background: var(--dark-bg);
}

.track-link.youtube {
    color: #FF0000;
}

.track-link.spotify {
    color: #1DB954;
}

.track-link.apple {
    color: #eeeeee;
}

.track-link:hover {
    transform: scale(1.2) rotate(10deg);
}

/* ========================================
   DISCOGRAPHY SECTION
   ======================================== */

.discography {
    padding: var(--section-padding);
    background: var(--dark-bg);
}

.discography-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.song-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    will-change: transform, box-shadow;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    transform: translateZ(0);
}

.song-card:hover {
    transform: translateY(-10px) translateZ(0);
    box-shadow: 0 20px 60px rgba(108, 99, 255, 0.3);
}

.song-artwork {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    cursor: pointer;
}

.song-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    backface-visibility: hidden;
}

.song-card:hover .song-artwork img {
    transform: scale(1.1) translateZ(0);
}

.song-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 14, 23, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.song-card:hover .song-overlay {
    opacity: 1;
}

.play-button {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--light-text);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
}

.song-card:hover .play-button {
    transform: scale(1.2) translateZ(0);
}

.song-info {
    padding: 25px;
}

.song-info h3 {
    font-family: var(--font-display);
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--light-text);
}

.song-info p {
    font-size: 14px;
    color: var(--gray-text);
    margin-bottom: 20px;
}

.song-links {
    display: flex;
    gap: 15px;
}

.song-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: var(--dark-tertiary);
    will-change: transform;
}

.song-link.youtube {
    color: #FF0000;
}

.song-link.spotify {
    color: #1DB954;
}

.song-link.apple {
    color: #eeeeee;
}

.song-link:hover {
    transform: scale(1.15) rotate(15deg) translateZ(0);
    background: var(--dark-bg);
}

/* ========================================
   GALLERY SECTION
   ======================================== */

.gallery {
    padding: var(--section-padding);
    background: var(--dark-secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1/1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 14, 23, 0.95) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--light-text);
}

.gallery-links {
    display: flex;
    gap: 12px;
}

.gallery-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    text-decoration: none;
    font-size: 18px;
    transition: var(--transition-spring);
}

.gallery-links a:nth-child(1) {
    color: #FF0000;
}

.gallery-links a:nth-child(2) {
    color: #1DB954;
}

.gallery-links a:nth-child(3) {
    color: #FA243C;
}

.gallery-links a:hover {
    transform: scale(1.2);
    background: var(--primary-color);
    color: var(--light-text);
}

/* ========================================
   MUSIC PLAYERS SECTION
   ======================================== */

.music-players {
    padding: var(--section-padding);
    background: var(--dark-bg);
}

.player-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.player-card {
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    transition: var(--transition-spring);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.player-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: var(--transition-smooth);
}

.player-card:hover::before {
    left: 100%;
}

.youtube-card {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, rgba(255, 0, 0, 0.05) 100%);
}

.youtube-card:hover {
    border-color: #FF0000;
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.3);
}

.spotify-card {
    background: linear-gradient(135deg, rgba(29, 185, 84, 0.1) 0%, rgba(29, 185, 84, 0.05) 100%);
}

.spotify-card:hover {
    border-color: #1DB954;
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(29, 185, 84, 0.3);
}

.apple-card {
    background: linear-gradient(135deg, rgba(250, 36, 60, 0.1) 0%, rgba(250, 36, 60, 0.05) 100%);
}

.apple-card:hover {
    border-color: #FA243C;
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(250, 36, 60, 0.3);
}

.player-card i {
    font-size: 64px;
    margin-bottom: 25px;
    display: block;
}

.youtube-card i {
    color: #FF0000;
}

.spotify-card i {
    color: #1DB954;
}

.apple-card i {
    color: #FA243C;
}

.player-card h3 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--light-text);
    margin-bottom: 10px;
}

.player-card p {
    font-size: 14px;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--dark-bg);
    padding: 60px 0 25px;
    border-top: 1px solid rgba(108, 99, 255, 0.2);
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand h2 {
    font-family: var(--font-display);
    font-size: 32px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.footer-brand p {
    color: var(--gray-text);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-contact {
    margin-top: 20px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-text);
    font-size: 13px;
    margin-bottom: 10px;
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 14px;
    width: 20px;
}

.footer-column h4 {
    font-family: var(--font-secondary);
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--light-text);
    font-weight: 600;
}

.footer-column a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-text);
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 12px;
    transition: var(--transition-smooth);
}

.footer-column a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-column a i {
    font-size: 14px;
    width: 16px;
}

.social-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--dark-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition-spring);
    margin-bottom: 0;
}

.social-icons a:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px) rotate(360deg);
    padding-left: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid var(--dark-tertiary);
}

.footer-bottom p {
    color: var(--gray-text);
    font-size: 13px;
    margin-bottom: 8px;
}

.footer-bottom i {
    color: var(--secondary-color);
}

.footer-bottom .designer-link {
    color: var(--gray-text);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.footer-bottom .designer-link:hover {
    color: #0077b5;
    transform: translateY(-2px);
}

.footer-bottom .designer-link i {
    font-size: 14px;
    color: #0077b5;
    transition: transform 0.3s ease;
}

.footer-bottom .designer-link:hover i {
    transform: scale(1.2);
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1200px) {
    :root {
        --container-padding: 0 40px;
    }

    .hero-title {
        font-size: 90px;
    }

    .section-title {
        font-size: 50px;
    }

    .album-showcase {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    .navbar {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        transform: translate3d(0, 0, 0);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--dark-bg);
        flex-direction: column;
        padding: 100px 40px;
        gap: 30px;
        transition: var(--transition-smooth);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        transform: translate3d(0, 0, 0);
        will-change: transform;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .hero-title {
        font-size: 70px;
        letter-spacing: 5px;
    }

    .hero-subtitle {
        font-size: 18px;
        letter-spacing: 4px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .stat-item h4 {
        font-size: 32px;
    }

    .discography-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 30px;
    }

    .player-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
}

@media (max-width: 640px) {
    :root {
        --container-padding: 0 20px;
        --section-padding: 60px 0;
    }

    .navbar {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
    }

    .nav-container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 50px;
        letter-spacing: 3px;
    }

    .hero-subtitle {
        font-size: 14px;
        letter-spacing: 3px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .image-wrapper img {
        height: 400px;
    }

    .about-text h3 {
        font-size: 28px;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 20px;
    }

    .album-info-overlay {
        padding: 25px;
    }

    .album-info-overlay h3 {
        font-size: 24px;
    }

    .album-track {
        padding: 20px;
        gap: 15px;
    }

    .track-number {
        font-size: 22px;
        min-width: 40px;
    }

    .track-info h4 {
        font-size: 16px;
    }

    .track-link {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .discography-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .player-card {
        padding: 40px 30px;
    }

    .player-card i {
        font-size: 48px;
    }

    .player-card h3 {
        font-size: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-column:nth-child(2),
    .footer-column:nth-child(3) {
        display: none;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    .music-controls {
        bottom: 20px;
        right: 20px;
    }

    .music-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .audio-visualizer {
        bottom: 20px;
        left: 20px;
        height: 40px;
    }

    .visualizer-bar {
        width: 4px;
    }

    .volume-control {
        display: none;
    }

    .floating-notes .note {
        font-size: 18px;
    }

    .mini-piano {
        display: none;
    }

    .sound-wave {
        display: none;
    }

    .beat-indicator {
        top: 80px;
        gap: 10px;
    }

    .beat-circle {
        width: 10px;
        height: 10px;
    }

    .genre-badges {
        gap: 10px;
    }

    .genre-badge {
        padding: 8px 15px;
        font-size: 11px;
    }

    .vinyl-record {
        display: none;
    }

    .vinyl-disc {
        width: 200px;
        height: 200px;
    }

    .vinyl-label {
        width: 70px;
        height: 70px;
    }

    .frequency-spectrum {
        height: 80px;
        gap: 4px;
    }

    .hero-spectrum {
        display: flex;
        bottom: 30px;
        opacity: 0.5;
    }

    .album-spectrum {
        display: none;
    }

    /* Mobile Performance Optimizations */
    img,
    video {
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    section {
        transform: translate3d(0, 0, 0);
    }

    .song-card:active,
    .btn:active,
    .player-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}