/* Celestial Drift — production CSS bundle. Generated by scripts/build-css.py */


/* ===== reset.css ===== */

/* ===========================
   RESET & BASE
   Resetare stiluri browser și configurări de bază
   =========================== */

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

html, body {
    width: 100%;
    height: 100%;
    background: #000000;
    color: #e6e6e6;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    position: relative;
}

main {
    position: relative;
    z-index: 1;
}

body.video-background-active main {
    background: radial-gradient(circle at top, rgba(120, 0, 255, 0.08), rgba(0, 0, 0, 0.62) 60%), rgba(0, 0, 0, 0.62);
}

/* Mod video: doar secțiunea „Ascultă album” (#player) rămâne vizibilă */
body.video-background-active main > *:not(#player) {
    display: none !important;
}

body.video-background-active .site-footer {
    display: none;
}

body.video-background-active .scroll-progress {
    opacity: 0;
    pointer-events: none;
}

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

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: #4b0082;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #7a00ff;
}



/* ===== variables.css ===== */

/* ===========================
   VARIABILE DE CULOARE & FONTS
   Definirea variabilelor globale
   =========================== */

:root {
    /* Culori fundal */
    --bg-black: #000000;
    --bg-deep: #050509;
    
    /* Culori gold */
    --gold: #d8c28f;
    --gold-soft: #c9b07a;
    --gold-muted: #a48b5a;
    
    /* Culori violet */
    --violet: #7a00ff;
    --violet-soft: #5a00c0;
    --violet-glow: rgba(120,0,255,0.35);
    --violet-glow-soft: rgba(120,0,255,0.18);
    
    /* Culori text */
    --text-main: #e6e6e6;
    --text-soft: #bfbfbf;
    --text-muted: #888888;
    
    /* Fonturi locale (self-hosted) */
    --font-heading: 'Cinzel', 'Georgia', 'Times New Roman', serif;
    --font-body: 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-display: var(--font-heading);
    --text-primary: var(--text-main);
    --text-secondary: var(--text-soft);
}



/* ===== base.css ===== */

/* ===========================
   BASE STYLES
   Stiluri de bază pentru elemente HTML
   =========================== */

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--gold);
}

p {
    font-family: var(--font-body);
    line-height: 1.6;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    z-index: 10000;
    padding: 10px 16px;
    background: var(--gold);
    color: #000;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 12px;
    outline: 2px solid var(--violet);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero-cover-art {
        transform: none !important;
    }

    .scroll-progress {
        transition: none !important;
    }
}

a {
    color: var(--text-soft);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold);
}

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



/* ===== layout.css ===== */

/* ===========================
   LAYOUT GLOBAL
   Structuri de layout generale
   =========================== */

.section {
    width: 100%;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.section-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Glow violet subtil pe fundalul secțiunilor */
.section::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: calc(100% + 80px);
    background: radial-gradient(circle, var(--violet-glow-soft) 0%, rgba(0,0,0,0) 70%);
    z-index: 0;
    opacity: 0.9;
}

/* Titluri secțiuni */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h1,
.section-title h2 {
    font-family: var(--font-heading);
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 26px;
    margin-bottom: 10px;
}

.section-title p {
    font-size: 16px;
    color: var(--text-soft);
}



/* ===== components/buttons.css ===== */

/* ===========================
   BUTTONS
   Stiluri pentru toate butoanele
   =========================== */

/* Buton Primary (gradient violet-gold) */
.btn-primary {
    background: linear-gradient(90deg, var(--violet), var(--gold));
    border: none;
    color: #000;
    padding: 12px 26px;
    border-radius: 30px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: var(--font-heading);
    box-shadow: 0 0 20px rgba(120,0,255,0.5);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(120,0,255,0.8);
    filter: brightness(1.05);
}

/* Buton Outline (transparent cu border) */
.btn-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 11px 24px;
    border-radius: 30px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: var(--font-heading);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-outline:hover {
    background: rgba(216,194,143,0.1);
    transform: translateY(-2px);
}

a.btn-outline,
a.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-booklet {
    border-color: rgba(216, 194, 143, 0.65);
    box-shadow: 0 0 18px rgba(216, 194, 143, 0.15);
}

.btn-booklet:hover {
    border-color: var(--gold);
    box-shadow: 0 0 26px rgba(216, 194, 143, 0.35);
}

/* Buton Player (circular pentru controale player) */
.btn-player {
    background: none;
    border: 1px solid var(--gold);
    color: var(--gold);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-player:hover {
    background: rgba(216,194,143,0.12);
    transform: translateY(-1px);
    box-shadow: 0 0 10px rgba(216,194,143,0.4);
}

/* Modificator pentru buton player mare */
.btn-player.player-btn-main {
    width: 48px;
    height: 48px;
    font-size: 16px;
    border-width: 2px;
}

/* State disabled */
button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}



/* ===== components/cards.css ===== */

/* ===========================
   CARDS
   Stiluri pentru toate tipurile de card-uri
   =========================== */

.card {
    border-radius: 12px;
    padding: 24px;
    background: radial-gradient(circle at top, rgba(120,0,255,0.25), rgba(0,0,0,0.95));
    border: 1px solid rgba(216,194,143,0.15);
    box-shadow: 0 0 30px rgba(120,0,255,0.35);
}

.card-title {
    font-family: var(--font-heading);
    color: var(--gold-soft);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 16px;
}

.card-content p {
    font-size: 14px;
    color: var(--text-soft);
    margin-bottom: 8px;
}

/* Card pentru album */
.album-card {
    border-radius: 12px;
    padding: 24px;
    background: radial-gradient(circle at top, rgba(120,0,255,0.25), rgba(0,0,0,0.95));
    border: 1px solid rgba(216,194,143,0.15);
    box-shadow: 0 0 30px rgba(120,0,255,0.35);
    max-height: 645px;
    overflow-y: auto;
}

/* Custom scrollbar pentru album card */
.album-card::-webkit-scrollbar {
    width: 6px;
}

.album-card::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.3);
}

.album-card::-webkit-scrollbar-thumb {
    background: var(--gold-muted);
    border-radius: 3px;
}

.album-card::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

.album-card h4 {
    font-family: var(--font-heading);
    color: var(--gold-soft);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 16px;
}

/* Album details */
.album-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 6px;
}

.album-detail {
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(216,194,143,0.14);
}

.album-detail-label {
    display: block;
    font-family: var(--font-heading);
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px;
    margin-bottom: 6px;
}

.album-detail-value {
    display: block;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.6;
}

/* Album concept */
.album-concept {
    margin-top: 16px;
    padding: 14px 14px;
    border-radius: 12px;
    background: radial-gradient(circle at top, rgba(120,0,255,0.18), rgba(0,0,0,0.35));
    border: 1px solid rgba(120,0,255,0.22);
}

.album-concept-title {
    font-family: var(--font-heading);
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    margin-bottom: 8px;
}

.album-concept-text {
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.7;
}

/* Album story */
.album-story {
    margin-top: 16px;
    padding: 14px 14px;
    border-radius: 12px;
    border: 1px solid rgba(216,194,143,0.16);
    background: rgba(0,0,0,0.18);
}

.album-story-title {
    font-family: var(--font-heading);
    color: var(--gold-soft);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    margin-bottom: 10px;
}

.album-story-text {
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.8;
}

/* About card */
.about-card {
    border-radius: 12px;
    padding: 22px;
    background: radial-gradient(circle at top, rgba(120,0,255,0.25), rgba(0,0,0,0.95));
    border: 1px solid rgba(216,194,143,0.18);
    box-shadow: 0 0 30px rgba(120,0,255,0.35);
}

.about-card h4 {
    font-family: var(--font-heading);
    color: var(--gold-soft);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 15px;
}

.about-card p {
    font-size: 14px;
    color: var(--text-soft);
    margin-bottom: 8px;
}

/* Tracklist side cards */
.tracklist-side-card {
    border-radius: 12px;
    padding: 20px;
    background: radial-gradient(circle at top, rgba(120,0,255,0.2), rgba(0,0,0,0.95));
    border: 1px solid rgba(216,194,143,0.15);
}

.tracklist-side-card h4 {
    font-family: var(--font-heading);
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 15px;
}

.tracklist-side-card p {
    font-size: 14px;
    color: var(--text-soft);
    margin-bottom: 6px;
}

