/* ============================================
   FRANCIS KNIGHT - Electro Pop Artist
   Dark Cinematic & Elegant Design
   ============================================ */

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

:root {
    --bg-primary: #050505;
    --bg-secondary: #0a0a0a;
    --bg-tertiary: #111111;
    --bg-card: #0d0d0d;
    --text-primary: #ffffff;
    --text-secondary: #8a8a8a;
    --text-muted: #555555;
    --accent: #7c3aed;
    --accent-light: #a78bfa;
    --accent-glow: rgba(124, 58, 237, 0.3);
    --accent-gradient: linear-gradient(135deg, #7c3aed, #a855f7, #ec4899);
    --pink: #ec4899;
    --pink-light: #f472b6;
    --cyan: #06b6d4;
    --cosmic-gradient: linear-gradient(135deg, #7c3aed, #ec4899, #06b6d4);
    --border: rgba(255, 255, 255, 0.06);
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ---- COSMIC BACKGROUND CANVAS ---- */
#cosmic-bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    pointer-events: none;
    mix-blend-mode: screen;
}

body.loading {
    overflow: hidden;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

/* ---- LOADER ---- */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    text-align: center;
}

.loader-text {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 700;
    letter-spacing: 0.3em;
    display: flex;
    gap: 2px;
}

.loader-text span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: loaderLetter 0.5s var(--ease-out) forwards;
}

.loader-text span:nth-child(1) { animation-delay: 0.05s; }
.loader-text span:nth-child(2) { animation-delay: 0.1s; }
.loader-text span:nth-child(3) { animation-delay: 0.15s; }
.loader-text span:nth-child(4) { animation-delay: 0.2s; }
.loader-text span:nth-child(5) { animation-delay: 0.25s; }
.loader-text span:nth-child(6) { animation-delay: 0.3s; }
.loader-text span:nth-child(7) { animation-delay: 0.35s; }
.loader-space { width: 0.5em; }
.loader-text span:nth-child(9) { animation-delay: 0.5s; }
.loader-text span:nth-child(10) { animation-delay: 0.55s; }
.loader-text span:nth-child(11) { animation-delay: 0.6s; }
.loader-text span:nth-child(12) { animation-delay: 0.65s; }
.loader-text span:nth-child(13) { animation-delay: 0.7s; }
.loader-text span:nth-child(14) { animation-delay: 0.75s; }

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

.loader-bar {
    width: 200px;
    height: 2px;
    background: var(--border);
    margin: 30px auto 0;
    border-radius: 2px;
    overflow: hidden;
}

.loader-bar-fill {
    height: 100%;
    width: 0;
    background: var(--cosmic-gradient);
    border-radius: 2px;
    animation: loaderBar 1.8s var(--ease-in-out) 0.3s forwards;
}

@keyframes loaderBar {
    to { width: 100%; }
}

/* ---- NAVIGATION ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease-out);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

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

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: opacity 0.3s;
}

.nav-logo:hover {
    opacity: 0.7;
}

.nav-logo-dot {
    background: var(--cosmic-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s var(--ease-out);
}

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

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

/* Language Switch */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 24px;
}

.lang-btn {
    background: none;
    border: 1px solid transparent;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}

.lang-btn:hover {
    color: var(--text-primary);
}

.lang-btn.active {
    color: var(--text-primary);
    border-color: var(--accent);
    background: rgba(124, 58, 237, 0.12);
}

.lang-sep {
    color: var(--text-muted);
    font-size: 0.65rem;
    opacity: 0.4;
    user-select: none;
}

.lang-switch-mobile {
    margin-top: 24px;
}

.lang-switch-mobile .lang-btn {
    font-size: 0.85rem;
    padding: 6px 14px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--text-primary);
    transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color 0.3s, transform 0.3s;
    transform: translateY(20px);
    opacity: 0;
}

.mobile-menu.active .mobile-link {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.3s; }

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

