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

:root {
  --bg:        #080505;
  --surface:   #0f0808;
  --card:      #130a0a;
  --border:    rgba(220, 40, 40, 0.2);
  --accent1:   #e81515;
  --accent2:   #ff6600;
  --glow1:     rgba(232, 21, 21, 0.38);
  --glow2:     rgba(255, 102, 0, 0.28);
  --text:      #f0e8e8;
  --muted:     #a07878;
  --font-head: 'Bebas Neue', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --font-title: 'Orbitron', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("../noise.svg");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(7, 7, 15, 0.7);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  z-index: 2;
}

/* ── GLOBAL STARFIELD CANVAS ── */
#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ── NEBULA ORBS — fixed, full viewport roaming ── */
.orbs-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: screen;
}

/* Big red — clockwise orbit */
.orb1 {
  width: 55vw; height: 55vw;
  background: radial-gradient(circle, rgba(220,20,20,0.6) 0%, rgba(180,0,0,0.28) 45%, transparent 70%);
  filter: blur(70px);
  top: -15vh; left: -15vw;
  animation: orbit1 28s ease-in-out infinite, hue-shift 12s linear infinite;
}

/* Orange — counter-clockwise */
.orb2 {
  width: 45vw; height: 45vw;
  background: radial-gradient(circle, rgba(255,110,0,0.55) 0%, rgba(255,60,0,0.22) 50%, transparent 70%);
  filter: blur(80px);
  top: 60vh; left: 65vw;
  animation: orbit2 22s ease-in-out infinite, hue-shift 18s linear infinite reverse;
}

/* Pink/magenta — diagonal sweep */
.orb3 {
  width: 40vw; height: 40vw;
  background: radial-gradient(circle, rgba(255,0,120,0.45) 0%, rgba(200,0,80,0.2) 50%, transparent 70%);
  filter: blur(90px);
  top: -10vh; left: 70vw;
  animation: orbit3 32s ease-in-out infinite, hue-shift 9s linear infinite;
}

/* Crimson — figure-8 center roam */
.orb4 {
  width: 38vw; height: 38vw;
  background: radial-gradient(circle, rgba(160,0,0,0.4) 0%, transparent 65%);
  filter: blur(60px);
  top: 35vh; left: 30vw;
  animation: orbit4 18s ease-in-out infinite, hue-shift 22s linear infinite reverse;
}

/* Gold accent — bottom sweep */
.orb5 {
  width: 30vw; height: 30vw;
  background: radial-gradient(circle, rgba(255,190,0,0.35) 0%, rgba(255,120,0,0.15) 55%, transparent 70%);
  filter: blur(75px);
  top: 75vh; left: -10vw;
  animation: orbit5 24s ease-in-out infinite, hue-shift 15s linear infinite;
}

@keyframes orbit1 {
  0%   { transform: translate(0vw,   0vh);  }
  20%  { transform: translate(80vw,  5vh);  }
  40%  { transform: translate(70vw,  70vh); }
  60%  { transform: translate(20vw,  80vh); }
  80%  { transform: translate(-5vw,  40vh); }
  100% { transform: translate(0vw,   0vh);  }
}
@keyframes orbit2 {
  0%   { transform: translate(0vw,   0vh);  }
  25%  { transform: translate(-50vw,-50vh); }
  50%  { transform: translate(-60vw, 10vh); }
  75%  { transform: translate(-10vw, 20vh); }
  100% { transform: translate(0vw,   0vh);  }
}
@keyframes orbit3 {
  0%   { transform: translate(0vw,   0vh);  }
  20%  { transform: translate(-60vw, 20vh); }
  40%  { transform: translate(-70vw, 80vh); }
  60%  { transform: translate(-20vw, 90vh); }
  80%  { transform: translate(10vw,  40vh); }
  100% { transform: translate(0vw,   0vh);  }
}
@keyframes orbit4 {
  0%   { transform: translate(0vw,   0vh);  }
  25%  { transform: translate(30vw, -25vh); }
  50%  { transform: translate(-20vw,-10vh); }
  75%  { transform: translate(-25vw, 30vh); }
  100% { transform: translate(0vw,   0vh);  }
}
@keyframes orbit5 {
  0%   { transform: translate(0vw,  0vh);  }
  30%  { transform: translate(50vw,-30vh); }
  60%  { transform: translate(80vw, 10vh); }
  80%  { transform: translate(40vw, 20vh); }
  100% { transform: translate(0vw,  0vh);  }
}

