:root {
    --bg: #05060b;
    --bg-soft: rgba(255,255,255,0.05);
    --panel: rgba(10, 13, 21, 0.82);
    --line: rgba(255,255,255,0.10);
    --text: #f6f7fb;
    --muted: rgba(246,247,251,0.70);
    --muted-2: rgba(246,247,251,0.55);
    --violet: #8b5cf6;
    --blue: #3b82f6;
    --shadow: 0 20px 80px rgba(0,0,0,0.35);
    --radius: 24px;
    --container: 1680px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(139,92,246,0.10), transparent 28%),
        radial-gradient(circle at 80% 10%, rgba(59,130,246,0.08), transparent 22%),
        linear-gradient(180deg, #05060b 0%, #090b13 100%);
}

a { color: inherit; text-decoration: none; }
img, iframe { display: block; max-width: 100%; border: 0; }

.page-glow {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(circle at 20% 15%, rgba(217,70,239,0.08), transparent 18%),
        radial-gradient(circle at 75% 30%, rgba(59,130,246,0.06), transparent 20%);
}

.container {
    width: min(var(--container), calc(100% - 24px));
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section { padding: 38px 0 82px; }

.eyebrow {
    margin-bottom: 14px;
    color: #d8c7ff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.28em;
}

.accent-text {
    background: linear-gradient(135deg, #cc87ff 0%, #8b5cf6 45%, #4a7dff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    font-size: 0.98rem;
    transition: transform 180ms ease, opacity 180ms ease, border-color 180ms ease, background 180ms ease;
    cursor: pointer;
}

.btn:hover { transform: translateY(-1px); }

.btn-accent {
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    box-shadow: 0 10px 30px rgba(139,92,246,0.22);
}

.btn-ghost {
    color: #fff;
    background: rgba(255,255,255,0.02);
    border-color: rgba(139,92,246,0.40);
}

.glass-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.site-header,
.design-reference-section {
    display: none !important;
}

/* HERO */
.hero-full { padding: 18px 0 46px; }

.hero-banner-fullwidth {
    width: min(1680px, calc(100% - 24px));
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    background: #03050a;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 24px 80px rgba(0,0,0,0.34);
    position: relative;
}

.hero-main-grid-full {
    display: grid;
    grid-template-columns: minmax(360px, 41vw) minmax(0, 59vw);
    min-height: clamp(560px, 72vh, 720px);
    align-items: stretch;
    position: relative;
}

.hero-copy-full {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px clamp(22px, 4vw, 64px) 40px;
    background:
        linear-gradient(90deg, rgba(3,5,10,1) 0%, rgba(3,5,10,0.995) 64%, rgba(3,5,10,0.84) 82%, rgba(3,5,10,0.00) 100%);
}

.hero-brand {
    display: inline-block;
    margin-bottom: 32px;
    font-size: clamp(2.4rem, 3vw, 3.8rem);
    font-weight: 900;
    letter-spacing: 0.02em;
    color: #fff;
}

.hero-copy-full h1 {
    margin: 0 0 14px;
    max-width: 700px;
    font-size: clamp(3.3rem, 6.9vw, 6.1rem);
    line-height: 0.94;
    letter-spacing: -0.045em;
}

.hero-subtitle {
    margin: 0 0 18px;
    font-size: clamp(1.08rem, 1.7vw, 1.55rem);
    font-weight: 500;
    color: #fff;
}

.hero-text {
    margin: 0;
    max-width: 560px;
    color: var(--muted);
    font-size: clamp(1rem, 1.15vw, 1.16rem);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.hero-banner-visual-full {
    position: relative;
    min-height: inherit;
    overflow: hidden;
    isolation: isolate;
}

.hero-banner-visual-full::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 68% 28%, rgba(150,72,255,0.12), transparent 22%),
        radial-gradient(circle at 83% 42%, rgba(71,132,255,0.10), transparent 24%);
    animation: heroAmbientPulse 8s ease-in-out infinite;
}

.hero-image {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(3,5,10,0.00), rgba(3,5,10,0.08)),
        url('../img/hero-composition-v8.png') 56% 48% / auto 100% no-repeat;
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 10%, rgba(0,0,0,1) 26%, rgba(0,0,0,1) 100%);
    mask-image: linear-gradient(to left, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 10%, rgba(0,0,0,1) 26%, rgba(0,0,0,1) 100%);
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3,5,10,0.80) 0%, rgba(3,5,10,0.22) 14%, rgba(3,5,10,0.00) 26%),
        linear-gradient(180deg, rgba(3,5,10,0.02) 0%, rgba(3,5,10,0.10) 100%);
}