/* ---- HERO ---- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

#particles-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 50%, rgba(124, 58, 237, 0.1) 0%, transparent 45%),
        radial-gradient(ellipse at 85% 25%, rgba(236, 72, 153, 0.06) 0%, transparent 40%),
        radial-gradient(ellipse at 60% 80%, rgba(6, 182, 212, 0.04) 0%, transparent 35%),
        radial-gradient(ellipse at 50% 100%, rgba(5, 5, 5, 1) 0%, transparent 25%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 24px;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    font-weight: 300;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    margin-bottom: 24px;
}

.title-line {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 12vw, 9rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #e0d0ff 30%, #f9a8d4 50%, #c4b5fd 70%, #ffffff 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerTitle 6s ease-in-out infinite;
}

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

.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 300;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.4s var(--ease-out);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3), 0 0 15px rgba(236, 72, 153, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4), 0 0 25px rgba(236, 72, 153, 0.25);
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

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

.scroll-indicator span {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
}

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

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
    50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
    50.1% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 1; }
}

/* ---- SECTION HEADERS ---- */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 16px;
    padding: 6px 16px;
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 50px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.5) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 16px auto 0;
    line-height: 1.7;
}

/* ---- ABOUT ---- */
.about {
    background: var(--bg-secondary);
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    inset: -50px;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(124, 58, 237, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 70%, rgba(168, 85, 247, 0.03) 0%, transparent 50%);
    z-index: 0;
    will-change: transform;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.image-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.image-glow {
    position: absolute;
    inset: -2px;
    background: var(--accent-gradient);
    border-radius: 18px;
    opacity: 0.3;
    filter: blur(20px);
    z-index: 0;
}

.about-photo {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-placeholder {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, #1a1a2e 100%);
    border-radius: 16px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.placeholder-icon {
    opacity: 0.3;
}

.about-quote {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 300;
    font-style: italic;
    color: var(--accent-light);
    margin-bottom: 24px;
    line-height: 1.6;
    padding-left: 20px;
    border-left: 2px solid var(--accent);
}

.about-bio {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-percent {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 6px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* ---- UNIVERS ---- */
.univers {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.univers-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.univers-video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: 177.78vh; /* 16:9 ratio */
    height: 56.25vw; /* 16:9 ratio */
    transform: translate(-50%, -50%);
}

.univers-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 15, 0.75) 0%,
        rgba(10, 10, 15, 0.45) 30%,
        rgba(10, 10, 15, 0.45) 70%,
        rgba(10, 10, 15, 0.75) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.univers .container {
    position: relative;
    z-index: 2;
}

.univers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.univers-card {
    position: relative;
    padding: 48px 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s var(--ease-out);
}

.univers-card:hover {
    border-color: rgba(124, 58, 237, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.univers-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.06) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

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

.univers-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent-light);
    transition: all 0.4s var(--ease-out);
}

.univers-card:hover .univers-icon {
    background: rgba(124, 58, 237, 0.15);
    border-color: rgba(124, 58, 237, 0.3);
    transform: scale(1.05);
}

.univers-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.univers-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-light);
    padding: 4px 12px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 50px;
    margin-bottom: 20px;
}

.univers-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ---- VIDEO ---- */
.video-section {
    background: var(--bg-secondary);
    overflow: hidden;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.video-player {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border);
    transition: all 0.5s var(--ease-out);
}

.video-player:hover {
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 20px 80px rgba(124, 58, 237, 0.15), 0 0 0 1px rgba(124, 58, 237, 0.1);
    transform: scale(1.01);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out), filter 0.4s;
}

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

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: rgba(5, 5, 5, 0.3);
    transition: background 0.4s;
}

.video-player:hover .video-overlay {
    background: rgba(5, 5, 5, 0.5);
}

.video-play-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.4s var(--ease-out), filter 0.3s;
    filter: drop-shadow(0 4px 20px rgba(124, 58, 237, 0.4));
}

.video-player:hover .video-play-btn {
    transform: scale(1.15);
    filter: drop-shadow(0 8px 30px rgba(124, 58, 237, 0.6));
}

.video-play-text {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.4s var(--ease-out);
}

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

