/* ===================== RESET ===================== */
:root {
  --header-height: 120px;
}

main {
  padding-top: var(--header-height);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    background-color: #020617; /* dark blue-black */
    color: #E5E5E5;
    overflow-x: hidden;
    padding-bottom: 80px; /* space for bottom player */
}

/* ===================== LINKS & TEXT ===================== */
a {
    color: #7dd3fc; /* light blue */
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
}

a:hover {
    color: #ffffff;
    opacity: 0.9;
}

h1,
h2,
h3,
h4 {
    font-family: 'Orbitron', Arial, sans-serif;
    letter-spacing: 1px;
}

/* ===================== HEADER / NAV ===================== */
header {
    display: flex;
    align-items: center;
    position: fixed;
    height: var(--header-height);
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(3, 6, 18, 0.75);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(56, 189, 248, 0.25);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 24px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 16px;
}

.logo img {
    height: 115px;
}

/* NAV */
nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav ul li a {
    color: #e5e7eb;
    font-size: 0.9rem;
    text-transform: uppercase;
    padding: 6px 8px;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: #7dd3fc;
    border-bottom: 1px solid #7dd3fc;
}

/* Header socials */
.header-socials {
    display: flex;
    gap: 8px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.header-socials a {
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    color: #cbd5f5;
}

.header-socials a:hover {
    border-color: #38bdf8;
    color: #e0f2fe;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 1.8rem;
  color: #7dd3fc;
  background: rgba(3, 6, 18, 0.65);
  border: 1px solid rgba(56, 189, 248, 0.45);
  border-radius: 10px;
  padding: 6px 10px;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.35);
  transition: all 0.25s ease;
}

.hamburger:hover {
  color: #e0f2fe;
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.75);
}

.hamburger:active {
  transform: scale(0.95);
}

/* ===================== SECTIONS ===================== */
.section {
    min-height: calc(100vh - var(--header-height));
    padding: 80px 20px;
    position: relative;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Background variants */
.section-dark {
    background: radial-gradient(circle at top, #020617, #020617 40%, #000000 100%);
}

.section-alt {
    background: radial-gradient(circle at top, #020617, #020617 60%, #02010f 100%);
}

/* ===================== HERO ===================== */
.hero {
    padding-top: 40px;
    padding-bottom: 40px;
    min-height: calc(100vh - var(--header-height));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(
        ellipse at 50% 0%,
        #020617 0%,
        #020617 45%,
        #000000 100%
    );
}

/* Particle canvas */
#particle-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 0;
    opacity: 0.6;
    pointer-events: none;
}

/* Fog / lights overlay */
.hero-overlay-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(148, 163, 184, 0.14) 0, transparent 45%),
        radial-gradient(circle at 80% 10%, rgba(56, 189, 248, 0.14) 0, transparent 50%),
        radial-gradient(circle at 50% 85%, rgba(15, 23, 42, 0.9) 0, transparent 55%);
    mix-blend-mode: screen;
    opacity: 0.8;
    animation: floatNoise 18s ease-in-out infinite alternate;
}

/* Hero content */
.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

/* Hero text */
.hero-kicker {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #7dd3fc;
    margin-bottom: 8px;
}

.hero-title {
    font-size: clamp(2.8rem, 5.4vw, 4.1rem);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.05;
}

