/* ── Self-hosted Berkshire Swash (DSGVO-konform) ─────────────────────── */
@font-face {
  font-family: 'Berkshire Swash';
  src: url('../fonts/BerkshireSwash-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ── Design Tokens: Nebellichter ─────────────────────────────────────── */
:root {
  --bg:              #EFF4FB;
  --bg-2:            #E2EAF6;
  --bg-section:      rgba(59, 189, 224, 0.04);
  --ink:             #617bda;
  --ink-muted:       #4A5778;
  --ink-faint:       #8896B3;
  --flux-cyan:       #3BBDE0;
  --flux-cyan-20:    rgba(59, 189, 224, 0.20);
  --flux-cyan-10:    rgba(59, 189, 224, 0.10);
  --peach:           #CF7E5D;
  --botanical:       #5B8F6E;
  --amber:           #C4903E;
  --lavender:        #7B68BE;
  --white:           #FFFFFF;
  --card-bg:         rgba(161, 187, 221, 0.822);
  --card-border:     rgba(59, 189, 224, 0.20);
  --shadow-soft:     0 4px 20px rgba(25, 37, 80, 0.07);
  --shadow-lift:     0 12px 40px rgba(25, 37, 80, 0.13);
}

/* ── Base ─────────────────────────────────────────────────────────────── */
body {
  font-family: 'Crimson Pro', serif;
  background-color: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── Font Utilities ───────────────────────────────────────────────────── */
.font-magic   { font-family: 'Cinzel', serif; }
.font-organic { font-family: 'Crimson Pro', serif; }
.font-book    { font-family: "Berkshire Swash", serif; font-weight: 400; font-style: normal; }

/* ── Flux Pulse Animation ─────────────────────────────────────────────── */
@keyframes flux-pulse {
  0%, 100% { box-shadow: 0 0 10px 2px rgba(59, 189, 224, 0.20), 0 0 0 0 rgba(59, 189, 224, 0); }
  50%       { box-shadow: 0 0 22px 6px rgba(59, 189, 224, 0.42), 0 0 0 5px rgba(59, 189, 224, 0.07); }
}

@keyframes flux-line {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

@keyframes float-seed {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  20%  { opacity: 0.4; }
  100% { transform: translateY(-100vh) translateX(30px); opacity: 0; }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40%  { transform: translateY(-10px); }
  60%  { transform: translateY(-5px); }
}

@keyframes sw-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* ── Tailwind Dark-Color Overrides ────────────────────────────────────── */
/* Override dark palette utilities from the templates */
[class*="text-emerald-100"]               { color: var(--ink-muted) !important; }
[class*="text-slate-3"],
[class*="text-slate-4"]                   { color: var(--ink-muted) !important; }
[class*="text-slate-5"]                   { color: var(--ink-faint) !important; }

/* Section backgrounds */
[class*="bg-emerald-950"]                 { background-color: rgba(91,143,110,0.06) !important; }
[class*="bg-slate-900\/3"]               { background-color: rgba(59,189,224,0.05) !important; }
.bg-slate-900                             { background-color: var(--bg-2) !important; }
[class*="bg-green-900"]                   { background-color: rgba(91,143,110,0.10) !important; }
[class*="bg-purple-900"]                  { background-color: rgba(123,104,190,0.07) !important; }

/* ── Navigation ───────────────────────────────────────────────────────── */
nav.relative {
  background: rgba(239, 244, 251, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--card-border);
}

nav span,
nav a {
  color: var(--ink-muted);
}

nav .font-organic,
nav .font-semibold {
  color: var(--ink);
}

nav a:hover {
  color: var(--flux-cyan) !important;
}

/* Desktop nav links */
.nav-links a {
  color: var(--ink-muted);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--flux-cyan) !important;
}

/* Mobile fullscreen menu */
#mobile-menu {
  background: rgba(239, 244, 251, 0.97) !important;
  backdrop-filter: blur(24px);
}

#mobile-menu a {
  color: var(--ink) !important;
  transition: color 0.2s ease;
}

#mobile-menu a:hover {
  color: var(--flux-cyan) !important;
}