.spotlight {
    position: absolute;
    pointer-events: none;
    mix-blend-mode: screen;
    z-index: 1;
    clip-path: polygon(47% 0%, 57% 0%, 100% 100%, 0% 100%);
    filter: blur(0.6px);
    transform-origin: top center;
}

.spot-1 {
    left: 10%;
    top: 20%;
    width: 130px;
    height: 250px;
    opacity: 0.42;
    background: linear-gradient(180deg, rgba(255,255,255,0.00) 0%, rgba(255,255,255,0.32) 18%, rgba(255,255,255,0.08) 55%, rgba(255,255,255,0.00) 100%);
    animation: spotlightMove1 7s ease-in-out infinite, spotlightColor1 10s ease-in-out infinite;
}

.spot-2 {
    left: 20%;
    top: 29%;
    width: 105px;
    height: 190px;
    opacity: 0.34;
    background: linear-gradient(180deg, rgba(59,130,246,0.00) 0%, rgba(59,130,246,0.30) 18%, rgba(59,130,246,0.08) 55%, rgba(59,130,246,0.00) 100%);
    animation: spotlightMove2 6.4s ease-in-out infinite, spotlightColor2 9.2s ease-in-out infinite;
}

.hero-stats-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: 18px 32px 24px;
    background: #03050a;
    border-top: 1px solid rgba(255,255,255,0.05);
    position: relative;
    z-index: 3;
}

.stat-card {
    min-height: 92px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px 22px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(10,12,20,0.90), rgba(13,16,25,0.78));
}

.stat-card strong { display: block; margin-bottom: 8px; font-size: 1.25rem; }
.stat-card span { color: var(--muted); font-size: 0.98rem; }

/* SLOGAN */
.slogan-band {
    position: relative;
    margin: 6px 0 30px;
    padding: 0;
    z-index: 1;
}

.slogan-band-inner {
    width: 100%;
    padding: clamp(26px, 4vw, 46px) 24px;
    text-align: center;
    background:
        radial-gradient(circle at 18% 50%, rgba(139,92,246,0.42), transparent 30%),
        radial-gradient(circle at 78% 40%, rgba(59,130,246,0.38), transparent 28%),
        radial-gradient(circle at 50% 50%, rgba(244,208,128,0.12), transparent 34%),
        linear-gradient(90deg,
            rgba(76,29,149,0.92) 0%,
            rgba(91,33,182,0.92) 24%,
            rgba(79,70,229,0.90) 50%,
            rgba(37,99,235,0.90) 76%,
            rgba(29,78,216,0.92) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.06),
        0 14px 40px rgba(15, 23, 42, 0.24);
    overflow: hidden;
}

.slogan-band-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.00) 36%, rgba(0,0,0,0.10) 100%);
    pointer-events: none;
}

.slogan-band-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(255,255,255,0.00) 0%,
            rgba(255,255,255,0.10) 12%,
            rgba(255,255,255,0.00) 24%,
            rgba(255,215,140,0.10) 50%,
            rgba(255,255,255,0.00) 78%,
            rgba(255,255,255,0.08) 100%);
    mix-blend-mode: screen;
    pointer-events: none;
}

.slogan-text {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #f8fbff;
    text-shadow:
        0 1px 0 rgba(255,255,255,0.05),
        0 8px 22px rgba(5, 6, 11, 0.28);
}

/* SECTION */
.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 24px;
}

.section-heading h2,
.contact-grid h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.section-heading p,
.contact-grid p,
.empty-card p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.75;
}

/* MUSIC */
.music-section { padding-top: 18px; }

.latest-track-card {
    padding: 22px;
    margin-bottom: 18px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
        radial-gradient(circle at 85% 20%, rgba(139,92,246,0.10), transparent 24%);
}

.latest-featured-grid {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
}

.latest-track-cover-column {
    display: flex;
    align-items: stretch;
}