.hero-subtitle {
    font-size: 1rem;
    max-width: 520px;
    line-height: 1.8;
    color: #cbd5f5;
    margin-bottom: 24px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.hero-tags {
    font-size: 0.85rem;
    color: #9ca3af;
}

.hero-note {
    margin-top: 4px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: #94a3b8;
}

.hero-art {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

/* PNG + parallax background container */
.hero-art-frame {
    position: relative;
    padding: 0;
    border-radius: 28px;
    overflow: hidden;
    border: none;
    background: radial-gradient(circle at center, #020617 0%, #020617 40%, #000000 100%);
    display: flex;
    align-items: stretch;
    justify-content: center;
    min-height: 520px;
}

/* Back wall image */
.hero-photo-bg {
    position: absolute;
    inset: 0;
    background-image: url('img/hero_darkold_wall.jpg');
    background-size: cover;
    background-position: center right;
    filter: brightness(0.7) contrast(1.15) saturate(0.9);
    transform: translate3d(0, 0, 0);
    transition: transform 0.3s ease-out;
    z-index: 0;
}

/* Figure layer */
.hero-figure {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 2;
    transform: translate3d(0, 0, 0);
    transition: transform 0.3s ease-out;
}

/* Glow halo */
@keyframes glowPulse {
    0% { opacity: 0.7; filter: blur(85px); }
    100% { opacity: 0.9; filter: blur(95px); }
}

.hero-art-frame::before {
    content: "";
    position: absolute;
    top: -35%;
    left: 50%;
    transform: translateX(-50%);
    width: 220%;
    height: 180%;
    background:
        radial-gradient(circle at 40% 0%, rgba(56, 189, 248, 0.35), transparent 65%),
        radial-gradient(circle at 70% 80%, rgba(20, 40, 80, 0.9), transparent 95%);
    filter: blur(90px);
    opacity: 0.8;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: screen;
    animation: glowPulse 6s ease-in-out infinite alternate;
}

/* Blue fog at the bottom */
.hero-art-frame::after {
    content: "";
    position: absolute;
    bottom: -25%;
    left: 50%;
    width: 200%;
    height: 70%;
    transform: translateX(-50%);
    background:
        radial-gradient(
            ellipse at 50% 100%,
            rgba(56, 189, 248, 0.25) 0%,
            rgba(10, 20, 40, 0.9) 55%,
            transparent 100%
        );
    filter: blur(80px);
    opacity: 0.9;
    mix-blend-mode: lighten;
    pointer-events: none;
    z-index: 1;
}

/* Main hero image */
.hero-art-frame img {
    position: relative;
    z-index: 2;
    display: block;
    height: 100%;
    max-height: 620px;
    width: auto;
    object-fit: contain;
    object-position: center bottom;
    margin-bottom: -4px;
    filter:
        brightness(1.04)
        contrast(1.08)
        drop-shadow(0 0 28px rgba(56, 189, 248, 0.7));
    transition: transform 1.2s ease, filter 0.4s ease;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 88%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 88%, transparent 100%);
}

.hero-art-frame:hover img {
    transform: scale(1.03);
    filter:
        brightness(1.06)
        contrast(1.12)
        drop-shadow(0 0 36px rgba(56, 189, 248, 0.95));
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #9ca3af;
}

.scroll-line {
    width: 1px;
    height: 40px;
    margin: 8px auto 0;
    background: linear-gradient(to bottom, #38bdf8, transparent);
    animation: scrollPulse 1.6s ease-in-out infinite;
}

/* ===================== BUTTONS ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease;
}

.btn-primary {
    background: linear-gradient(120deg, #38bdf8, #6366f1);
    color: #020617;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.8);
}

.btn-primary:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 0 28px rgba(56, 189, 248, 1);
}

.btn-ghost {
    border: 1px solid rgba(148, 163, 184, 0.8);
    color: #e5e7eb;
    background: rgba(15, 23, 42, 0.75);
}

.btn-ghost:hover {
    background: rgba(15, 23, 42, 1);
    transform: translateY(-1px);
}

.btn-mini {
    padding: 8px 14px;
    font-size: 0.75rem;
}

.btn-mini.disabled {
    opacity: 0.35;
    cursor: default;
    box-shadow: none;
}

.btn-link {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ===================== SECTION HEADERS ===================== */
.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header.left {
    text-align: left;
}

.section-title {
  font-size: 1.9rem;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.section-title::before {
  content: "//";
  margin-right: 8px;
  color: var(--ui-text-dim);
}

.section-title::after {
    content: "";
    display: block;
    width: 40%;
    height: 2px;
    margin: 8px auto 0;
    background: linear-gradient(90deg, transparent, #38bdf8, transparent);
}

.section-header.left .section-title::after {
    margin-left: 0;
}

.section-description {
    font-size: 0.95rem;
    color: #9ca3af;
}

/* ===================== MUSIC ===================== */
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.music-card {
    background: radial-gradient(circle at top, #020617, #020617 60%, #020617 100%);
    border-radius: 6px; 
    overflow: hidden;
    border: 1px solid rgba(37, 99, 235, 0.7);
    box-shadow: 0 0 24px rgba(15, 23, 42, 0.9);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.music-card::before {
  content: "AUDIO MODULE";
  position: absolute;
  top: 8px;
  right: 12px;
  font-family: 'Orbitron', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(180, 200, 220, 0.4);
}

.music-card::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 20% 0, rgba(148, 163, 184, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.music-card:hover {
    box-shadow: 0 0 32px rgba(37, 99, 235, 0.95);
    border-color: rgba(56, 189, 248, 0.95);
}

.music-card:hover::after {
    opacity: 1;
}

.music-cover {
    position: relative;
    overflow: hidden;
}

.music-cover img {
    width: 100%;
    display: block;
}

.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: #38bdf8;
    color: #020617;
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.9);
}

.badge-single {
    background: #0ea5e9;
}

.badge-special {
    background: #1d4ed8;
    color: #e5e7eb;
}

.badge-ep {
    background: #4f46e5;
    color: #e5e7eb;
}

.music-info {
    padding: 16px 18px 14px;
}

.music-info h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.music-info p {
    font-size: 0.9rem;
    color: #d1d5db;
    margin-bottom: 10px;
}

.music-meta {
    display: flex;
    gap: 12px;
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 12px;
}

.music-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

/* Embedded playlist */
.music-embed {
    margin-top: 20px;
    text-align: center;
}

.music-embed h3 {
    margin-bottom: 4px;
}

.music-embed p {
    margin-bottom: 12px;
    color: #9ca3af;
    font-size: 0.9rem;
}

.embed-wrapper {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(30, 64, 175, 0.7);
    box-shadow: 0 0 24px rgba(15, 23, 42, 0.95);
}

/* ===================== VIDEOS ===================== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.video-card {
    background: radial-gradient(circle at top, #020617, #020617 70%, #020617);
    border-radius: 16px;
    padding: 16px;
    border: 1px solid rgba(37, 99, 235, 0.8);
    box-shadow: 0 0 20px rgba(15, 23, 42, 0.95);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 28px rgba(56, 189, 248, 0.9);
    border-color: rgba(56, 189, 248, 1);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 10px;
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.video-card h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.video-card p {
    font-size: 0.85rem;
    color: #cbd5f5;
}

/* ===================== ABOUT ===================== */
.about-section {
    display: flex;
    align-items: center;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 32px;
}

.about-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #e5e7eb;
}

.about-highlight {
    margin: 16px 0;
    border-left: 3px solid #38bdf8;
    padding-left: 14px;
    font-style: italic;
    color: #bae6fd;
}

.about-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-card {
    background: radial-gradient(circle at top, #0b1120, #020617);
    border-radius: 16px;
    border: 1px solid rgba(37, 99, 235, 0.9);
    box-shadow: 0 0 24px rgba(15, 23, 42, 0.95);
    padding: 1px;
}

.about-card-inner {
    background: radial-gradient(circle at top, #020617, #020617);
    border-radius: 16px;
    padding: 18px 18px 14px;
}

.about-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #bfdbfe;
}

.about-card ul {
    list-style: none;
    font-size: 0.9rem;
    color: #e5e7eb;
}

.about-card ul li {
    margin-bottom: 6px;
    position: relative;
    padding-left: 16px;
}

.about-card ul li::before {
    content: "▸";
    position: absolute;
    left: 0;
    top: 0;
    color: #38bdf8;
    font-size: 0.8rem;
}

/* Members */
.about-members {
    margin-top: 10px;
}

.about-members h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 6px;
    color: #bfdbfe;
}

.about-members ul {
    list-style: none;
    font-size: 0.85rem;
    color: #e5e7eb;
}

.about-members li {
    margin-bottom: 4px;
}

.about-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.meta-pill {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 999px;
    padding: 6px 10px;
    border: 1px solid rgba(148, 163, 184, 0.85);
    color: #e5e7eb;
}

/* Centered members block */
.about-members.centered {
    text-align: center;
    margin-top: 3rem;
}

.about-members.centered h3 {
    font-size: 1.6rem;
    letter-spacing: 1px;
    color: #9bd1ff;
    margin-bottom: 2rem;
}

.members-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
}

.member-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px rgba(0, 160, 255, 0.3);
}

.member-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(0, 160, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 160, 255, 0.2);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%) brightness(1.1);
}

.member-card h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-card p {
    font-size: 0.9rem;
    color: #aaa;
}

.member-photo:hover {
    box-shadow:
        0 0 25px rgba(0, 200, 255, 0.5),
        0 0 40px rgba(0, 100, 255, 0.3);
    transform: scale(1.05);
}

/* ===================== GIGS ===================== */
.gigs-section {
    position: relative;
}

.gigs-timeline {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto 24px;
}

.gig-card {
    position: relative;
    padding: 16px 18px;
    border-radius: 14px;
    background: radial-gradient(circle at top, #020617, #020617 70%, #020617);
    border: 1px solid rgba(37, 99, 235, 0.85);
    box-shadow: 0 0 20px rgba(15, 23, 42, 0.95);
}

.gig-next {
    border-color: #38bdf8;
    box-shadow: 0 0 26px rgba(56, 189, 248, 0.95);
}

.gig-badge {
    position: absolute;
    top: -10px;
    left: 16px;
    padding: 2px 10px;
    border-radius: 999px;
    background: #38bdf8;
    color: #020617;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.gig-main h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.gig-meta {
    font-size: 0.8rem;
    color: #9ca3af;
    margin-bottom: 6px;
}

.gig-desc {
    font-size: 0.85rem;
    color: #e5e7eb;
}

.gig-actions {
    margin-top: 8px;
}

.gigs-note {
    text-align: center;
    font-size: 0.9rem;
    color: #cbd5f5;
}

/* ===================== FOOTER ===================== */
.footer {
    background: #020617;
    border-top: 1px solid rgba(30, 64, 175, 0.8);
    padding: 24px 20px 12px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto 12px;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.footer-col p,
.footer-col li {
    font-size: 0.85rem;
    color: #9ca3af;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 4px;
}

.footer-bottom {
    text-align: center;
    font-size: 0.75rem;
    color: #6b7280;
}

/* ===================== PRELOADER ===================== */
#preloader {
    position: fixed;
    inset: 0;
    background-color: #020617;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#preloader-content {
    position: relative;
    width: 90%;
    max-width: 720px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-bar {
    position: relative;
    width: 100%;
    height: 46px;
    background: rgba(15, 23, 42, 0.95);
    clip-path: polygon(2% 0, 98% 0, 100% 50%, 98% 100%, 2% 100%, 0 50%);
    border: 2px solid #38bdf8;
    overflow: hidden;
    box-shadow:
        0 0 20px rgba(56, 189, 248, 0.5) inset,
        0 0 25px rgba(37, 99, 235, 0.7);
}

.preloader-fill {
    position: absolute;
    inset: 0;
    width: 0%;
    background: linear-gradient(90deg, #020617, #38bdf8);
    z-index: 0;
}

.preloader-flash {
    position: absolute;
    inset: 0;
    width: 0%;
    background: linear-gradient(90deg, rgba(248, 250, 252, 0.8), transparent);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

#preloader-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: #e5e7eb;
    text-shadow: 0 0 8px #020617;
    white-space: nowrap;
    z-index: 2;
}

/* Sound button */
#sound-button {
    position: fixed;
    bottom: 86px;
    right: 26px;
    background: rgba(37, 99, 235, 0.95);
    border: none;
    border-radius: 999px;
    width: 56px;
    height: 56px;
    font-size: 1.6rem;
    color: #e5e7eb;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.9);
    z-index: 10000;
    backdrop-filter: blur(4px);
    transition: opacity 0.3s ease, transform 0.2s ease;
}

#sound-button:hover {
    transform: translateY(-2px);
}

/* Hide preloader */
.preloader-hidden {
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
}

/* ===================== BOTTOM PLAYER ===================== */
.bottom-player {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 950;
    background: rgba(3, 7, 18, 0.96);
    border-top: 1px solid rgba(37, 99, 235, 0.9);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.9);
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr) minmax(0, 1.2fr);
    gap: 16px;
    align-items: center;
    padding: 10px 18px;
}