#mobile-menu button {
  color: var(--ink-muted) !important;
}

#mobile-menu button:hover {
  color: var(--ink) !important;
}

#mobile-menu .border-slate-800 {
  border-color: rgba(59, 189, 224, 0.2) !important;
}

#mobile-menu p {
  color: var(--ink-faint) !important;
}

/* Mobile hamburger button */
#mobile-menu-button {
  color: var(--ink) !important;
}

#mobile-menu-button:hover {
  color: var(--flux-cyan) !important;
}

/* ── Glass Panels & Cards ─────────────────────────────────────────────── */
.glass-panel {
  background: var(--card-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--card-border);
  border-radius: 40px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.glass-panel:hover {
  border-color: rgba(59, 189, 224, 0.38);
  box-shadow: var(--shadow-lift);
}

.glass-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(59, 189, 224, 0.30);
  border-radius: 40px;
  box-shadow: 0 4px 24px rgba(25, 37, 80, 0.10), 0 1px 4px rgba(59, 189, 224, 0.08);
  transition: all 0.3s ease;
}

.glass-card:hover {
  border-color: rgba(59, 189, 224, 0.50);
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 40px rgba(25, 37, 80, 0.14), 0 0 16px rgba(59, 189, 224, 0.12);
}

.glass {
  background: rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(12px);
}

/* ── Hero ─────────────────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  background-image:
    linear-gradient(to bottom, rgba(239, 244, 251, 0.60), rgba(239, 244, 251, 1)),
    url('/static/infinityminds/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
}

/* ── Creature & Workshop Cards ────────────────────────────────────────── */
.creature-card {
  background: rgba(255, 255, 255, 0.60);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(59, 189, 224, 0.18);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.creature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 189, 224, 0.42);
  box-shadow: 0 0 28px rgba(59, 189, 224, 0.18), var(--shadow-lift);
  animation: flux-pulse 2.5s ease-in-out infinite;
}

.workshop-card {
  transition: all 0.3s ease;
}

.workshop-card:hover {
  animation: flux-pulse 2.5s ease-in-out infinite;
}

/* ── Reifung Section (Metamorphose der Kreaturen) ─────────────────────── */
.reifung-section {
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--bg) 0%, rgba(59, 189, 224, 0.05) 50%, var(--bg) 100%);
}

.reifung-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(59, 189, 224, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.reifung-section__header {
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.reifung-section__header h2 {
  font-size: 2.5rem;
  font-family: 'Cinzel', serif;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.reifung-section__header p {
  color: var(--ink-faint);
  font-size: 1.05rem;
}

.reifung-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 860px;
  margin: 3rem auto 0;
  position: relative;
}

/* Connecting line between stages */
.reifung-track::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 80px;
  right: 80px;
  height: 2px;
  background: linear-gradient(
    to right,
    var(--amber)    0%,
    var(--botanical) 33%,
    var(--flux-cyan) 66%,
    var(--lavender) 100%
  );
  opacity: 0.45;
  z-index: 0;
  animation: flux-line 4s ease-in-out infinite;
}

.reifung-stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 0.75rem;
}

.reifung-stage__orb {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.8rem;
  position: relative;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  border: 2px solid transparent;
  transition: all 0.4s ease;
}

