:root{
  --bg:#05060a;
  --bg2:#0a0c12;
  --fg:#f2f4f8;
  --muted:#9aa3b2;

  --card: rgba(255,255,255,.03);
  --line: rgba(255,255,255,.12);

  --accent:#7df9ff;      /* neon-cyan */
  --accent2:#ff3b3b;     /* warning-red */

  --radius:14px;
  --max: 1120px;
  --pad: 22px;

  --shadow: 0 18px 55px rgba(0,0,0,.60);
  --shadowSoft: 0 10px 26px rgba(0,0,0,.40);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--fg);
  background:
    linear-gradient(180deg, var(--bg), var(--bg2) 55%, var(--bg)),
    radial-gradient(1200px 600px at 30% -15%, rgba(125,249,255,.10), transparent 65%),
    radial-gradient(900px 600px at 80% 0%, rgba(255,59,59,.08), transparent 65%);
  font:16px/1.65 system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  letter-spacing:.2px;
}

/* subtle grain */
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.10;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

img{max-width:100%; height:auto; display:block}
a{color:inherit}
.container{max-width:var(--max); margin:0 auto; padding:0 var(--pad)}
main{padding:26px 0 64px}

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  background: rgba(5,6,10,.78);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0; gap:14px;
}

.logo{
  text-decoration:none;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:13px;
  padding:9px 12px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  background: rgba(255,255,255,.02);
}
.logo:hover{
  border-color: rgba(125,249,255,.30);
  box-shadow: 0 0 0 4px rgba(125,249,255,.08);
}

.nav{
  display:flex; align-items:center; gap:10px;
  flex-wrap:wrap;
}
.nav a{
  text-decoration:none;
  color:var(--muted);
  padding:9px 12px;
  border-radius:999px;
  border:1px solid transparent;
}
.nav a:hover{
  color:var(--fg);
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
}

.lang{display:flex; gap:8px; align-items:center}
.lang a{
  color:var(--muted);
  text-decoration:none;
  border:1px solid rgba(255,255,255,.14);
  padding:8px 10px;
  border-radius:999px;
  font-size:12px;
  background: rgba(255,255,255,.02);
}
.lang a.active{
  color:var(--fg);
  border-color: rgba(125,249,255,.45);
  box-shadow: 0 0 0 4px rgba(125,249,255,.10);
}

/* Typography */
h1,h2,h3{letter-spacing:.6px}
h1{
  margin:0 0 12px;
  font-size: clamp(34px, 4.0vw, 58px);
  line-height:1.02;
  text-transform:uppercase;
}
h2{
  margin:28px 0 12px;
  font-size: clamp(18px, 2.0vw, 24px);
  text-transform:uppercase;
}
h3{margin:0 0 10px; font-size:16px}
p{margin:0 0 12px}
.small, small{color:var(--muted)}

/* Hero */
.hero{
  padding:44px 0 14px;
  position:relative;
}
.hero::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-8px;
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(125,249,255,.35), transparent);
  opacity:.6;
}
.hero p{
  color:var(--muted);
  max-width: 70ch;
}
.hero__cta{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  text-decoration:none;
  background: rgba(255,255,255,.06);
  color:var(--fg);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:1.2px;
  font-size:13px;
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease, background .14s ease;
}
.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(125,249,255,.35);
  box-shadow: var(--shadowSoft);
}
.btn--ghost{
  background: transparent;
  border-color: rgba(255,255,255,.14);
  color: var(--muted);
}
.btn--ghost:hover{
  color: var(--fg);
  border-color: rgba(255,59,59,.45);
  box-shadow: 0 0 0 4px rgba(255,59,59,.10);
}

/* Cards / list */
.list{
  list-style:none;
  padding:0; margin:0;
  display:grid;
  gap:12px;
}

.card{
  background: var(--card);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
}
.card:hover{
  transform: translateY(-1px);
  border-color: rgba(125,249,255,.22);
  background: rgba(255,255,255,.05);
}
.card__row{
  display:flex;
  gap:10px;
  align-items:baseline;
  justify-content:space-between;
  flex-wrap:wrap;
}
.card__row strong{
  font-variant-numeric: tabular-nums;
  letter-spacing:1px;
}
.muted{color:var(--muted); margin:8px 0 0}

.link{color:var(--accent); text-decoration:none}
.link:hover{text-decoration:underline}

/* Grid */
.grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:12px;
}
@media (max-width: 820px){
  .grid{grid-template-columns:1fr}
  .header__inner{flex-wrap:wrap}
}

/* Form */
.form{display:grid; gap:12px; max-width:660px}
label{display:grid; gap:6px; color:var(--muted)}
input, textarea{
  width:100%;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(12,14,18,.70);
  color:var(--fg);
  padding:10px 12px;
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(125,249,255,.45);
  box-shadow: 0 0 0 4px rgba(125,249,255,.10);
}

/* Alerts */
.alert{
  border-radius:12px;
  padding:10px 12px;
  border:1px solid rgba(255,255,255,.14);
  margin-bottom:12px;
  background: rgba(255,255,255,.03);
}
.alert--success{border-color:rgba(125,249,255,.35)}
.alert--error{border-color:rgba(255,59,59,.35)}

/* Footer */
.footer{
  border-top:1px solid var(--line);
  padding:18px 0;
  color:var(--muted);
}

/* Selection */
::selection{ background: rgba(125,249,255,.22); }

.embed{
  overflow:hidden;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
}

.embed iframe{
  display:block;
  width:100% !important;
  max-width:100%;
  border:0;
}

.accordion{
  border:1px solid rgba(255,255,255,.14);
  border-radius:12px;
  overflow:hidden;
  background: rgba(255,255,255,.03);
}

.accordion__btn{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 12px;
  border:0;
  background: transparent;
  color: var(--fg);
  cursor:pointer;
  text-transform:uppercase;
  letter-spacing:1.2px;
  font-weight:800;
  font-size:13px;
}

.accordion__btn:hover{
  background: rgba(255,255,255,.04);
}

.accordion__icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:26px;
  height:26px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  color: var(--muted);
}

.accordion__panel{
  padding:10px 12px 12px;
  border-top:1px solid rgba(255,255,255,.12);
}

.accordion__panel iframe{
  display:block;
  width:100% !important;
  max-width:100%;
  border:0;
  border-radius:12px;
}
/* ===== Logo SVG steuerbar ===== */
.brand__svg{
  width:100%;
  display:block;
  color: var(--logo-color, #ffffff); /* DEFAULT */
}

.brand__svg svg{
  width:100%;
  height:auto;
  display:block;
  max-height:72px;
}

/* Farbvarianten */
.header--logo{
  --logo-color: #ffffff; /* Standard: Weiß */
}

/* Hover / Akzent */
.brand--full:hover{
  --logo-color: #7df9ff; /* Neon Cyan */
}

/* Beispiel: andere Seite */
body[data-page="discography"] .header--logo{
  --logo-color: #ff3b3b; /* Rot */
}

/* Mobile */
@media (max-width:520px){
  .brand__svg svg{ max-height:54px; }
}