/* Contact card */
.contact-card {
    max-width: 700px;
    margin: 0 auto;
    border-radius: 16px;
    padding: 30px 24px;
    background: radial-gradient(circle at top, rgba(120,0,255,0.25), rgba(0,0,0,0.95));
    border: 1px solid rgba(216,194,143,0.2);
    box-shadow: 0 0 35px rgba(120,0,255,0.4);
    text-align: center;
}

.contact-card p {
    font-size: 15px;
    color: var(--text-soft);
    margin-bottom: 20px;
}

/* Artist card in album section */
.artist-card {
    margin-top: 0;
    scroll-margin-top: 100px;
}

.artist-info {
    margin-bottom: 16px;
}

.artist-name {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.artist-bio {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.7;
}

.artist-vision {
    margin-top: 16px;
    padding: 14px;
    border-radius: 12px;
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(216,194,143,0.14);
}

.artist-vision-title {
    font-family: var(--font-heading);
    color: var(--gold-soft);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    margin-bottom: 10px;
}

.artist-vision-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.artist-vision-list li {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.8;
    padding-left: 16px;
    position: relative;
}

.artist-vision-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold-muted);
}

.artist-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.artist-tag {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(120,0,255,0.15);
    border: 1px solid rgba(120,0,255,0.3);
    color: var(--gold-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}



/* ===== components/navbar.css ===== */

/* ===========================
   NAVBAR
   =========================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    height: 70px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.35));
    backdrop-filter: blur(10px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    overflow: visible;
}

.navbar-inner {
    position: relative;
    width: min(94%, 1200px);
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-width: 0;
    box-sizing: border-box;
}

.nav-mark {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    max-width: min(46vw, 13.5rem);
    min-width: 0;
    transition: opacity 0.25s ease;
}

.nav-mark:hover {
    opacity: 0.88;
}

.nav-mark__dot {
    flex-shrink: 0;
    width: 7px;
    height: 7px;
    margin-top: 2px;
    align-self: flex-start;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--violet), var(--gold));
    box-shadow: 0 0 10px rgba(120, 0, 255, 0.45);
}

.nav-mark__copy {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
    line-height: 1.15;
}

.nav-mark__artist {
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-soft);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-mark__album {
    font-family: var(--font-heading);
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.navbar-tools {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 4px;
}

.lang-switcher--header {
    flex-shrink: 0;
}

.nav-links {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 8px 12px;
}

.nav-links__group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 4px 12px;
    min-width: 0;
}

.nav-links__group--cta {
    padding-left: 10px;
    border-left: 1px solid rgba(216, 194, 143, 0.18);
}

.nav-links a {
    color: var(--text-soft);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    padding: 4px 2px 6px;
    white-space: nowrap;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0%;
    height: 1px;
    background: linear-gradient(90deg, var(--violet), var(--gold));
    transition: width 0.3s ease;
}

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

.nav-links a:hover {
    color: #ffffff;
}

.nav-video-mode-group {
    display: none;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    max-width: 100%;
}

.nav-video-mode-group:not([hidden]) {
    display: inline-flex;
}

.nav-video-mode-label {
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    user-select: none;
}

.nav-video-mode-off {
    background: transparent;
    border: 1px solid var(--gold-muted);
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.nav-video-mode-off:hover {
    background: rgba(216, 194, 143, 0.15);
    border-color: var(--gold);
    color: #ffffff;
}

body.video-background-active .nav-home-link {
    display: none;
}

@media (min-width: 1025px) {
    body.video-background-active .nav-links__group--main > a {
        display: none;
    }

    body.video-background-active .nav-links__group--cta {
        display: none;
    }
}

body:not(.video-background-active) .nav-video-mode-group {
    display: none !important;
}

.nav-link-cta {
    border: 1px solid var(--gold-muted);
    border-radius: 999px;
    padding: 5px 11px 6px !important;
    color: var(--gold) !important;
    font-size: 10px !important;
    box-shadow: 0 0 12px rgba(216, 194, 143, 0.1);
    transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    background: rgba(216, 194, 143, 0.12);
    box-shadow: 0 0 18px rgba(216, 194, 143, 0.24);
    color: #ffffff !important;
}

/* Language switcher (shared + footer variant in footer.css) */
.lang-switcher {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    padding: 3px;
    border-radius: 999px;
    border: 1px solid rgba(216, 194, 143, 0.22);
    background: rgba(0, 0, 0, 0.35);
    max-width: 100%;
}

.lang-switcher__btn {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 5px 9px;
    border-radius: 999px;
    color: var(--text-soft) !important;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.lang-switcher__btn::after {
    display: none !important;
}

.lang-switcher__btn:hover,
.lang-switcher__btn.is-active {
    background: rgba(216, 194, 143, 0.18);
    color: var(--gold) !important;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--violet), var(--gold));
    z-index: 101;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px var(--violet-glow);
}

.nav-burger {
    display: none;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 8px;
    margin: -8px -4px -8px 0;
    background: none;
    border: none;
    color: var(--gold);
}

.nav-burger__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .nav-links a {
        font-size: 10px;
        letter-spacing: 0.05em;
    }

    .nav-links__group {
        gap: 4px 8px;
    }

    .nav-link-cta {
        padding: 4px 9px 5px !important;
    }

    .nav-burger {
        display: inline-flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        background: rgba(0, 0, 0, 0.97);
        flex: none;
        flex-direction: column;
        align-items: stretch;
        padding: 16px 18px 22px;
        gap: 14px;
        border-bottom: 1px solid rgba(216, 194, 143, 0.2);
        display: none;
        box-sizing: border-box;
        overflow-x: hidden;
        overflow-y: auto;
        max-height: calc(100vh - 70px);
        z-index: 199;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links__group {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 4px;
    }

    .nav-links__group--cta {
        padding-left: 0;
        padding-top: 10px;
        border-left: none;
        border-top: 1px solid rgba(216, 194, 143, 0.12);
    }

    .nav-links a,
    .nav-links .nav-video-mode-off {
        font-size: 13px;
        padding: 10px 4px;
        white-space: normal;
    }

    .nav-link-cta {
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }

    body.video-background-active .nav-links__group--main > a {
        display: block;
    }

    body.video-background-active .nav-links__group--cta {
        display: flex;
    }

    body.video-background-active .nav-home-link {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-mark {
        max-width: min(40vw, 9.5rem);
    }

    .nav-mark__artist {
        font-size: 8px;
        letter-spacing: 0.1em;
    }

    .nav-mark__album {
        font-size: 11px;
    }

    .navbar-tools {
        gap: 6px;
    }

    .lang-switcher--header .lang-switcher__btn {
        padding: 4px 7px;
        font-size: 9px;
    }
}



/* ===== components/hero.css ===== */

/* ===========================
   HERO SECTION
   Stiluri pentru secțiunea hero
   =========================== */

.hero {
    min-height: 100vh;
    padding-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    background: radial-gradient(circle at top, rgba(120,0,255,0.2), rgba(0,0,0,0.75) 55%), rgba(0,0,0,0.82);
}

/* Când video-ul e activ – puțin transparent, se vede ușor fundalul */
body.video-background-active .hero {
    background: radial-gradient(circle at top, rgba(120,0,255,0.25), rgba(0,0,0,0.72) 55%), rgba(0,0,0,0.78);
}

.hero-inner {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Coperta album — față / verso cu tipografie overlay */
.hero-cover-wrapper {
    position: relative;
    width: min(100%, 420px);
    max-width: 420px;
    margin: 0 auto;
    perspective: 1400px;
}

.hero-cover-trigger {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 12px;
}

.hero-cover-art {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    transform-style: preserve-3d;
    transition: transform 0.85s cubic-bezier(0.4, 0.15, 0.2, 1);
    border-radius: 12px;
}

.hero-cover-art.is-flipped {
    transform: rotateY(180deg);
}

.hero-cover-wrapper:hover .hero-cover-art {
    transform: translateY(-5px);
}

.hero-cover-wrapper:hover .hero-cover-art.is-flipped {
    transform: translateY(-5px) rotateY(180deg);
}

.hero-cover-face {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    overflow: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    box-shadow: 0 0 50px var(--violet-glow);
    transition: box-shadow 0.6s ease;
}

.hero-cover-face--back {
    transform: rotateY(180deg);
}

.hero-cover-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-cover-face picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-cover-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px 16px 14px;
    pointer-events: none;
    z-index: 1;
}

/* —— Față —— */
.hero-cover-overlay--front {
    justify-content: space-between;
}

.hero-cover-overlay--front::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.72) 22%, rgba(0, 0, 0, 0.25) 42%, transparent 58%),
        linear-gradient(to top, rgba(0, 0, 0, 0.62) 0%, transparent 18%);
    z-index: -1;
}