.reifung-stage--glimmkorn .reifung-stage__orb {
  border-color: rgba(196, 144, 62, 0.45);
  background: linear-gradient(135deg, #FFF9EE, #FFF0D0);
}

.reifung-stage--lichtling .reifung-stage__orb {
  border-color: rgba(91, 143, 110, 0.45);
  background: linear-gradient(135deg, #EDF5F0, #D8EDE3);
}

.reifung-stage--sinnsknospe .reifung-stage__orb {
  border-color: rgba(59, 189, 224, 0.45);
  background: linear-gradient(135deg, #E8F7FC, #CCECF8);
}

.reifung-stage--lichtbluete .reifung-stage__orb {
  border-color: rgba(123, 104, 190, 0.45);
  background: linear-gradient(135deg, #F0EEF9, #DDD9F4);
  animation: flux-pulse 3.2s ease-in-out infinite;
}

.reifung-stage:hover .reifung-stage__orb {
  transform: scale(1.12);
  box-shadow: 0 10px 28px rgba(25, 37, 80, 0.16);
}

.reifung-stage__icon {
  font-size: 2rem;
  line-height: 1;
  display: block;
}

.reifung-stage__name {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

.reifung-stage__label {
  font-size: 0.68rem;
  font-family: 'Crimson Pro', serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.4rem;
}

.reifung-stage__desc {
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.55;
  max-width: 130px;
}

/* ── FAQ ──────────────────────────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid rgba(59, 189, 224, 0.18);
  transition: all 0.3s ease;
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  color: var(--ink);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

.faq-item.active .chevron {
  transform: rotate(180deg);
  color: var(--flux-cyan);
}

/* ── Floating Seeds ───────────────────────────────────────────────────── */
.floating-seed {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--flux-cyan);
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.22;
  animation: float-seed 20s infinite linear;
}

/* ── Buttons ──────────────────────────────────────────────────────────── */
.btn-glow {
  box-shadow: 0 0 18px rgba(59, 189, 224, 0.35);
  transition: all 0.3s ease;
}

.btn-glow:hover {
  box-shadow: 0 0 32px rgba(59, 189, 224, 0.55);
  transform: scale(1.04);
}

.btn-flux {
  background: var(--flux-cyan);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  font-family: 'Cinzel', serif;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: flux-pulse 3.5s ease-in-out infinite;
}

.btn-flux:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 24px rgba(59, 189, 224, 0.4);
}

/* ── Step Indicators ──────────────────────────────────────────────────── */
.step-indicator {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
  border: 2px solid rgba(59, 189, 224, 0.3);
  color: var(--ink-muted);
  background: rgba(255, 255, 255, 0.7);
}

.step-active {
  border-color: var(--flux-cyan);
  background: var(--flux-cyan);
  color: white;
  box-shadow: 0 0 14px rgba(59, 189, 224, 0.45);
  animation: flux-pulse 2.5s ease-in-out infinite;
}

.step-pill {
  background: rgba(59, 189, 224, 0.08);
  padding: 2px 10px;
  border-radius: 8px;
  font-size: 0.65rem;
  border: 1px solid rgba(59, 189, 224, 0.20);
  color: var(--ink-muted);
}

/* ── Category & Creature Badges ───────────────────────────────────────── */
.category-pill {
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(59, 189, 224, 0.10);
  color: var(--flux-cyan);
  border: 1px solid rgba(59, 189, 224, 0.25);
}

.creature-badge {
  background: rgba(59, 189, 224, 0.08);
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid rgba(59, 189, 224, 0.18);
  color: var(--ink-muted);
}

.type-badge {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(59, 189, 224, 0.08);
  color: var(--ink-faint);
}

/* ── Text & Background Utilities ──────────────────────────────────────── */
.text-gradient {
  background: linear-gradient(to right, var(--flux-cyan), var(--lavender));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glow-text {
  text-shadow: 0 0 18px rgba(59, 189, 224, 0.35);
}

.bg-organic-glow {
  background: radial-gradient(circle at 50% 50%, rgba(59, 189, 224, 0.05) 0%, rgba(239, 244, 251, 0) 70%);
}

.bg-mesh {
  background-image:
    radial-gradient(at 0% 0%,   rgba(59, 189, 224, 0.06) 0, transparent 50%),
    radial-gradient(at 100% 100%, rgba(123, 104, 190, 0.06) 0, transparent 50%);
}

/* ── Glow Borders & Icons ─────────────────────────────────────────────── */
.glow-border-amber  { border-color: rgba(196,144,62,0.35); box-shadow: 0 0 20px rgba(196,144,62,0.12); }
.glow-border-purple { border-color: rgba(123,104,190,0.35); box-shadow: 0 0 20px rgba(123,104,190,0.12); }
.glow-border-blue   { border-color: rgba(59,189,224,0.35); box-shadow: 0 0 20px rgba(59,189,224,0.12); }

.glow-flux { box-shadow: 0 0 40px -10px rgba(59,189,224,0.28); border-top: 2px solid var(--flux-cyan); }
.glow-nova { box-shadow: 0 0 40px -10px rgba(196,144,62,0.28); border-top: 2px solid var(--amber); }
.glow-echo { box-shadow: 0 0 40px -10px rgba(91,143,110,0.28); border-top: 2px solid var(--botanical); }

.icon-box {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  margin-bottom: 1.5rem;
}

/* ── Adventure Card ───────────────────────────────────────────────────── */
.adventure-card             { position: relative; overflow: hidden; }
.adventure-card img         { transition: transform 0.5s ease; }
.adventure-card:hover img   { transform: scale(1.1); }

/* ── Booking & Form Elements ──────────────────────────────────────────── */
.booking-option {
  cursor: pointer;
  transition: all 0.3s ease;
  border-color: transparent;
}

.booking-option:hover {
  border-color: rgba(59, 189, 224, 0.30);
  background: rgba(59, 189, 224, 0.05);
}

.booking-option.selected {
  border-color: var(--flux-cyan) !important;
  background: rgba(59, 189, 224, 0.09);
  box-shadow: 0 0 20px rgba(59, 189, 224, 0.14);
}

.day-btn {
  cursor: pointer;
  transition: all 0.2s ease;
}

.day-btn.selected,
.time-btn.selected {
  background-color: var(--flux-cyan);
  color: white;
  font-weight: bold;
  border-color: var(--flux-cyan);
}

.input-field {
  background: rgba(255, 255, 255, 0.80);
  border: 1px solid rgba(59, 189, 224, 0.28);
  color: var(--ink);
  transition: all 0.2s;
}

.input-field:focus {
  border-color: var(--flux-cyan);
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 189, 224, 0.14);
}

.edition-card {
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.edition-card.selected {
  border-color: var(--flux-cyan);
  background: rgba(59, 189, 224, 0.08);
  box-shadow: 0 0 20px rgba(59, 189, 224, 0.18);
}

/* ── Filter Buttons ───────────────────────────────────────────────────── */
.filter-btn {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(59, 189, 224, 0.22);
  color: var(--ink-muted);
  transition: all 0.3s ease;
}

.filter-btn.active {
  background: rgba(59, 189, 224, 0.12);
  border-color: var(--flux-cyan);
  color: var(--ink);
}

/* ── Misc Panels ──────────────────────────────────────────────────────── */
.intro-box {
  background: linear-gradient(135deg, rgba(59,189,224,0.07), rgba(123,104,190,0.07));
  border: 1px solid rgba(59, 189, 224, 0.16);
}

.tech-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.65) 0%, rgba(255,255,255,0.30) 100%);
  border-top: 1px solid rgba(59, 189, 224, 0.22);
}

.gradient-border {
  position: relative;
  border-radius: 1.5rem;
  background:
    linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)) padding-box,
    linear-gradient(135deg, rgba(59,189,224,0.6), rgba(196,144,62,0.35)) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 4px 24px rgba(25, 37, 80, 0.09);
}