.hero-tag {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 1.2rem;
  opacity: 0.85;
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.8rem, 9vw, 7rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #fff 10%, #ff6600 40%, #e81515 65%, #ff007a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  animation: hue-shift 10s linear infinite;
}

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

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--muted);
  font-weight: 300;
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #e81515, #ff6600, #ff007a);
  color: #fff;
  box-shadow: 0 0 25px var(--glow1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px var(--glow1);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.04);
  transform: translateY(-2px);
}

/* ── FEATURED PLAYER ── */
#player {
  position: relative;
  z-index: 2;
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent1);
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
  text-align: center;
}

.player-wrap {
  width: 100%;
  max-width: 700px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  animation: neon-glow-bg 6s linear infinite;
  animation-delay: -3s;
}

.player-wrap iframe {
  display: block;
  width: 100%;
  border: none;
  position: relative;
  z-index: 2;
}

/* ── DISCOGRAPHY ── */
#discography {
  position: relative;
  z-index: 2;
  padding: 5rem 2rem 7rem;
  max-width: 1200px;
  margin: 0 auto;
}

.disc-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.disc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

@keyframes spin-border {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes neon-glow-bg {
  0%   { box-shadow: 0 0 10px 2px #e81515, 0 0 25px 5px rgba(232,21,21,0.25); }
  20%  { box-shadow: 0 0 10px 2px #ff6600, 0 0 25px 5px rgba(255,102,0,0.25); }
  40%  { box-shadow: 0 0 10px 2px #ffcc00, 0 0 25px 5px rgba(255,204,0,0.25); }
  60%  { box-shadow: 0 0 10px 2px #ff007a, 0 0 25px 5px rgba(255,0,122,0.25); }
  80%  { box-shadow: 0 0 10px 2px #aa00ff, 0 0 25px 5px rgba(170,0,255,0.25); }
  100% { box-shadow: 0 0 10px 2px #e81515, 0 0 25px 5px rgba(232,21,21,0.25); }
}

.disc-card {
  background: var(--card);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s;
  animation: neon-glow-bg 6s linear infinite;
}

.disc-card:nth-child(2) { animation-delay: -1.2s; }
.disc-card:nth-child(3) { animation-delay: -2.4s; }
.disc-card:nth-child(4) { animation-delay: -3.6s; }
.disc-card:nth-child(5) { animation-delay: -4.8s; }

.disc-card iframe,
.disc-card .disc-info {
  position: relative;
  z-index: 2;
}

.disc-card:hover { transform: translateY(-6px); }

.neon-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
  border-radius: 18px;
  background: transparent;
}

.disc-card iframe {
  display: block;
  width: 100%;
  border: none;
}

.disc-info {
  padding: 1.1rem 1.3rem 1.3rem;
  background: var(--card);
  position: relative;
  z-index: 3;
}

.disc-type {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent2);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.disc-name {
  font-family: var(--font-head);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.disc-year {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── VAULT / UNRELEASED ── */
#vault {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 5rem 1.5rem 4rem;
  text-align: center;
}

.vault-note {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-top: 0.6rem;
  margin-bottom: 3rem;
}

.vault-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vault-track {
  display: grid;
  grid-template-columns: 2.5rem 1fr auto auto;
  align-items: center;
  gap: 1.2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.2rem 1.4rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.vault-track:hover {
  border-color: rgba(232, 21, 21, 0.45);
  box-shadow: 0 0 18px rgba(232, 21, 21, 0.12);
}

.vault-num {
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: var(--accent1);
  opacity: 0.7;
  line-height: 1;
}

.vault-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
  text-align: left;
}

.vault-name {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vault-progress-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.vault-bar {
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 99px;
  cursor: pointer;
  position: relative;
}

.vault-bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  transition: width 0.1s linear;
  pointer-events: none;
}

.vault-times {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.vault-play {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(232,21,21,0.35);
  transition: transform 0.15s, box-shadow 0.15s;
}

.vault-play:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(232,21,21,0.55);
}

.vault-play svg {
  width: 1.1rem;
  height: 1.1rem;
}

.vi-pause { display: none; }
.vault-track.playing .vi-play  { display: none; }
.vault-track.playing .vi-pause { display: block; }

.vault-dl {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--muted);
  flex-shrink: 0;
  transition: color 0.2s, border-color 0.2s;
}

.vault-dl:hover {
  color: var(--accent2);
  border-color: var(--accent2);
}

.vault-dl svg {
  width: 1rem;
  height: 1rem;
}

@media (max-width: 520px) {
  .vault-track {
    grid-template-columns: 2rem 1fr auto auto;
    gap: 0.8rem;
    padding: 1rem 1rem;
  }
  .vault-num { font-size: 0.9rem; }
  .vault-play { width: 2.2rem; height: 2.2rem; }
}

/* ── ABOUT ── */
#about {
  position: relative;
  z-index: 2;
  padding: 5rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-inner {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text .section-title { text-align: left; }

.about-body {
  color: var(--muted);
  line-height: 1.85;
  font-size: 1rem;
  font-weight: 300;
}

.about-body strong {
  color: var(--text);
  font-weight: 600;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-item {
  padding: 1.4rem 1.6rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
  animation: neon-glow-bg 6s linear infinite;
}
.stat-item:nth-child(2) { animation-delay: -2s; }
.stat-item:nth-child(3) { animation-delay: -4s; }
.stat-item:hover { transform: translateY(-4px); }

.stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent1), var(--accent2));
}

.stat-item .stat-num,
.stat-item .stat-label {
  position: relative;
  z-index: 2;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.08em;
}

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 2;
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 2rem;
  letter-spacing: 0.1em;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.social-links a:hover {
  background: rgba(232, 21, 21, 0.15);
  border-color: var(--accent1);
  transform: translateY(-2px);
}

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

/* ── DIVIDER ── */
.glow-divider {
  width: 100%;
  height: 240px;
  position: relative;
  overflow: visible;
  margin: 0;
}

.glow-divider::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent1), var(--accent2), transparent);
  opacity: 0.35;
}

.glow-divider .neon-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  background: transparent;
  border-radius: 0;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── LANGUAGE SWITCHER ── */
.lang-switcher {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.4rem 0.85rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-family: var(--font-body);
}

.lang-btn:hover {
  border-color: var(--accent1);
  background: rgba(232, 21, 21, 0.1);
}

.lang-btn svg { opacity: 0.7; }

.lang-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  min-width: 160px;
  z-index: 999;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.lang-dropdown.open { display: block; }

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  cursor: pointer;
  color: var(--muted);
  transition: background 0.15s, color 0.15s;
}

.lang-option:hover, .lang-option.active {
  background: rgba(232, 21, 21, 0.12);
  color: var(--text);
}

.lang-option.active { color: var(--accent1); font-weight: 600; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-text .section-title { text-align: center; }
}

/* ── HAMBURGER BUTTON ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 13px 10px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 60px;
    left: 0; right: 0;
    background: rgba(8, 5, 5, 0.97);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 0.5rem 0 1rem;
    backdrop-filter: blur(14px);
    z-index: 999;
  }
  .nav-links.mobile-open { display: flex; }
  .nav-links.mobile-open li { display: list-item; }
  .nav-links li { border-bottom: 1px solid rgba(220,40,40,0.12); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { display: block; padding: 1rem 2rem; font-size: 1rem; letter-spacing: 0.06em; }
}

/* ── FUSION TEASER (main page) ── */
#fusion-teaser {
  padding: 6rem 4rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.fusion-teaser-sub {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 520px;
  margin: 0.8rem auto 2.5rem;
}

.fusion-teaser-wrap {
  position: relative;
  max-width: 640px;
  margin: 0 auto 2rem;
}

.fusion-teaser-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.fusion-teaser-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
  border-radius: 0 0 14px 14px;
}

.fusion-teaser-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  #fusion-teaser { padding: 4rem 1.5rem; }
}

/* ── COOKIE NOTICE ── */
#cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1rem 2rem;
  background: rgba(13, 6, 6, 0.96);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(10px);
  animation: cookie-slide-up 0.35s ease;
}
@keyframes cookie-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
#cookie-bar.cookie-bar-hide {
  animation: cookie-slide-down 0.35s ease forwards;
}
@keyframes cookie-slide-down {
  to { transform: translateY(100%); opacity: 0; }
}
.cookie-text {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
}
.cookie-btn {
  flex-shrink: 0;
  padding: 0.5rem 1.4rem;
  background: linear-gradient(135deg, #e81515, #ff6600);
  border: none;
  border-radius: 50px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 20px rgba(232, 21, 21, 0.3);
}
.cookie-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(232, 21, 21, 0.5);
}
@media (max-width: 600px) {
  #cookie-bar { flex-direction: column; align-items: flex-start; padding: 1.2rem 1.5rem; }
}