.latest-track-cover {
    position: relative;
    width: 100%;
    min-height: 100%;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    box-shadow:
        0 12px 34px rgba(0,0,0,0.30),
        0 0 18px rgba(139,92,246,0.12),
        0 0 26px rgba(59,130,246,0.08);
}

.latest-track-cover::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: inherit;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 30% 30%, rgba(139,92,246,0.18), transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(59,130,246,0.14), transparent 40%);
    filter: blur(12px);
    opacity: 0.95;
}

.latest-track-cover img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
}

.latest-track-cover-placeholder {
    min-height: 320px;
    background:
        linear-gradient(135deg, rgba(59,130,246,0.16), rgba(139,92,246,0.18)),
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}

.latest-featured-panel {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    background:
        radial-gradient(circle at 18% 38%, rgba(139,92,246,0.30), transparent 26%),
        radial-gradient(circle at 72% 34%, rgba(59,130,246,0.26), transparent 24%),
        linear-gradient(120deg, rgba(16,11,30,0.98), rgba(5,10,24,0.96) 55%, rgba(9,12,20,0.98));
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.04) inset,
        0 0 24px rgba(139,92,246,0.12),
        0 0 44px rgba(59,130,246,0.08);
}

.latest-featured-panel.has-image {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.latest-featured-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4,6,12,0.30), rgba(4,6,12,0.42) 52%, rgba(4,6,12,0.78) 100%),
        linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.00) 30%, rgba(3,5,10,0.22) 100%);
}

.latest-featured-noise {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: radial-gradient(rgba(255,255,255,0.9) 0.6px, transparent 0.6px);
    background-size: 8px 8px;
    mix-blend-mode: soft-light;
}

.latest-featured-beam {
    position: absolute;
    pointer-events: none;
    mix-blend-mode: screen;
    clip-path: polygon(47% 0%, 57% 0%, 100% 100%, 0% 100%);
    filter: blur(0.4px);
    transform-origin: top center;
}

.latest-featured-beam.beam-1 {
    left: 10%;
    top: 16%;
    width: 120px;
    height: 200px;
    opacity: 0.20;
    background: linear-gradient(180deg, rgba(255,255,255,0.00) 0%, rgba(255,255,255,0.28) 22%, rgba(255,255,255,0.08) 58%, rgba(255,255,255,0.00) 100%);
}

.latest-featured-beam.beam-2 {
    left: 20%;
    top: 28%;
    width: 100px;
    height: 170px;
    opacity: 0.18;
    background: linear-gradient(180deg, rgba(59,130,246,0.00) 0%, rgba(59,130,246,0.30) 20%, rgba(139,92,246,0.14) 60%, rgba(59,130,246,0.00) 100%);
}

.latest-featured-ring {
    position: absolute;
    right: 8%;
    top: 50%;
    width: 270px;
    height: 270px;
    border-radius: 50%;
    border: 3px solid rgba(215,166,255,0.40);
    box-shadow: 0 0 24px rgba(196,120,255,0.20), inset 0 0 18px rgba(196,120,255,0.12);
    transform: translateY(-50%);
    opacity: 0.40;
}

.latest-featured-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 320px;
    padding: 22px;
}

.latest-chip {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(5,6,11,0.55);
    border: 1px solid rgba(255,255,255,0.10);
    color: #d8c7ff;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    font-weight: 800;
    margin-bottom: 12px;
}

.latest-featured-content h3 {
    margin: 0 0 8px;
    font-size: clamp(1.9rem, 3.4vw, 2.7rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    text-shadow: 0 8px 24px rgba(0,0,0,0.34);
    max-width: min(70%, 620px);
}

.latest-featured-meta {
    margin: 0;
    color: rgba(246,247,251,0.82);
    font-size: 0.98rem;
    text-shadow: 0 4px 18px rgba(0,0,0,0.26);
}

.latest-featured-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.track-plays {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(246,247,251,0.78);
    font-size: 0.9rem;
    white-space: nowrap;
}

.track-plays.large {
    min-height: 42px;
    padding: 0 14px;
    font-weight: 600;
    background: rgba(5,6,11,0.48);
}

.track-link {
    color: #d8c7ff;
    font-weight: 600;
}

.track-link:hover { color: #ffffff; }

.latest-track-player-wrap { margin-top: 16px; max-width: 760px; }

.widget-shell {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(180deg, rgba(9,12,20,0.98), rgba(6,8,14,0.98));
    padding: 14px 14px 10px;
}

.widget-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(139,92,246,0.06), rgba(59,130,246,0.04));
}