.concept-number {
  font-family: 'Crimson Pro', serif;
  color: var(--flux-cyan);
}

/* ── Animations ───────────────────────────────────────────────────────── */
.scroll-indicator { animation: bounce 2s infinite; }
.sw-anim          { animation: sw-float 6s ease-in-out infinite; }

/* ── Logo ─────────────────────────────────────────────────────────────── */
.logo-main { height: 48px; width: auto; }

/* ════════════════════════════════════════════════════════════════════════
   LIGHT-THEME OVERRIDES — Override dark Tailwind utility classes
   ════════════════════════════════════════════════════════════════════════ */

/* ── text-white → dark ink on light pages ────────────────────────────── */
/* Hero sections explicitly restore white via style="" on the content div */
.text-white { color: var(--ink) !important; }

/* ── Buttons & interactive: Green → Flux Cyan ────────────────────────── */
[class*="bg-green-5"],
[class*="bg-green-6"] {
  background-color: var(--flux-cyan) !important;
  color: white !important;
  animation: flux-pulse 3.5s ease-in-out infinite;
}

[class*="bg-emerald-6"] {
  background-color: var(--flux-cyan) !important;
  color: white !important;
}

/* Hover states */
[class*="hover:bg-green"]:hover  { background-color: rgba(43,172,200,0.15) !important; }
[class*="hover:bg-white"]:hover  { background-color: rgba(59,189,224,0.08) !important; }