.hero-cover-front-top {
    position: relative;
    width: 100%;
    text-align: center;
    padding-top: 2px;
}

.hero-cover-eyebrow {
    position: relative;
    display: inline-block;
    font-size: 9px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(216, 194, 143, 0.92);
    text-align: center;
    padding: 6px 12px;
    margin-bottom: 14px;
    border: 1px solid rgba(216, 194, 143, 0.28);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}

.hero-cover-artist {
    font-family: var(--font-heading);
    font-size: clamp(12px, 3.2vw, 14px);
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(230, 230, 230, 0.94);
    margin-bottom: 8px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.95);
}

.hero-cover-album {
    font-family: var(--font-heading);
    font-size: clamp(20px, 5.5vw, 28px);
    letter-spacing: 0.14em;
    line-height: 1.15;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
    text-shadow:
        0 0 24px rgba(120, 0, 255, 0.35),
        0 2px 16px rgba(0, 0, 0, 0.95);
}

.hero-cover-meta {
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-soft);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9);
}

.hero-cover-overlay--front .hero-cover-flip-hint {
    margin-top: auto;
}

/* —— Verso —— */
.hero-cover-overlay--back {
    padding: 14px 13px 12px;
    background:
        linear-gradient(165deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.68) 45%, rgba(0, 0, 0, 0.86) 100%);
    backdrop-filter: blur(2px);
}

.hero-cover-back-head {
    text-align: center;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(216, 194, 143, 0.22);
}

.hero-cover-back-album {
    font-family: var(--font-heading);
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    line-height: 1.2;
    margin-bottom: 3px;
}

.hero-cover-back-artist {
    font-family: var(--font-heading);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(230, 230, 230, 0.9);
    margin-bottom: 4px;
}

.hero-cover-back-catalog {
    font-size: 8px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold-muted);
}

.hero-cover-back-tracklist {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding: 8px 0 6px;
    overflow: hidden;
}

.hero-cover-back-tracklist-title {
    font-size: 8px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-muted);
    margin-bottom: 6px;
    text-align: center;
}

.hero-cover-tracks {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px 10px;
    overflow: hidden;
}

.hero-cover-track {
    display: grid;
    grid-template-columns: 16px minmax(0, 1fr) auto;
    align-items: baseline;
    gap: 0 4px;
    font-size: 7.5px;
    line-height: 1.35;
    color: rgba(230, 230, 230, 0.92);
}

.hero-cover-track__num {
    font-variant-numeric: tabular-nums;
    color: var(--gold-muted);
    letter-spacing: 0.04em;
}

.hero-cover-track__title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.hero-cover-track__time {
    font-variant-numeric: tabular-nums;
    color: var(--text-muted);
    font-size: 7px;
}

.hero-cover-back-foot {
    text-align: center;
    padding-top: 6px;
    border-top: 1px solid rgba(216, 194, 143, 0.16);
}

.hero-cover-back-stats {
    font-size: 8px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 4px;
}

.hero-cover-back-copy {
    font-size: 7px;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.hero-cover-barcode {
    width: min(72%, 180px);
    height: 22px;
    margin: 0 auto 5px;
    border-radius: 2px;
    background:
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.92) 0 1px,
            transparent 1px 3px,
            rgba(255, 255, 255, 0.92) 3px 4px,
            transparent 4px 7px
        ),
        linear-gradient(90deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
    opacity: 0.88;
}

.hero-cover-back-url {
    font-size: 7px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-muted);
}

/* Hint flip */
.hero-cover-flip-hint {
    position: relative;
    align-self: center;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(216, 194, 143, 0.75);
    padding-top: 4px;
}

.hero-cover-flip-hint .icon {
    opacity: 0.85;
}

.hero-cover-flip-hint--back {
    padding-top: 6px;
}

.hero-cover-wrapper::before {
    content: "";
    position: absolute;
    inset: -20px;
    border-radius: 16px;
    background: radial-gradient(circle, rgba(120, 0, 255, 0.25), transparent 70%);
    opacity: 0.7;
    z-index: -1;
    pointer-events: none;
}

.hero-cover-wrapper:hover .hero-cover-face,
.hero-cover-trigger:focus-visible .hero-cover-face {
    box-shadow: 0 0 70px rgba(120, 0, 255, 0.55);
}

.hero-cover-trigger:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

/* Cosmic animations for easter eggs */
@keyframes cosmic-pulse {
    0%, 100% { 
        transform: scale(1);
        text-shadow: 0 0 10px var(--gold);
    }
    50% { 
        transform: scale(1.05);
        text-shadow: 0 0 30px var(--violet), 0 0 50px var(--gold);
    }
}

@keyframes cosmic-rotation {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

/* Text hero */
.hero-text {
    color: var(--text-main);
}

.hero-tagline {
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-muted);
    margin-bottom: 12px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 40px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-soft);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Butoane hero */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 25px;
}

/* Info mic sub butoane */
.hero-meta {
    font-size: 13px;
    color: var(--text-muted);
}



/* ===== components/album.css ===== */

/* ===========================
   ALBUM SECTION
   Layout 2 coloane: Text + Detalii
   =========================== */

.album-section {
    background: radial-gradient(circle at top, rgba(120,0,255,0.18), transparent 60%), #000000;
}

.album-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}

/* Coloana stângă cu text + artist card */
.album-left-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .album-grid {
        grid-template-columns: 1fr;
    }
}

.album-text h3 {
    font-family: var(--font-heading);
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 20px;
}

.album-text p {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.8;
    margin-bottom: 14px;
}

.album-meta {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 10px;
}

.album-intended {
    margin: 6px 0 4px;
    padding: 18px 20px;
    border: 1px solid rgba(216, 194, 143, 0.16);
    border-radius: 12px;
    background: rgba(120, 0, 255, 0.06);
}

.album-intended__title {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.album-intended__list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    padding: 0;
    margin: 0;
}

.album-intended__list li {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.5;
    padding-left: 14px;
    position: relative;
}

.album-intended__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--violet), var(--gold));
    box-shadow: 0 0 6px rgba(120, 0, 255, 0.35);
}

.booklet-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 36px;
    padding: 28px 32px;
    border: 1px solid rgba(216, 194, 143, 0.22);
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(120, 0, 255, 0.12), rgba(0, 0, 0, 0.55)),
        radial-gradient(circle at 100% 0%, rgba(216, 194, 143, 0.08), transparent 55%);
    box-shadow: 0 0 40px rgba(120, 0, 255, 0.12);
}

.booklet-cta__eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-muted);
    margin-bottom: 8px;
}

.booklet-cta__title {
    font-family: var(--font-heading);
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 10px;
}

.booklet-cta__text {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.7;
    max-width: 42rem;
}

.booklet-cta__button {
    flex-shrink: 0;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .booklet-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px 20px;
    }

    .booklet-cta__button {
        width: 100%;
        text-align: center;
    }
}



/* ===== components/universe-cta.css ===== */

/* ===========================
   UNIVERSE CTA (homepage band)
   =========================== */

.universe-cta-section {
    background: radial-gradient(circle at top, rgba(120, 0, 255, 0.14), #000 58%);
}

.universe-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 26px;
    border-radius: 16px;
    border: 1px solid rgba(216, 194, 143, 0.2);
    background: radial-gradient(circle at top left, rgba(120, 0, 255, 0.22), rgba(0, 0, 0, 0.92));
    box-shadow: 0 0 40px rgba(120, 0, 255, 0.22);
}

.universe-cta__eyebrow {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-muted);
    margin-bottom: 8px;
}

.universe-cta__title {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.5vw, 1.45rem);
    color: var(--gold);
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}

.universe-cta__text {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-soft);
    max-width: 52ch;
    margin: 0;
}