.widget-shell iframe { position: relative; z-index: 1; }
.widget-shell-latest { padding: 14px 14px 12px; }
.widget-shell-compact { padding: 12px 12px 8px; min-height: 54px; }

.tracks-grid-two-cols {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

.track-card {
    padding: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
}

.track-top {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    margin-bottom: 14px;
}

.track-cover {
    position: relative;
    width: 92px;
    height: 92px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    box-shadow:
        0 8px 24px rgba(0,0,0,0.26),
        0 0 12px rgba(139,92,246,0.10),
        0 0 16px rgba(59,130,246,0.06);
}

.track-cover::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: inherit;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 30% 30%, rgba(139,92,246,0.18), transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(59,130,246,0.14), transparent 40%);
    filter: blur(12px);
    opacity: 0.95;
}

.track-cover img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.track-cover-placeholder {
    background:
        linear-gradient(135deg, rgba(59,130,246,0.16), rgba(139,92,246,0.18)),
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    box-shadow:
        inset 0 0 18px rgba(139,92,246,0.10),
        0 0 10px rgba(59,130,246,0.05);
}

.track-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    min-width: 0;
}

.track-head > div { min-width: 0; }

.track-head h3 {
    margin: 0 0 6px;
    font-size: 1.08rem;
    line-height: 1.25;
    word-break: break-word;
}

.track-head p {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.track-footer {
    margin-top: 12px;
    display: flex;
    justify-content: flex-end;
}

.empty-card { padding: 26px; }

/* CONTACT */
.contact-section { padding-bottom: 70px; }

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    padding: 28px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03)),
        radial-gradient(circle at 15% 20%, rgba(139,92,246,0.12), transparent 22%),
        radial-gradient(circle at 85% 25%, rgba(59,130,246,0.10), transparent 18%);
}

.contact-list {
    display: grid;
    gap: 14px;
    align-content: center;
    justify-items: start;
    font-size: 1.03rem;
}

.contact-list a,
.contact-list span {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    padding: 0 16px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(0,0,0,0.18);
    color: var(--muted);
}

.signature {
    margin-top: 24px;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-style: italic;
    color: #b58cff;
    opacity: 0.95;
}

/* FOOTER */
.site-footer {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 0 28px;
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: var(--muted-2);
    font-size: 0.95rem;
}

/* ADMIN */
.admin-body {
    min-height: 100vh;
    background: linear-gradient(180deg, #06070b, #0d1119);
}

.admin-wrap {
    width: min(1100px, calc(100% - 32px));
    margin: 36px auto;
}

.admin-card { padding: 28px; margin-bottom: 22px; }
.admin-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.admin-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

label {
    display: grid;
    gap: 10px;
    color: var(--muted);
    font-size: 0.94rem;
}

input, textarea, select {
    width: 100%;
    min-height: 48px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.04);
    color: var(--text);
    padding: 12px 14px;
    font: inherit;
}

textarea { min-height: 140px; resize: vertical; }
button { cursor: pointer; font: inherit; }

.table-wrap { overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; }

.table th,
.table td {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    text-align: left;
    vertical-align: top;
}