/* ── Green & emerald text → flux cyan ───────────────────────────────── */
[class*="text-green-3"],
[class*="text-green-4"],
[class*="text-green-5"]   { color: var(--flux-cyan) !important; }

[class*="text-emerald-2"],
[class*="text-emerald-3"],
[class*="text-emerald-4"] { color: var(--flux-cyan) !important; }

[class*="text-emerald-5"] { color: var(--botanical) !important; }

[class*="text-blue-4"]    { color: var(--flux-cyan) !important; }

/* ── Green borders → flux cyan ───────────────────────────────────────── */
[class*="border-green-5"]   { border-color: rgba(59,189,224,0.38) !important; }
[class*="border-emerald-5"] { border-color: var(--flux-cyan) !important; }
[class*="border-emerald-8"],
[class*="border-emerald-9"] { border-color: var(--card-border) !important; }
[class*="border-white/1"]   { border-color: rgba(59,189,224,0.20) !important; }
[class*="border-slate-7"]   { border-color: var(--card-border) !important; }

/* ── Dark backgrounds → light ────────────────────────────────────────── */
[class*="bg-emerald-9"],
[class*="bg-emerald-8"]   { background-color: rgba(91,143,110,0.05) !important; }

[class*="bg-black/"]      { background-color: rgba(255,255,255,0.80) !important;
                             color: var(--ink) !important; }

[class*="bg-slate-8"]     { background-color: rgba(239,244,251,0.85) !important;
                             color: var(--ink-muted) !important; }

[class*="bg-slate-7"]     { border-color: var(--card-border) !important; }

/* ── Step circles (concept ablauf) ───────────────────────────────────── */
[class*="rounded-full"][class*="bg-emerald-6"] {
  background-color: var(--flux-cyan) !important;
  color: white !important;
  box-shadow: 0 0 16px rgba(59,189,224,0.40);
  animation: flux-pulse 3s ease-in-out infinite;
}

/* Connector lines */
[class*="bg-emerald-8"]   { background-color: rgba(59,189,224,0.25) !important; }

/* ── Status badges (booking confirmed / pending) ─────────────────────── */
[class*="bg-green-9"]  { background-color: rgba(59,189,224,0.12) !important; }
[class*="bg-blue-9"]   { background-color: rgba(123,104,190,0.12) !important; }
[class*="text-blue-4"] { color: var(--lavender) !important; }

/* ── Dashboard active tab ─────────────────────────────────────────────── */
[data-tab].active-tab {
  background:    rgba(59,189,224,0.12) !important;
  border-color:  rgba(59,189,224,0.35) !important;
  color:         var(--flux-cyan) !important;
}

/* ── Peer-checked radio ratings (dashboard mixes) ────────────────────── */
.peer:checked ~ [class*="peer-checked:bg-green"]   { background-color: rgba(59,189,224,0.18) !important; }
.peer:checked ~ [class*="peer-checked:border-green"] { border-color: rgba(59,189,224,0.45) !important; }
.peer:checked ~ [class*="peer-checked:text-green"]   { color: var(--flux-cyan) !important; }

/* ── Glass panel radius fix (dashboard & small panels) ───────────────── */
/* Override the global 40px radius for panels used in tight dashboard layout */
.glass-panel.rounded-2xl { border-radius: 20px !important; }
.glass-panel.rounded-xl  { border-radius: 14px !important; }

/* ── Concept page card: hover white/dark bg ──────────────────────────── */
[class*="hover:bg-white/5"]:hover { background-color: rgba(59,189,224,0.06) !important; }

/* ── Audio accent color for mix player ───────────────────────────────── */
audio { accent-color: var(--flux-cyan); }

/* ── Glow text tweak for light context ───────────────────────────────── */
.glow-text { text-shadow: 0 0 20px rgba(59,189,224,0.5), 0 0 40px rgba(59,189,224,0.2); }