.universe-cta__button {
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .universe-cta {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .universe-cta__text {
        max-width: none;
    }

    .universe-cta__button {
        width: 100%;
        text-align: center;
    }
}



/* ===== components/tracklist.css ===== */

/* ===========================
   TRACKLIST SECTION
   Stiluri pentru lista de piese
   =========================== */

.tracklist-section {
    background: #000000;
}

.tracklist-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
    gap: 40px;
}

/* Lista de piese */
.tracklist {
    border-radius: 12px;
    padding: 16px 0;
    background: radial-gradient(circle at top, rgba(120,0,255,0.18), rgba(0,0,0,0.95));
    border: 1px solid rgba(216,194,143,0.12);
    box-shadow: 0 0 25px rgba(120,0,255,0.25);
    max-height: 600px;
    overflow-y: auto;
}

/* Custom scrollbar for tracklist */
.tracklist::-webkit-scrollbar {
    width: 6px;
}

.tracklist::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.3);
}

.tracklist::-webkit-scrollbar-thumb {
    background: var(--gold-muted);
    border-radius: 3px;
}

.tracklist::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

.track {
    padding: 14px 24px;
    position: relative;
    transition: background 0.2s ease, transform 0.2s ease;
    cursor: pointer;
    scroll-margin-top: 90px; /* Previne scroll automat prea agresiv */
}

.track:hover {
    background: rgba(0,0,0,0.95);
    transform: translateY(-1px);
}

.track:hover .track-title {
    color: var(--gold-soft);
}

.track:hover .track-description {
    color: var(--text-soft);
}

.track.active {
    background: rgba(0,0,0,0.95);
    border-left: 3px solid var(--gold);
}

.track::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background: radial-gradient(circle, rgba(120,0,255,0.4), rgba(0,0,0,0));
    opacity: 0.7;
}

.track:last-child::after {
    display: none;
}

.track-title-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 20px;
}

.track-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.track-share-btn {
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-muted);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    opacity: 0;
    transition: all 0.2s ease;
}

.track:hover .track-share-btn {
    opacity: 1;
}

.track-share-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: scale(1.1);
}

.track-title {
    font-family: var(--font-heading);
    color: var(--gold-soft);
    letter-spacing: 1px;
    font-size: 15px;
}

.track-duration {
    color: var(--gold-muted);
    font-size: 13px;
}

.track-description {
    margin-top: 6px;
    font-size: 13px;
    color: var(--text-soft);
}

/* Icon play mic */
.track-play-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid var(--gold-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-muted);
    transition: all 0.3s ease;
}

.track:hover .track-play-icon {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 10px var(--violet-glow);
}

/* Info album în dreapta tracklistului */
.tracklist-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}



/* ===== components/player.css ===== */

/* ===========================
   PLAYER + TRACKLIST COMBINED SECTION
   Layout 2 coloane side-by-side
   =========================== */

.player-tracklist-section {
    position: relative;
    z-index: 2;
    background: radial-gradient(circle at center, rgba(120,0,255,0.18), rgba(0,0,0,0.68) 60%), rgba(0,0,0,0.72);
}

body.video-background-active .player-tracklist-section {
    background: radial-gradient(circle at center, rgba(120,0,255,0.12), rgba(0,0,0,0.45) 60%), rgba(0,0,0,0.45);
    min-height: calc(100vh - 70px);
    padding-top: 24px;
    padding-bottom: 40px;
}

.player-tracklist-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}

/* Player column */
.player-column {
    position: sticky;
    top: 90px;
}

/* Tracklist column */
.tracklist-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tracklist-info {
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .player-tracklist-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .player-column {
        position: relative;
        top: 0;
    }
}

/* ===========================
   PLAYER COSMIC AVANSAT
   Stiluri pentru player audio
   =========================== */

.player-section {
    background: radial-gradient(circle at center, rgba(120,0,255,0.18), #000000 60%);
}

.player-card {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    padding: 30px 24px;
    background: radial-gradient(circle at top, rgba(120,0,255,0.3), rgba(0,0,0,0.95));
    border: 1px solid rgba(216,194,143,0.2);
    box-shadow: 0 0 40px rgba(120,0,255,0.45);
}

.player-card.fullscreen-mode {
    position: relative;
}

body.video-background-active .player-card:not(.fullscreen-mode) {
    background: transparent;
    box-shadow: 0 0 40px rgba(120, 0, 255, 0.45);
}

body.video-background-active .player-card.fullscreen-mode {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(216, 194, 143, 0.15);
    box-shadow: none;
}

.player-card.fullscreen-mode > :not(.video-bg):not(.animation-selector):not(.video-volume-control):not(.player-tv-badge) {
    position: relative;
    z-index: 1;
}

/* Info piesă curentă */
.player-current {
    text-align: center;
    margin-bottom: 20px;
}

.player-current-label {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-muted);
    margin-bottom: 6px;
}

.player-current-title {
    font-family: var(--font-heading);
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.player-current-sub {
    font-size: 13px;
    color: var(--text-soft);
}

/* Badge TV Mode — vizibil când fundalul ambient e activ */
.player-tv-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 11px;
    border-radius: 999px;
    border: 1px solid rgba(216, 194, 143, 0.45);
    background: rgba(0, 0, 0, 0.78);
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(120, 0, 255, 0.35);
    pointer-events: none;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.player-tv-badge:not([hidden]) {
    opacity: 1;
    transform: translateY(0);
    animation: tv-badge-glow 2.8s ease-in-out infinite;
}

.player-tv-badge__icon {
    font-size: 11px;
    line-height: 1;
}

.player-tv-badge__text {
    line-height: 1;
}

.player-card.fullscreen-mode .player-tv-badge {
    top: 22px;
    right: 22px;
    z-index: 12;
    padding: 6px 12px;
    font-size: 11px;
}

@keyframes tv-badge-glow {
    0%, 100% {
        box-shadow: 0 0 16px rgba(120, 0, 255, 0.28);
    }
    50% {
        box-shadow: 0 0 24px rgba(216, 194, 143, 0.35);
    }
}

/* Bara de progres */
.player-progress-wrapper {
    margin: 20px 0;
}

.player-time-row {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.player-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.player-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--violet), var(--gold));
    box-shadow: 0 0 10px rgba(120,0,255,0.8);
    transition: width 0.1s linear;
}

/* Controale player */
.player-controls-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 10px;
}

/* Volum & extra */
.player-extra-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 18px;
    font-size: 12px;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 14px;
}

.player-cta {
    text-align: center;
    margin-top: 18px;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.6;
}

.player-final-message {
    display: none;
    text-align: center;
    margin-top: 14px;
    color: var(--gold);
    font-family: var(--font-heading);
    letter-spacing: 1px;
    font-size: 16px;
}

.player-volume-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    order: 1;
}

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

.player-video-volume {
    display: none;
    align-items: center;
    gap: 8px;
    color: var(--text-soft);
}

body.video-background-active .player-video-volume:not([hidden]) {
    display: flex;
}

.player-video-volume-value,
.player-volume-value {
    min-width: 34px;
    font-size: 11px;
    color: var(--gold-muted);
}

.player-volume-bar {
    width: 100px;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
}

.player-volume-level {
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, var(--violet), var(--gold));
    pointer-events: none;
}

/* Shuffle & Repeat buttons */
.player-controls-extra {
    display: flex;
    gap: 8px;
    order: 2;
}

.player-btn-small {
    background: transparent;
    border: 1px solid var(--gold-muted);
    color: var(--text-muted);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

.player-btn-small:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: scale(1.1);
}

/* Track change notification — mini player */
.track-notification {
    position: fixed;
    bottom: 100px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: min(calc(100vw - 40px), 320px);
    background: radial-gradient(circle, var(--violet-glow), rgba(0, 0, 0, 0.95));
    border: 1px solid var(--gold);
    border-radius: 12px;
    padding: 10px 14px 10px 10px;
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
    z-index: 9999;
    pointer-events: none;
    box-shadow: 0 0 30px var(--violet-glow);
    box-sizing: border-box;
}

.track-notification.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.track-notification__play {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--gold-muted);
    background: rgba(0, 0, 0, 0.45);
    color: var(--gold);
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.track-notification__play:hover {
    border-color: var(--gold);
    background: rgba(216, 194, 143, 0.14);
    transform: scale(1.06);
    box-shadow: 0 0 16px rgba(216, 194, 143, 0.25);
}