.bottom-player-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bottom-player-cover {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(37, 99, 235, 0.8);
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.8);
    flex-shrink: 0;
}

.bottom-player-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bottom-player-info {
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
}

.bottom-player-track {
    font-weight: 600;
    color: #e5e7eb;
}

.bottom-player-artist {
    color: #9ca3af;
    font-size: 0.75rem;
}

.bottom-player-center {
    display: flex;
    align-items: center;
    gap: 10px;
}

#bottom-play {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: none;
    background: #38bdf8;
    color: #020617;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 14px rgba(56, 189, 248, 0.9);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

#bottom-play:hover {
    transform: translateY(-1px) scale(1.03);
    box-shadow: 0 0 20px rgba(56, 189, 248, 1);
}

#bottom-progress {
    flex: 1;
    appearance: none;
    height: 4px;
    border-radius: 999px;
    background: rgba(31, 41, 55, 1);
    outline: none;
}

#bottom-progress::-webkit-slider-thumb {
    appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #38bdf8;
    box-shadow: 0 0 8px rgba(56, 189, 248, 0.9);
    cursor: pointer;
}

#bottom-progress::-moz-range-thumb {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #38bdf8;
    box-shadow: 0 0 8px rgba(56, 189, 248, 0.9);
    cursor: pointer;
}