.video-glow {
    position: absolute;
    bottom: -40px;
    left: 10%;
    right: 10%;
    height: 80px;
    background: radial-gradient(ellipse, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    filter: blur(20px);
    pointer-events: none;
    z-index: -1;
}

.video-player.playing .video-overlay,
.video-player.playing .video-thumbnail {
    display: none;
}

.video-player.playing .video-glow {
    display: none;
}

.video-player iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ---- DISCOGRAPHY ---- */
.discography {
    background: var(--bg-primary);
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.album-card {
    display: block;
    text-decoration: none;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all 0.5s var(--ease-out);
    will-change: transform;
}

.album-card:hover {
    transform: translateY(-8px);
    border-color: rgba(124, 58, 237, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px var(--accent-glow);
}

.album-cover {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-tertiary);
}

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

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

.album-cover-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
    z-index: 0;
}

.album-cover-fallback span {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.album-cover img {
    position: relative;
    z-index: 1;
}

.album-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(5, 5, 5, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

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

.play-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px var(--accent-glow);
    transition: transform 0.3s var(--ease-out);
}

.play-icon svg {
    width: 20px;
    height: 20px;
    margin-left: 3px;
}

.album-card:hover .play-icon {
    transform: scale(1.1);
}

.album-listen {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-primary);
}

.album-info {
    padding: 20px;
}

.album-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.album-type {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* ---- CONTACT ---- */
.contact {
    background: var(--bg-secondary);
}

.contact-content {
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    transition: all 0.4s var(--ease-out);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: var(--text-secondary);
    transition: fill 0.3s;
}

.social-link:hover {
    border-color: var(--accent);
    background: rgba(124, 58, 237, 0.08);
    color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.15);
}

.social-link:hover svg {
    fill: var(--accent-light);
}

/* ---- Contact Form ---- */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

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

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

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    text-align: left;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: all 0.3s var(--ease-out);
    outline: none;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: rgba(124, 58, 237, 0.06);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.btn-submit {
    align-self: center;
    margin-top: 8px;
    cursor: pointer;
}

.form-feedback {
    font-size: 0.9rem;
    padding: 0;
    border-radius: 10px;
    transition: all 0.4s var(--ease-out);
}

.form-feedback.success {
    color: #34d399;
    background: rgba(52, 211, 153, 0.08);
    padding: 14px 20px;
    border: 1px solid rgba(52, 211, 153, 0.2);
}

.form-feedback.error {
    color: #f87171;
    background: rgba(248, 113, 113, 0.08);
    padding: 14px 20px;
    border: 1px solid rgba(248, 113, 113, 0.2);
}

.partner-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.partner-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* ---- FOOTER ---- */
.footer {
    padding: 32px 0;
    border-top: 1px solid var(--border);
    background: var(--bg-primary);
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

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

.footer-top {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s var(--ease-out);
}

.footer-top:hover {
    border-color: var(--accent);
    color: var(--accent-light);
    transform: translateY(-3px);
}

.footer-credit {
    text-align: center;
    margin-top: 16px;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.05em;
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-credit a:hover {
    color: var(--accent-light);
}

/* ---- REVEAL ANIMATIONS ---- */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 0.8s var(--ease-out);
    transition-delay: var(--delay, 0s);
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-60px);
}

.reveal-right {
    transform: translateX(60px);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translate(0, 0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .image-frame {
        max-width: 400px;
        margin: 0 auto;
        aspect-ratio: 1;
    }
}

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .btn-submit {
        align-self: center;
    }

    .nav-links {
        display: none;
    }

    .lang-switch:not(.lang-switch-mobile) {
        margin-left: auto;
        margin-right: 12px;
    }

    .nav-toggle {
        display: flex;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .univers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .univers-card {
        padding: 32px 24px;
    }

    .video-player {
        border-radius: 12px;
    }

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

    .about-stats {
        justify-content: center;
    }

    .social-links {
        gap: 12px;
    }

    .social-link span {
        display: none;
    }

    .social-link {
        padding: 14px;
        border-radius: 50%;
    }

    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 240px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .albums-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }

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

    .stat-divider {
        width: 40px;
        height: 1px;
    }
}

/* ---- SELECTION ---- */
::selection {
    background: rgba(124, 58, 237, 0.3);
    color: white;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar {
    width: 6px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}