.track-notification__play.is-playing {
    border-color: var(--gold);
    box-shadow: 0 0 14px rgba(120, 0, 255, 0.35);
}

.track-notification__play-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.track-notification__play.is-playing .track-notification__play-icon {
    margin-left: 0;
}

.track-notification__play--static {
    pointer-events: none;
    cursor: default;
}

.track-notification__title-row {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
}

.track-notification__note-icon {
    display: inline-flex;
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    color: var(--gold-muted);
}

.track-notification--toast .track-notification__note-icon {
    display: none;
}

.player-volume-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.track-notification__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.track-notification__resume {
    font-size: 10px;
    letter-spacing: 0.12em;
    color: var(--gold-muted);
    text-transform: uppercase;
    line-height: 1.25;
}

.track-notification__title {
    flex: 1;
    min-width: 0;
    line-height: 1.35;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.track-notification--resume {
    max-width: min(calc(100vw - 40px), 360px);
}

.track-notification--resume .track-notification__title {
    white-space: normal;
    text-transform: none;
    font-size: 11px;
    letter-spacing: 0.04em;
}

.track-notification--toast {
    text-transform: none;
    letter-spacing: 0.04em;
}

.track-notification--toast .track-notification__title {
    white-space: normal;
    text-transform: none;
}

/* Pe pagina cu tracklist: stânga jos, ca să nu acopere lista din dreapta */
.track-notification--with-tracklist {
    left: 30px;
    right: auto;
}

@media (max-width: 640px) {
    .track-notification {
        right: 16px;
        left: 16px;
        bottom: 88px;
        max-width: none;
    }

    .track-notification--with-tracklist {
        left: 16px;
        right: 16px;
    }
}
.player-current.loading .player-current-title::after {
    content: "...";
    animation: dots 1.5s infinite;
}

@keyframes dots {
    0%, 20% { content: "."; }
    40% { content: ".."; }
    60%, 100% { content: "..."; }
}
.player-eq {
    min-width: 0;
    flex: 0 0 160px;
    display: flex;
    align-items: center;
    order: 1;
    transition: opacity 0.3s ease;
    margin-top: 0;
}

.player-mode {
    width: 100%;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(216,194,143,0.1);
}

.player-eq-bars {
    width: 100%;
    height: 18px;
    display: flex;
    align-items: flex-end;
    gap: 2px;
}

.player-eq-bar {
    flex: 1 1 0;
    height: 4px;
    min-height: 2px;
    background: linear-gradient(180deg, var(--violet), var(--gold));
    border-radius: 4px;
    opacity: 0.85;
    transform-origin: bottom;
    transition: height 0.1s ease;
}

/* Fullscreen mode - doar egalizator mare jos */
.player-card.fullscreen-mode .player-eq {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: flex-end;
    padding: 0 60px 40px 60px;
    pointer-events: none;
}

.player-card.fullscreen-mode .player-eq-bars {
    height: 100%;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Descriere în fullscreen */
.player-card.fullscreen-mode .player-mode {
    display: block;
    text-align: center;
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    transition: opacity 0.3s ease;
}

.player-card.fullscreen-mode .player-mode span {
    display: none;
}

.player-card.fullscreen-mode #playerTrackDescription {
    font-size: 16px !important;
    line-height: 1.9 !important;
    color: var(--text-soft) !important;
}

/* Tooltip-uri pentru butoane în fullscreen */
.player-card.fullscreen-mode .player-btn-small {
    position: relative;
}

.player-card.fullscreen-mode .player-btn-small::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, var(--violet-glow), rgba(0,0,0,0.95));
    color: var(--gold);
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 13px;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    white-space: normal;
    max-width: 200px;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    border: 1px solid var(--gold);
    box-shadow: 0 0 30px rgba(120,0,255,0.6);
    z-index: 1000;
}

/* Tooltip pentru ultimul buton (fullscreen) - aliniat la dreapta */
.player-card.fullscreen-mode #btnFullscreen::before {
    left: auto;
    right: 0;
    transform: translateX(0);
}

.player-card.fullscreen-mode #btnFullscreen::after {
    left: auto;
    right: 20px;
    transform: translateX(0);
}

/* Buton equalizer - vizibil DOAR în fullscreen */
#btnEqualizer {
    display: none;
}

.player-card.fullscreen-mode #btnEqualizer {
    display: inline-flex;
}

/* Buton descriere - vizibil DOAR în fullscreen */
#btnDescription {
    display: none;
}

.player-card.fullscreen-mode #btnDescription {
    display: inline-flex;
}

/* Buton animații - vizibil DOAR în fullscreen */
#btnAnimations {
    display: none;
}

.player-card.fullscreen-mode #btnAnimations {
    display: inline-flex;
}

/* Auto-hide UI în fullscreen după 5 secunde de inactivitate */
.player-card.fullscreen-mode.ui-hidden .player-current,
.player-card.fullscreen-mode.ui-hidden .player-progress-wrapper,
.player-card.fullscreen-mode.ui-hidden .player-controls-row,
.player-card.fullscreen-mode.ui-hidden .player-extra-row,
.player-card.fullscreen-mode.ui-hidden .player-mode,
.player-card.fullscreen-mode.ui-hidden .video-volume-control,
.player-card.fullscreen-mode.ui-hidden .animation-selector {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

/* Egalizatorul rămâne vizibil, dar la opacitate redusă */
.player-card.fullscreen-mode.ui-hidden .player-eq {
    opacity: 0.3;
    transition: opacity 0.5s ease;
}

/* Tranziții smooth pentru afișare */
.player-card.fullscreen-mode .player-current,
.player-card.fullscreen-mode .player-progress-wrapper,
.player-card.fullscreen-mode .player-controls-row,
.player-card.fullscreen-mode .player-extra-row,
.player-card.fullscreen-mode .player-mode,
.player-card.fullscreen-mode .player-eq,
.player-card.fullscreen-mode .video-volume-control,
.player-card.fullscreen-mode .animation-selector {
    transition: opacity 0.5s ease;
}

.player-card.fullscreen-mode .player-btn-small::after {
    content: "";
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--gold);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.player-card.fullscreen-mode .player-btn-small:hover::before,
.player-card.fullscreen-mode .player-btn-small:hover::after {
    opacity: 1;
}

/* Box volum – ascuns în fullscreen; rămâne doar selectorul TV Mode */
.player-card.fullscreen-mode .video-volume-control {
    display: none !important;
}



/* ===== components/about.css ===== */

/* ===========================
   ABOUT SECTION
   =========================== */

.about-section {
    background: #000000;
    min-height: calc(100vh - 70px);
    padding-top: 100px;
    padding-bottom: 100px;
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    gap: 48px;
    align-items: start;
}

.about-header {
    margin-bottom: 24px;
}

.about-eyebrow {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-muted);
    margin-bottom: 10px;
    line-height: 1.5;
}

.about-name {
    font-family: var(--font-heading);
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: clamp(1.35rem, 2.5vw, 1.65rem);
    line-height: 1.25;
    margin: 0;
}

.about-main .expandable-content {
    max-height: 280px;
}

.about-main .expandable-content::after {
    background: linear-gradient(to bottom, transparent, #000000);
}

.about-main .expandable-content p {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.85;
    margin-bottom: 16px;
}

.about-main .expandable-content p:last-child {
    margin-bottom: 0;
}

.about-main .expandable-content p strong {
    display: block;
    font-family: var(--font-heading);
    color: var(--gold-soft);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 8px;
}

.about-main .expandable-content p strong:first-child {
    margin-top: 0;
}

.about-main .expandable-toggle--compact {
    margin-top: 18px;
    width: fit-content;
    max-width: 100%;
    padding: 5px 12px;
    font-size: 11px;
    letter-spacing: 0.08em;
    border-radius: 999px;
    line-height: 1.3;
}

.about-main .expandable-toggle__icon {
    width: 14px;
    height: 14px;
}

.about-aside {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 96px;
}

.about-card--vision {
    margin: 0;
}

.about-vision-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-vision-list li {
    position: relative;
    padding-left: 18px;
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.65;
}

.about-vision-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--violet), var(--gold));
    box-shadow: 0 0 8px rgba(120, 0, 255, 0.45);
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.about-tag {
    border-radius: 999px;
    border: 1px solid rgba(216, 194, 143, 0.35);
    padding: 5px 12px;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-muted);
    background: rgba(0, 0, 0, 0.35);
}