.bottom-player-right {
    text-align: right;
    font-size: 0.8rem;
}

.bottom-player-link {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
}

/* ===================== GLITCH TITLE ===================== */
.glitch-title {
    position: relative;
}

.glitch-title::before,
.glitch-title::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    opacity: 0.22;
    mix-blend-mode: screen;
    pointer-events: none;
}

.glitch-title::before {
    transform: translate3d(-1px, 0, 0);
    text-shadow: -1px 0 #0ea5e9;
}

.glitch-title::after {
    transform: translate3d(1px, 0, 0);
    text-shadow: 1px 0 #1d4ed8;
}

@media (prefers-reduced-motion: no-preference) {
    .glitch-title {
        animation: heroGlow 4s ease-in-out infinite alternate;
    }

    @keyframes heroGlow {
        0% {
            text-shadow:
                0 0 16px rgba(56, 189, 248, 0.5),
                0 0 28px rgba(37, 99, 235, 0.5);
        }
        100% {
            text-shadow:
                0 0 22px rgba(56, 189, 248, 0.8),
                0 0 36px rgba(37, 99, 235, 0.7);
        }
    }
}

/* ===================== ANIMATIONS ===================== */
@keyframes floatNoise {
    0% {
        transform: translate3d(0, 0, 0);
        opacity: 0.6;
    }
    50% {
        transform: translate3d(-10px, 8px, 0);
        opacity: 0.8;
    }
    100% {
        transform: translate3d(6px, -4px, 0);
        opacity: 0.5;
    }
}