.table th { color: #d7c6ff; }
.inline-form { display: inline; }

.alert {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(139,92,246,0.22);
    background: rgba(139,92,246,0.10);
    color: #eadfff;
}

.login-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.login-card { width: min(460px, 100%); padding: 32px; }

/* ANIMATIONS */
@keyframes heroAmbientPulse {
    0%, 100% { opacity: 0.72; }
    50% { opacity: 1; }
}

@keyframes spotlightMove1 {
    0%, 100% { transform: rotate(7deg) translateX(0); opacity: 0.20; }
    50% { transform: rotate(-4deg) translateX(8px); opacity: 0.46; }
}

@keyframes spotlightMove2 {
    0%, 100% { transform: rotate(5deg) translateX(0); opacity: 0.16; }
    50% { transform: rotate(-3deg) translateX(6px); opacity: 0.36; }
}

@keyframes spotlightColor1 {
    0% { background: linear-gradient(180deg, rgba(255,255,255,0.00) 0%, rgba(255,255,255,0.34) 18%, rgba(255,255,255,0.08) 55%, rgba(255,255,255,0.00) 100%); }
    33% { background: linear-gradient(180deg, rgba(217,70,239,0.00) 0%, rgba(217,70,239,0.34) 18%, rgba(217,70,239,0.08) 55%, rgba(217,70,239,0.00) 100%); }
    66% { background: linear-gradient(180deg, rgba(59,130,246,0.00) 0%, rgba(59,130,246,0.34) 18%, rgba(59,130,246,0.08) 55%, rgba(59,130,246,0.00) 100%); }
    100% { background: linear-gradient(180deg, rgba(255,255,255,0.00) 0%, rgba(255,255,255,0.34) 18%, rgba(255,255,255,0.08) 55%, rgba(255,255,255,0.00) 100%); }
}

@keyframes spotlightColor2 {
    0% { background: linear-gradient(180deg, rgba(59,130,246,0.00) 0%, rgba(59,130,246,0.30) 18%, rgba(59,130,246,0.08) 55%, rgba(59,130,246,0.00) 100%); }
    50% { background: linear-gradient(180deg, rgba(217,70,239,0.00) 0%, rgba(217,70,239,0.30) 18%, rgba(217,70,239,0.08) 55%, rgba(217,70,239,0.00) 100%); }
    100% { background: linear-gradient(180deg, rgba(255,255,255,0.00) 0%, rgba(255,255,255,0.30) 18%, rgba(255,255,255,0.08) 55%, rgba(255,255,255,0.00) 100%); }
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .hero-main-grid-full {
        grid-template-columns: minmax(320px, 44vw) minmax(0, 56vw);
        min-height: clamp(540px, 66vh, 660px);
    }

    .hero-copy-full h1 { font-size: clamp(3rem, 6vw, 5.2rem); }

    .hero-image {
        background:
            linear-gradient(180deg, rgba(3,5,10,0.00), rgba(3,5,10,0.08)),
            url('../img/hero-composition-v8.png') 58% 48% / auto 100% no-repeat;
    }

    .latest-featured-grid { grid-template-columns: 190px minmax(0, 1fr); }
    .latest-featured-ring { width: 220px; height: 220px; }
}

@media (max-width: 1120px) {
    .contact-grid,
    .admin-grid,
    .admin-grid-3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .hero-banner-fullwidth {
        width: calc(100% - 16px);
        border-radius: 16px;
    }

    .hero-main-grid-full {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-copy-full {
        padding: 26px 22px 22px;
        background: #03050a;
    }

    .hero-brand {
        margin-bottom: 24px;
        font-size: 2.1rem;
    }

    .hero-copy-full h1 {
        max-width: none;
        font-size: clamp(2.8rem, 12vw, 4.6rem);
    }

    .hero-banner-visual-full { min-height: 380px; }

    .hero-image {
        background:
            linear-gradient(180deg, rgba(3,5,10,0.00), rgba(3,5,10,0.10)),
            url('../img/hero-composition-v8.png') 60% 50% / cover no-repeat;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .hero-image::after {
        background: linear-gradient(180deg, rgba(3,5,10,0.02) 0%, rgba(3,5,10,0.14) 100%);
    }





    .spot-1 {
        left: 8%;
        top: 24%;
        width: 92px;
        height: 170px;
        opacity: 0.38;
    }

    .spot-2 {
        left: 17%;
        top: 31%;
        width: 72px;
        height: 125px;
        opacity: 0.28;
    }

    .hero-stats-row {
        grid-template-columns: 1fr;
        padding: 16px 18px 22px;
    }

    .latest-featured-grid { grid-template-columns: 1fr; }
    .latest-track-cover-column { max-width: 220px; }
    .latest-featured-panel { min-height: 300px; }
    .latest-featured-content { min-height: 300px; }
    .latest-featured-content h3 { max-width: calc(100% - 10px); }

    .tracks-grid-two-cols { grid-template-columns: 1fr; }
    .track-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
    .latest-featured-ring {
        width: 160px;
        height: 160px;
        right: -10px;
        top: 38%;
    }

    .latest-featured-beam.beam-1 {
        left: 8%;
        width: 90px;
        height: 140px;
    }

    .latest-featured-beam.beam-2 {
        left: 18%;
        width: 70px;
        height: 110px;
    }

    .latest-chip {
        min-height: 24px;
        padding: 0 10px;
        font-size: 0.64rem;
    }

    .latest-featured-content h3 { font-size: 1.6rem; }
    .track-top { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
    .container { width: min(var(--container), calc(100% - 16px)); }
    .section { padding: 30px 0 64px; }
    .slogan-band { margin: 2px 0 22px; }
    .slogan-band-inner { padding: 24px 16px; }

    .hero-copy-full .hero-actions { gap: 12px; }
    .hero-copy-full .btn { width: 100%; }
    .hero-banner-visual-full { min-height: 320px; }

    .spot-1 {
        left: 7%;
        top: 25%;
        width: 76px;
        height: 132px;
    }

    .spot-2 {
        left: 16%;
        top: 32%;
        width: 60px;
        height: 96px;
    }

    .contact-grid,
    .latest-track-card,
    .track-card {
        padding: 20px;
    }

    .footer-wrap { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-banner-visual-full::before,
    .spot-1,
    .spot-2 {
        animation: none !important;
    }

    html { scroll-behavior: auto; }
}


.latest-featured-topline {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(220px, 0.95fr);
    gap: 20px;
    align-items: start;
}

.latest-featured-title-col {
    min-width: 0;
}

.latest-featured-description {
    align-self: end;
    color: rgba(246,247,251,0.84);
    font-size: 0.96rem;
    line-height: 1.55;
    text-shadow: 0 4px 18px rgba(0,0,0,0.22);
    max-width: 42ch;
}

@media (max-width: 980px) {
    .latest-featured-topline {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .latest-featured-description {
        max-width: none;
        font-size: 0.93rem;
    }
}


.latest-featured-description {
    text-align: justify;
    text-justify: inter-word;
}

.latest-featured-bottom {
    margin-top: 14px;
}

.latest-featured-taxonomy {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.track-pill {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(5,6,11,0.42);
    border: 1px solid rgba(255,255,255,0.10);
    color: rgba(246,247,251,0.82);
    font-size: 0.82rem;
    line-height: 1;
    white-space: nowrap;
    backdrop-filter: blur(8px);
}

.track-pill-genre {
    color: #e9dcff;
    border-color: rgba(139,92,246,0.28);
    background: rgba(139,92,246,0.14);
}

@media (max-width: 980px) {
    .latest-featured-taxonomy {
        gap: 8px;
    }

    .track-pill {
        min-height: 30px;
        padding: 0 10px;
        font-size: 0.78rem;
    }
}


.latest-featured-description {
    text-align: justify;
    text-justify: inter-word;
}

.latest-featured-bottom {
    margin-top: 10px;
    margin-bottom: 0;
}

.latest-featured-taxonomy {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.track-pill {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(5,6,11,0.42);
    border: 1px solid rgba(255,255,255,0.10);
    color: rgba(246,247,251,0.82);
    font-size: 0.82rem;
    line-height: 1;
    white-space: nowrap;
    backdrop-filter: blur(8px);
}

.track-pill-genre {
    color: #e9dcff;
    border-color: rgba(139,92,246,0.28);
    background: rgba(139,92,246,0.14);
}

.track-plays {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.plays-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.45rem;
    height: 1.45rem;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(59,130,246,0.28), rgba(139,92,246,0.26));
    color: #f8fbff;
    font-size: 0.88rem;
    line-height: 1;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), 0 0 0 1px rgba(255,255,255,0.05);
}

.track-plays.large .plays-icon {
    width: 1.65rem;
    height: 1.65rem;
    font-size: 0.96rem;
}

/* card backgrounds */
.track-card {
    position: relative;
}

.track-card-gradient {
    background:
        radial-gradient(circle at 18% 18%, rgba(255,255,255,0.06), transparent 18%),
        radial-gradient(circle at 78% 18%, rgba(59,130,246,0.22), transparent 26%),
        radial-gradient(circle at 30% 84%, rgba(139,92,246,0.20), transparent 28%),
        radial-gradient(circle at 52% 48%, rgba(244,208,128,0.06), transparent 32%),
        linear-gradient(180deg,
            rgba(37,99,235,0.40) 0%,
            rgba(59,130,246,0.30) 22%,
            rgba(79,70,229,0.24) 52%,
            rgba(91,33,182,0.28) 76%,
            rgba(76,29,149,0.38) 100%),
        rgba(10,14,28,0.96);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.06),
        0 18px 44px rgba(2,8,23,0.30),
        0 0 24px rgba(59,130,246,0.08),
        0 0 28px rgba(139,92,246,0.06);
}

.track-card-gradient::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02) 24%, rgba(0,0,0,0.06) 100%),
        linear-gradient(180deg, rgba(59,130,246,0.04), rgba(139,92,246,0.03));
    opacity: 0.95;
}

.track-card-gradient > * {
    position: relative;
    z-index: 1;
}

.track-head-main {
    min-width: 0;
}

.track-mini-genre {
    margin-top: 10px;
    color: #e9dcff;
    font-size: 0.83rem;
    font-weight: 600;
}

.track-mini-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.track-mini-tag {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 9px;
    border-radius: 999px;
    background: rgba(5,6,11,0.34);
    border: 1px solid rgba(255,255,255,0.10);
    color: rgba(246,247,251,0.72);
    font-size: 0.74rem;
    line-height: 1;
}

.track-player-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
}

.track-link-inline {
    white-space: nowrap;
}

.track-footer {
    display: none;
}

@media (max-width: 980px) {
    .latest-featured-taxonomy {
        gap: 8px;
    }

    .track-pill {
        min-height: 30px;
        padding: 0 10px;
        font-size: 0.78rem;
    }

    .track-player-row {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .track-link-inline {
        justify-self: end;
    }
}


/* recent tracks slider only */
.tracks-carousel {
    position: relative;
}

.tracks-carousel-viewport {
    overflow: hidden;
}

.tracks-carousel-track {
    display: flex;
    width: 100%;
    transition: transform 320ms ease;
    will-change: transform;
}

.tracks-carousel-slide {
    flex: 0 0 100%;
    width: 100%;
}

.tracks-grid-two-cols-slider {
    margin: 0;
}

.tracks-carousel-nav {
    position: absolute;
    top: calc(50% - 18px);
    z-index: 5;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    background: rgba(5, 6, 11, 0.56);
    color: #f6f7fb;
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.18);
    cursor: pointer;
}

.tracks-carousel-prev {
    left: -12px;
}

.tracks-carousel-next {
    right: -12px;
}

.tracks-carousel-nav:disabled {
    opacity: 0.35;
    cursor: default;
}

.tracks-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.tracks-carousel-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.22);
}