@media (max-width: 1024px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-aside {
        position: static;
    }
}

@media (max-width: 640px) {
    .about-section {
        padding-top: 88px;
        padding-bottom: 72px;
    }

    .about-main .expandable-content {
        max-height: 240px;
    }
}



/* ===== components/platforms.css ===== */

/* ===========================
   PLATFORMS SECTION
   Stiluri pentru platforme streaming
   =========================== */

.platforms-section {
    background: radial-gradient(circle at bottom, rgba(120,0,255,0.18), #000000 60%);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
}

.platform-card {
    border-radius: 12px;
    padding: 18px;
    background: rgba(10,10,20,0.9);
    border: 1px solid rgba(216,194,143,0.18);
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.platform-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(120,0,255,0.5);
    border-color: rgba(216,194,143,0.4);
}

.platform-name {
    font-family: var(--font-heading);
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
}

.platform-link {
    font-size: 13px;
    color: var(--text-soft);
}

.platform-tag {
    font-size: 11px;
    color: var(--text-muted);
}



/* ===== components/contact.css ===== */

/* ===========================
   CONTACT SECTION
   =========================== */

.contact-section {
    background: radial-gradient(circle at top, rgba(120, 0, 255, 0.12), #000000 55%);
    min-height: calc(100vh - 70px);
    padding-top: 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 28px;
    align-items: start;
}

/* — Info panel — */
.contact-info {
    border-radius: 16px;
    padding: 28px 26px;
    background: radial-gradient(circle at top left, rgba(120, 0, 255, 0.2), rgba(0, 0, 0, 0.92));
    border: 1px solid rgba(216, 194, 143, 0.18);
    box-shadow: 0 0 35px rgba(120, 0, 255, 0.25);
}

.contact-info__eyebrow {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-muted);
    margin-bottom: 10px;
}

.contact-info__title {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    color: var(--gold);
    letter-spacing: 0.06em;
    margin-bottom: 14px;
    line-height: 1.35;
}

.contact-info__text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-soft);
    margin-bottom: 22px;
}

.contact-info__label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.contact-info__channel {
    padding: 18px 20px;
    margin-bottom: 22px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(216, 194, 143, 0.22);
}

.contact-info__email {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--gold);
    text-decoration: none;
    word-break: break-all;
    margin-bottom: 12px;
    transition: opacity 0.25s ease;
}

.contact-info__email:hover {
    opacity: 0.85;
    text-decoration: underline;
}

.contact-info__copy {
    background: transparent;
    border: 1px solid rgba(216, 194, 143, 0.35);
    border-radius: 999px;
    color: var(--text-soft);
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 8px 14px;
    cursor: pointer;
    transition: border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.contact-info__copy:hover {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 16px rgba(120, 0, 255, 0.35);
}

.contact-info__meta {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-info__meta li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-info__meta li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-info__meta-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
}

.contact-info__meta-value {
    font-size: 14px;
    color: var(--text-main);
}

.contact-info__topic-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-info__topic-list li {
    position: relative;
    padding-left: 16px;
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.5;
}

.contact-info__topic-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-muted);
    box-shadow: 0 0 8px rgba(120, 0, 255, 0.5);
}

/* — Form card — */
.contact-form-card {
    border-radius: 16px;
    padding: 28px 26px;
    background: radial-gradient(circle at top, rgba(120, 0, 255, 0.25), rgba(0, 0, 0, 0.95));
    border: 1px solid rgba(216, 194, 143, 0.2);
    box-shadow: 0 0 35px rgba(120, 0, 255, 0.35);
}

.contact-form-card__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-soft);
    margin-bottom: 8px;
}

.contact-form-card__intro {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 22px;
}

.contact-form__row {
    margin-bottom: 16px;
}

.contact-form__row--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.contact-field__label {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.contact-field__input,
.contact-field__select,
.contact-input {
    width: 100%;
    box-sizing: border-box;
    background: rgba(10, 10, 20, 0.9);
    border: 1px solid rgba(216, 194, 143, 0.25);
    border-radius: 12px;
    padding: 12px 16px;
    color: var(--text-main);
    font-size: 14px;
    font-family: var(--font-body);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-field__textarea {
    min-height: 130px;
    resize: vertical;
    line-height: 1.55;
}

.contact-field__select {
    appearance: none;
    cursor: pointer;
    background-image: linear-gradient(45deg, transparent 50%, var(--gold-muted) 50%), linear-gradient(135deg, var(--gold-muted) 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 36px;
}

.contact-field__input::placeholder,
.contact-input::placeholder {
    color: rgba(136, 136, 136, 0.85);
}

.contact-field__input:focus,
.contact-field__select:focus,
.contact-input:focus {
    outline: none;
    border-color: rgba(216, 194, 143, 0.55);
    box-shadow: 0 0 0 3px rgba(120, 0, 255, 0.15), 0 0 14px rgba(216, 194, 143, 0.15);
}

.contact-field__input.is-invalid,
.contact-field__select.is-invalid {
    border-color: rgba(255, 120, 120, 0.55);
}

.contact-form__consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 8px 0 20px;
    font-size: 12px;
    line-height: 1.55;
    color: var(--text-muted);
    text-align: left;
    cursor: pointer;
}

.contact-form__consent input {
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--gold);
}

.contact-form__consent a {
    color: var(--gold);
}

.contact-form__actions {
    display: flex;
    justify-content: flex-start;
}

.contact-form__actions .btn-primary {
    min-width: 200px;
}

.contact-form__status {
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.5;
    text-align: left;
}

.contact-form__status--success {
    background: rgba(120, 0, 255, 0.12);
    border: 1px solid rgba(216, 194, 143, 0.25);
    color: var(--text-soft);
}

.contact-form__status--info {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
}

.contact-form__status--error {
    background: rgba(120, 0, 0, 0.15);
    border: 1px solid rgba(255, 120, 120, 0.35);
    color: #f0b8b8;
}

.contact-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.contact-success {
    text-align: center;
    padding: 32px 16px 12px;
    animation: contactSuccessIn 0.45s ease;
}

@keyframes contactSuccessIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-success:focus {
    outline: none;
}

.contact-success__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    background: rgba(120, 0, 255, 0.2);
    border: 1px solid rgba(216, 194, 143, 0.35);
    box-shadow: 0 0 24px rgba(120, 0, 255, 0.35);
}

.contact-success__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.06em;
    color: var(--gold);
    margin-bottom: 10px;
}

.contact-success__text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-soft);
    margin-bottom: 22px;
}

.contact-success__again {
    min-width: 180px;
}

.contact-form__actions .btn-primary:disabled {
    opacity: 0.65;
    cursor: wait;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form__row--split {
        grid-template-columns: 1fr;
    }

    .contact-form__actions .btn-primary {
        width: 100%;
    }
}



/* ===== components/footer.css ===== */

/* ===========================
   FOOTER
   =========================== */

.site-footer {
    position: relative;
    padding: 48px 0 36px;
    background: #000000;
    color: var(--text-muted);
    font-size: 13px;
    overflow: hidden;
}

.site-footer__glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(720px, 85%);
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(120, 0, 255, 0.45) 20%,
        rgba(216, 194, 143, 0.55) 50%,
        rgba(120, 0, 255, 0.45) 80%,
        transparent
    );
    box-shadow: 0 0 28px rgba(120, 0, 255, 0.25);
}

.site-footer__glow::after {
    content: "";
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    height: 120px;
    background: radial-gradient(ellipse, rgba(120, 0, 255, 0.12), transparent 70%);
    pointer-events: none;
}

.site-footer__inner {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 28px;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 32px 40px;
    align-items: start;
    text-align: left;
}

.site-footer__col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.site-footer__col--brand {
    gap: 8px;
}

.site-footer__artist {
    font-family: var(--font-heading);
    font-size: 15px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 4px;
}

.site-footer__brand-line {
    font-family: var(--font-serif);
    font-size: 13px;
    line-height: 1.45;
    color: var(--text-soft);
    margin: 0 0 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__creator {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-soft);
    margin: 0;
}