@keyframes scrollPulse {
    0% {
        transform: translateY(0);
        opacity: 0.8;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.3;
    }
    100% {
        transform: translateY(0);
        opacity: 0.8;
    }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
    .hero {
        min-height: calc(100vh - var(--header-height));
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .hero-text {
        order: 1;
    }

    .hero-art {
        order: 2;
        max-width: 520px;
        margin: 0 auto;
    }

    .hero-art-frame {
        min-height: 420px;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .bottom-player {
        grid-template-columns: minmax(0, 1.7fr) minmax(0, 2.3fr);
    }

    .bottom-player-right {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .music-grid,
    .video-grid {
        gap: 18px;
    }

    .gigs-timeline {
        gap: 12px;
    }

    .bottom-player {
        grid-template-columns: minmax(0, 1fr);
        row-gap: 6px;
    }

    .bottom-player-center {
        width: 100%;
    }
}
/* ===================== MOBILE (≤768px) ===================== */
@media (max-width: 768px) {

  /* header */
  :root {
    --header-height: 84px;
  }

  header {
    padding: 4px 0;
  }

  .header-container {
    padding-inline: 16px;
  }

  .logo img {
    height: 72px;
  }

  .header-socials {
    display: none;
  }

  /* nav */
  .hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: calc(var(--header-height) - 8px);
    right: 16px;
    padding: 14px 16px;
    background: rgba(3, 6, 18, 0.95);
    border-radius: 14px;
    border: 1px solid rgba(56, 189, 248, 0.4);
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    min-width: 200px;
  }

  nav ul.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }

  nav ul li {
    padding: 8px 18px;
  }

  nav ul li a {
    display: block;
    font-size: 0.95rem;
  }

  /* sections */
  .section {
    padding: 16px 20px;
  }

  /* hero — FIX REAL DEL PROBLEMA */
  .hero {
    min-height: auto;
    padding-top: 32px;
    padding-bottom: 24px;
    align-items: flex-start;
  }

  .hero-art-frame {
    min-height: 320px;
  }

  .hero-art-frame img {
    max-height: 360px;
  }

  .scroll-indicator {
    display: none;
  }

  /* footer */
  .footer-inner {
    grid-template-columns: 1fr;
  }

  /* sound button */
  #sound-button {
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
    bottom: 90px;
  }

  /* bottom player */
  .bottom-player {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    padding-inline: 12px;
    gap: 10px;
  }

  .bottom-player-cover {
    width: 40px;
    height: 40px;
  }
}
/* ===================== COOKIE BANNER ===================== */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 96px; /* por encima del bottom player */
  transform: translateX(-50%);
  max-width: 960px;
  width: calc(100% - 32px);
  padding: 14px 18px;
  background: rgba(3, 6, 18, 0.95);
  border: 1px solid rgba(56, 189, 248, 0.5);
  border-radius: 14px;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.8rem;
  color: #cbd5f5;
  z-index: 1100;
}