.tracks-carousel-dot.is-active {
    background: linear-gradient(135deg, rgba(59,130,246,0.95), rgba(139,92,246,0.95));
    box-shadow: 0 0 12px rgba(139,92,246,0.25);
}

@media (max-width: 900px) {
    .tracks-carousel-nav {
        display: none;
    }
}


.music-lower-layout {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(280px, 1fr);
    gap: 18px;
    align-items: start;
}

.music-lower-main {
    min-width: 0;
}

.music-lower-side {
    min-width: 0;
}

.top-tracks-panel {
    padding: 20px;
    background:
        radial-gradient(circle at 20% 16%, rgba(59,130,246,0.18), transparent 26%),
        radial-gradient(circle at 78% 84%, rgba(139,92,246,0.18), transparent 28%),
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.10);
}

.top-tracks-header {
    margin-bottom: 14px;
}

.top-tracks-title {
    margin: 0;
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #f8fbff;
}

.top-tracks-list {
    display: grid;
    gap: 10px;
}

.top-track-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-track-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.top-track-plays {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(5,6,11,0.42);
    border: 1px solid rgba(255,255,255,0.10);
    color: rgba(246,247,251,0.84);
    white-space: nowrap;
    font-weight: 600;
}

.top-track-copy {
    min-width: 0;
}

.top-track-copy h4 {
    margin: 0 0 4px;
    font-size: 0.96rem;
    line-height: 1.28;
    word-break: break-word;
}

.top-track-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
}

@media (max-width: 1180px) {
    .music-lower-layout {
        grid-template-columns: 1fr;
    }
}