.site-footer__genres {
    font-size: 12px;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin: 4px 0 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__copyright {
    font-size: 12px;
    line-height: 1.55;
    color: var(--text-soft);
    margin: 0;
}

.site-footer__rights {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

.site-footer__website {
    display: inline-block;
    margin-top: 8px;
    font-size: 13px;
    color: var(--gold-muted);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.25s ease;
}

.site-footer__website:hover {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.site-footer__heading {
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-muted);
    margin: 0 0 8px;
}

.site-footer__heading--spaced {
    margin-top: 16px;
}

.site-footer__link {
    display: block;
    margin-bottom: 6px;
    color: var(--text-soft);
    font-size: 14px;
}

.site-footer__link:hover {
    color: var(--gold);
}

.site-footer__email {
    font-size: 14px;
    color: var(--gold);
    text-decoration: none;
    word-break: break-all;
    transition: opacity 0.25s ease, color 0.25s ease;
    display: inline-block;
    margin-top: 8px;
}
}

.site-footer__email:hover {
    color: var(--gold-soft);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.site-footer__link {
    font-size: 13px;
    color: var(--text-soft);
    text-decoration: none;
    transition: color 0.25s ease;
}

.site-footer__link:hover {
    color: var(--gold);
}

.site-footer__legal-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.site-footer__legal-nav a,
.site-footer__cookie-btn {
    font-size: 13px;
    color: var(--text-soft);
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    font-family: var(--font-body);
    cursor: pointer;
    text-align: left;
    transition: color 0.25s ease, transform 0.25s ease;
}

.site-footer__legal-nav a:hover,
.site-footer__cookie-btn:hover {
    color: var(--gold);
    transform: translateX(3px);
}

.site-footer__cookie-btn {
    margin-top: 6px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
    color: var(--text-muted);
    font-size: 12px;
    letter-spacing: 0.04em;
}

.site-footer__cookie-btn:hover {
    transform: none;
}

.site-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 16px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    max-width: 100%;
}

.site-footer__lang-label {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-muted);
}

.lang-switcher--footer {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(216, 194, 143, 0.28);
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 32px;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .site-footer__col {
        align-items: center;
    }

    .site-footer__legal-nav {
        align-items: center;
    }

    .site-footer__legal-nav a,
    .site-footer__cookie-btn {
        text-align: center;
    }

    .site-footer__cookie-btn {
        width: auto;
        min-width: 160px;
    }

    .site-footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (min-width: 769px) and (max-width: 960px) {
    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__col--legal {
        grid-column: 1 / -1;
    }

    .site-footer__legal-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px 20px;
    }

    .site-footer__cookie-btn {
        width: auto;
        margin-top: 0;
        padding-top: 0;
        border-top: none;
        margin-left: auto;
    }
}



/* ===== components/legal.css ===== */

/* ===========================
   LEGAL PAGES
   =========================== */

.legal-section {
    padding-top: 100px;
    padding-bottom: 80px;
}

.legal-inner {
    max-width: 820px;
}

.legal-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-nav__link {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.25s ease;
}

.legal-nav__link:hover,
.legal-nav__link.is-active {
    color: var(--gold);
}

.legal-nav__de {
    opacity: 0.65;
    font-size: 12px;
}

.legal-header {
    margin-bottom: 28px;
}

.legal-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.legal-updated {
    font-size: 13px;
    color: var(--text-muted);
}

.legal-content {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.75;
}

.legal-block {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-block--warn {
    padding: 14px 16px;
    border: 1px solid rgba(255, 180, 0, 0.35);
    border-radius: 8px;
    background: rgba(255, 180, 0, 0.08);
    margin-bottom: 24px;
}

.legal-block--warn p {
    margin: 0;
    font-size: 14px;
    color: #e8c878;
}

.legal-block--de {
    opacity: 0.95;
}

.legal-block h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.legal-block h3 {
    font-size: 1rem;
    color: var(--text-primary);
    margin: 24px 0 10px;
}

.legal-lang-note {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 16px;
}

.legal-list {
    margin: 12px 0 12px 20px;
}

.legal-content--de .legal-block:not(.legal-block--de):not(.legal-block--warn):not(.legal-block--summary) {
    display: none;
}

.legal-content--en .legal-block:not(.legal-block--summary):not(.legal-block--warn),
.legal-content--ru .legal-block:not(.legal-block--summary):not(.legal-block--warn) {
    display: none;
}

.legal-block--summary {
    border-color: rgba(201, 169, 98, 0.35);
}

.legal-summary-de-link {
    margin-top: 1rem;
    font-size: 14px;
}

.legal-summary-de-link a {
    color: var(--gold);
}

.legal-block a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-block code {
    font-size: 0.85em;
    background: rgba(255, 255, 255, 0.06);
    padding: 2px 6px;
    border-radius: 4px;
}

.legal-cookie-table {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    overflow: hidden;
    margin: 16px 0;
}

.legal-cookie-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.5);
    font-size: 14px;
}

@media (min-width: 768px) {
    .legal-cookie-row {
        grid-template-columns: 1fr 2fr 0.8fr 1fr;
        gap: 12px;
        align-items: start;
    }

    .legal-cookie-row--head {
        font-weight: 600;
        color: var(--text-primary);
        background: rgba(120, 0, 255, 0.12);
    }
}

.legal-cookie-actions {
    margin-top: 24px;
}

.legal-footer-note {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    color: var(--text-muted);
}

.legal-footer-note a {
    color: var(--gold);
}



/* ===== components/cookie-consent.css ===== */

/* ===========================
   COOKIE CONSENT (GDPR / TTDSG)
   =========================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    padding: 16px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.cookie-banner.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-banner__panel {
    max-width: 560px;
    margin: 0 auto;
    padding: 20px 22px;
    background: rgba(8, 8, 12, 0.96);
    border: 1px solid rgba(120, 0, 255, 0.35);
    border-radius: 12px;
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(12px);
}

.cookie-banner__title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.cookie-banner__text {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.cookie-banner__text a {
    color: var(--gold);
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cookie-banner__actions .btn-primary,
.cookie-banner__actions .btn-outline {
    flex: 1 1 auto;
    min-width: 120px;
    font-size: 13px;
    padding: 10px 14px;
}

.cookie-banner__actions .btn-ghost {
    flex: 1 1 100%;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 12px;
    cursor: pointer;
    padding: 6px;
    text-decoration: underline;
}

.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(0, 0, 0, 0.72);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cookie-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.cookie-modal__dialog {
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 24px;
    background: #0a0a0f;
    border: 1px solid rgba(120, 0, 255, 0.3);
    border-radius: 12px;
}

.cookie-modal__title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.cookie-option {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cookie-option:last-of-type {
    border-bottom: none;
}

.cookie-option__body {
    flex: 1;
}

.cookie-option__body strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.cookie-option__body p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

.cookie-option input[type="checkbox"] {
    margin-top: 4px;
    accent-color: var(--gold);
}

.cookie-option input:disabled {
    opacity: 0.6;
}

.cookie-modal__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.cookie-modal__actions .btn-primary,
.cookie-modal__actions .btn-outline {
    flex: 1;
    font-size: 13px;
}

@media (min-width: 768px) {
    .cookie-banner {
        padding: 24px;
    }

    .cookie-banner__panel {
        margin-left: auto;
        margin-right: 0;
    }
}



/* ===== components/error.css ===== */

/* ===========================
   ERROR PAGES (404)
   =========================== */

.error-section {
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 80px;
    background: radial-gradient(circle at center, rgba(120, 0, 255, 0.1), #000 65%);
}

.error-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.error-code {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 14vw, 6.5rem);
    line-height: 1;
    margin: 0 0 12px;
    color: transparent;
    background: linear-gradient(180deg, var(--gold) 0%, rgba(120, 0, 255, 0.55) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    letter-spacing: 0.08em;
    opacity: 0.85;
}

.error-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 1.85rem);
    color: var(--gold);
    letter-spacing: 0.08em;
    margin: 0 0 16px;
}

.error-text {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-soft);
    margin: 0 0 28px;
}

.error-text em {
    color: var(--gold-soft);
    font-style: normal;
}

.error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.error-actions .btn-primary,
.error-actions .btn-outline {
    min-width: 160px;
}

@media (max-width: 520px) {
    .error-actions {
        flex-direction: column;
        align-items: stretch;
    }
}