.cookie-banner p {
  margin: 0;
  line-height: 1.4;
}

.cookie-banner button {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cookie-banner {
    bottom: 104px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
/* ========================================================= */
/* =============== AOD SYSTEM UI LAYER ===================== */
/* ========================================================= */

:root {
  --ui-bg: rgba(6, 10, 24, 0.92);
  --ui-border: rgba(120, 160, 200, 0.35);
  --ui-border-strong: rgba(120, 180, 255, 0.6);
  --ui-text-dim: rgba(180, 200, 220, 0.6);
  --ui-accent: #7dd3fc;
  --ui-alert: #c02626;
}

/* Base panel */
.ui-panel {
  background: var(--ui-bg);
  border: 1px solid var(--ui-border);
  box-shadow:
    inset 0 0 20px rgba(56, 189, 248, 0.08),
    0 0 28px rgba(0, 0, 0, 0.85);
  position: relative;
}

/* Panel header strip */
.ui-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--ui-border-strong),
    transparent
  );
  opacity: 0.6;
}

.hero-text,
.hero-figure,
.hero-photo-bg,
.hero-overlay-particles,
#particle-canvas {
  will-change: transform;
}


/* System label (small UI text) */
.ui-label {
  font-family: 'Orbitron', monospace;
  font-size: 0.65rem;
  letter-spacing: 0

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background-image: url("img/noise.png");
  opacity: 0.035;
  mix-blend-mode: overlay;
  animation: noiseMove 1.5s steps(2) infinite;
}

@keyframes noiseMove {
  0% { transform: translate(0,0); }
  100% { transform: translate(-10%, -10%); }
}