/* ===== components/icons.css ===== */

/* ===========================
   LUCIDE ICONS
   =========================== */

.icon,
.lucide {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke: currentColor;
    fill: none;
    vertical-align: middle;
    flex-shrink: 0;
}

.icon svg,
.lucide {
    width: 100%;
    height: 100%;
}

.icon--xs {
    width: 12px;
    height: 12px;
}

.icon--sm {
    width: 16px;
    height: 16px;
}

.icon--md {
    width: 20px;
    height: 20px;
}

.icon--lg {
    width: 24px;
    height: 24px;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.15em;
    height: 1.15em;
}

.btn-player .btn-icon {
    width: 18px;
    height: 18px;
}

.btn-player.player-btn-main .btn-icon {
    width: 22px;
    height: 22px;
}

.player-btn-small .btn-icon {
    width: 16px;
    height: 16px;
}

.expandable-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.expandable-toggle__icon {
    width: 16px;
    height: 16px;
}

.contact-info__copy {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.contact-success__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    border-radius: 50%;
    border: 1px solid var(--gold-muted);
    color: var(--gold);
}

.contact-success__icon .icon {
    width: 24px;
    height: 24px;
}

.player-tv-badge__icon {
    display: inline-flex;
    width: 14px;
    height: 14px;
}

.animation-selector-title,
.video-volume-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.animation-item-name {
    display: flex;
    align-items: center;
    gap: 8px;
}

.animation-item-name .icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.player-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-burger__icon {
    width: 22px;
    height: 22px;
}

.track-notification__play .icon {
    width: 14px;
    height: 14px;
}

.track-play-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.track-play-icon .icon {
    width: 10px;
    height: 10px;
}

.track:hover .track-play-icon .icon {
    width: 12px;
    height: 12px;
}

.track-share-btn .icon {
    width: 12px;
    height: 12px;
}

.universe-cta__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}



/* ===== expandable.css ===== */

/* ===========================
   EXPANDABLE TEXT
   Read more / Show less pentru texte lungi
   =========================== */

.expandable-text {
    position: relative;
}

.expandable-content {
    max-height: 150px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.5s ease;
}

.expandable-content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--bg-black));
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.expandable-content.expanded {
    max-height: none;
}

.expandable-content.expanded::after {
    opacity: 0;
}

.expandable-toggle {
    margin-top: 15px;
    background: transparent;
    border: 1px solid var(--gold-muted);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: var(--font-heading);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    max-width: 100%;
}

.expandable-toggle:hover {
    border-color: var(--gold);
    background: rgba(216,194,143,0.1);
    transform: translateY(-1px);
    box-shadow: 0 0 15px rgba(216,194,143,0.3);
}



/* ===== responsive.css ===== */

/* ===========================
   RESPONSIVE DESIGN
   Media queries pentru diferite dimensiuni
   =========================== */

@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        order: -1;
    }

    .hero-cover-wrapper {
        width: min(88vw, 380px);
    }

    .album-grid,
    .tracklist-grid,
    .about-layout {
        grid-template-columns: 1fr;
    }

    .tracklist-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .navbar-inner {
        justify-content: space-between;
    }

    .hero-title {
        font-size: 32px;
    }

    .section {
        padding: 60px 0;
    }

    .player-card {
        padding: 24px 18px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
        letter-spacing: 4px;
    }

    .hero-cover-wrapper {
        width: min(92vw, 340px);
    }

    .hero-cover-overlay {
        padding: 14px 12px 12px;
    }

    .hero-cover-track {
        font-size: 7px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-description {
        font-size: 14px;
    }

    .track-title {
        font-size: 14px;
    }

    .track-description {
        font-size: 12px;
    }

    .player-extra-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    /* Pe mobil: scoatem Volum (lasam EQ) */
    .player-volume {
        display: none;
    }

    .player-eq {
        flex: 0 0 auto;
        width: 100%;
        order: 1;
        margin-top: 0;
    }

    .player-mode {
        order: 2;
        flex: 0 0 auto;
        width: 100%;
        margin-top: 0;
    }

    .player-eq-bars {
        height: 14px;
    }

    .player-eq-bar {
        height: 3px;
        min-height: 2px;
    }
}



/* ===== ../animations/fire/fire.css ===== */

/* ===========================
   LOCAL VIDEO BACKGROUND
   Video local ca fundal pe tot site-ul
   =========================== */

.video-bg {
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
    display: none;
}

.video-bg.active {
    opacity: 1;
    display: block;
}

/* Fundal pagină – fixed pe tot site-ul, sub main */
.video-bg-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

/* Video în player (mod normal) */
.player-card .video-bg-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    border-radius: inherit;
    overflow: hidden;
}

body.video-background-active .player-card:not(.fullscreen-mode) {
    position: relative;
    overflow: hidden;
}

body.video-background-active .player-card:not(.fullscreen-mode)::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at top, rgba(120, 0, 255, 0.28), rgba(0, 0, 0, 0.72));
    z-index: 1;
    pointer-events: none;
}

body.video-background-active .player-card:not(.fullscreen-mode) > :not(.video-bg):not(.animation-selector):not(.video-volume-control):not(.player-tv-badge) {
    position: relative;
    z-index: 2;
}

.video-bg-media {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    pointer-events: none;
}

/* În fullscreen, video-ul trebuie deasupra fundalului playerului */
.player-card.fullscreen-mode .video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    border-radius: 0;
    overflow: hidden;
}

.video-bg-page .video-bg-media,
.player-card.fullscreen-mode .video-bg-media {
    width: 100vw;
    height: 100vh;
    min-width: 100%;
    min-height: 100%;
}

/* Overlay – mai ușor pe fundalul paginii, puțin mai intens în card */
.video-bg-page.video-bg::after {
    background: rgba(0, 0, 0, 0.25);
}

.player-card .video-bg-player.video-bg::after {
    background: rgba(0, 0, 0, 0.35);
}

.video-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
    transition: opacity 0.5s ease;
}

body.video-ui-hidden .video-bg::after {
    opacity: 0;
}



/* ===== ../animations/animations.css ===== */

/* ===========================
   ANIMATION SELECTOR
   Selector de animații (ca un tracklist)
   =========================== */

.animation-selector {
    position: fixed;
    bottom: 100px;
    right: 40px;
    display: none;
    flex-direction: column;
    gap: 8px;
    z-index: 1000;
    max-width: 280px;
    background: radial-gradient(circle, rgba(120,0,255,0.3), rgba(0,0,0,0.95));
    padding: 15px;
    border-radius: 12px;
    border: 1px solid var(--gold);
    box-shadow: 0 0 30px rgba(120,0,255,0.6);
    pointer-events: all;
}

.animation-selector.active {
    display: flex;
}

.animation-selector-title {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    text-align: center;
}

.animation-item {
    padding: 10px 12px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(216,194,143,0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.animation-item:hover {
    background: rgba(0,0,0,0.5);
    border-color: var(--gold);
    transform: translateX(-3px);
}

.animation-item.active {
    background: rgba(216,194,143,0.15);
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(120,0,255,0.4);
}

.animation-item-name {
    font-family: var(--font-heading);
    color: var(--gold-soft);
    font-size: 14px;
    margin-bottom: 3px;
}

.animation-item.active .animation-item-name {
    color: var(--gold);
}

.animation-item-desc {
    font-size: 11px;
    color: var(--text-muted);
}

/* Control volum video fundal */
.video-volume-control {
    position: fixed;
    bottom: 100px;
    left: 40px;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 1000;
    background: radial-gradient(circle, rgba(120,0,255,0.3), rgba(0,0,0,0.95));
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--gold);
    box-shadow: 0 0 30px rgba(120,0,255,0.6);
    pointer-events: all;
}

.video-volume-control.active {
    display: flex;
}

.volume-control-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.volume-control-section + .volume-control-section {
    padding-top: 15px;
    border-top: 1px solid rgba(216,194,143,0.2);
}

.video-volume-label {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.video-volume-slider {
    width: 150px;
    height: 6px;
    background: rgba(0,0,0,0.3);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

.video-volume-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--violet), var(--gold));
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s ease;
}

.video-volume-value {
    font-family: var(--font-heading);
    color: var(--text-soft);
    font-size: 13px;
    min-width: 40px;
    text-align: center;
}

