:root {
  --fire: #FF4500;
  --ember: #FF8C00;
  --gold: #FFD700;
  --dark: #0a0a0a;
  --surface: #111111;
  --surface2: #1a1a1a;
  --text: #f0f0f0;
  --muted: #888;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--dark); color: var(--text); font-family: 'Outfit', sans-serif; overflow-x: hidden; }
body::before {
  content: ''; position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 1000; opacity: 0.4;
}

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 3rem;
  background: linear-gradient(to bottom, rgba(10,10,10,0.95), transparent);
  backdrop-filter: blur(8px);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: 0.12em;
  background: linear-gradient(135deg, var(--fire), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.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: 600; letter-spacing: 0.12em; text-transform: uppercase; transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

.hero { min-height: 100vh; position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(255,69,0,0.18) 0%, transparent 70%),
              radial-gradient(ellipse 40% 60% at 20% 80%, rgba(255,140,0,0.10) 0%, transparent 60%), var(--dark);
}
.hero-glow {
  position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,69,0,0.15) 0%, transparent 70%);
  border-radius: 50%; right: 10%; top: 50%; transform: translateY(-50%);
  animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.6; }
  50% { transform: translateY(-50%) scale(1.1); opacity: 1; }
}
.hero-content { position: relative; z-index: 2; padding: 0 3rem; max-width: 700px; animation: fadeUp 1s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.hero-tag {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--fire);
  border: 1px solid rgba(255,69,0,0.4); padding: 0.3rem 0.9rem; border-radius: 20px;
  margin-bottom: 1.5rem; background: rgba(255,69,0,0.08);
}
.hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(4rem, 10vw, 9rem); line-height: 0.9; letter-spacing: 0.04em; margin-bottom: 0.3em; }
.hero h1 .line1 { display: block; color: var(--text); }
.hero h1 .line2 { display: block; background: linear-gradient(135deg, var(--fire) 0%, var(--gold) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 1.1rem; color: var(--muted); font-weight: 300; margin-bottom: 2.5rem; line-height: 1.7; max-width: 500px; }
.hero-sub strong { color: var(--text); font-weight: 600; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.9rem 2rem;
  background: linear-gradient(135deg, var(--fire), var(--ember)); color: #fff;
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.08em; text-decoration: none;
  border-radius: 50px; border: none; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 30px rgba(255,69,0,0.4); text-transform: uppercase;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(255,69,0,0.6); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.9rem 2rem;
  background: transparent; color: var(--text); font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.08em; text-decoration: none; border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2); cursor: pointer; transition: all 0.2s; text-transform: uppercase;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: rgba(255,215,0,0.05); }
.hero-image {
  position: absolute; right: 0; top: 0; bottom: 0; width: 50%; overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 30%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%);
  animation: fadeIn 1.5s ease both 0.3s;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; opacity: 0.5; }

section { padding: 6rem 3rem; }
.section-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--fire); margin-bottom: 1rem; }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1; letter-spacing: 0.04em; margin-bottom: 3rem; color: var(--text); }

.about { background: var(--surface); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.about-inner { max-width: 900px; margin: 0 auto; }
.about-text p { color: #bbb; line-height: 1.9; font-size: 1.05rem; margin-bottom: 1.5rem; font-weight: 300; }
.about-text p strong { color: var(--text); font-weight: 600; }
.about-stats { display: flex; gap: 3rem; margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.08); }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; line-height: 1; background: linear-gradient(135deg, var(--fire), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 0.3rem; }

.musik { max-width: 1200px; margin: 0 auto; }
.albums-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 2rem; }
.album-card { background: var(--surface2); border-radius: 8px; overflow: hidden; border: 1px solid rgba(255,255,255,0.06); transition: transform 0.3s, border-color 0.3s; position: relative; }
.album-card:hover { transform: translateY(-6px); border-color: rgba(255,69,0,0.4); }
.album-card.featured::before { content: 'NEU'; position: absolute; top: 1rem; right: 1rem; z-index: 10; background: var(--fire); color: #fff; font-size: 0.65rem; font-weight: 800; letter-spacing: 0.2em; padding: 0.3rem 0.7rem; border-radius: 20px; }
.album-cover { width: 100%; aspect-ratio: 1; overflow: hidden; }
.album-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.album-card:hover .album-cover img { transform: scale(1.05); }
.album-info { padding: 1.5rem; }
.album-year { font-size: 0.75rem; color: var(--fire); font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 0.4rem; }
.album-title { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 0.06em; margin-bottom: 0.5rem; color: var(--text); }
.album-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.5rem; }
.album-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--text); text-decoration: none; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.7rem 1.5rem; border: 1px solid rgba(255,255,255,0.15); border-radius: 50px; transition: all 0.2s; }
.album-link:hover { background: var(--fire); border-color: var(--fire); color: #fff; }

/* IMPRESSUM / DISCLAIMER MODAL */
.legal-overlay {
  display: none; position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,0.85); backdrop-filter: blur(6px);
  justify-content: center; align-items: flex-start;
  padding: 2rem 1rem; overflow-y: auto;
}
.legal-overlay.active { display: flex; }
.legal-box {
  background: var(--surface); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; max-width: 720px; width: 100%;
  padding: 3rem; position: relative; margin: auto;
  animation: fadeUp 0.3s ease both;
}
.legal-close {
  position: absolute; top: 1.2rem; right: 1.5rem;
  background: none; border: none; color: var(--muted);
  font-size: 1.8rem; cursor: pointer; line-height: 1;
  transition: color 0.2s;
}
.legal-close:hover { color: var(--fire); }
.legal-box h2 { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; letter-spacing: 0.06em; margin-bottom: 2rem; color: var(--text); }
.legal-box h3 { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--fire); margin: 2rem 0 0.6rem; }
.legal-box h3:first-of-type { margin-top: 0; }
.legal-box p { color: #aaa; line-height: 1.8; font-size: 0.95rem; margin-bottom: 0.5rem; }
.legal-box a { color: var(--ember); text-decoration: none; }
.legal-box a:hover { text-decoration: underline; }

/* FOOTER */
footer { padding: 2.5rem 3rem; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; letter-spacing: 0.15em; background: linear-gradient(135deg, var(--fire), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer-spotify { display: flex; align-items: center; gap: 0.5rem; color: #1DB954; font-size: 0.85rem; font-weight: 600; text-decoration: none; transition: opacity 0.2s; }
.footer-spotify:hover { opacity: 0.7; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-bottom p { color: var(--muted); font-size: 0.8rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal button { background: none; border: none; color: var(--muted); font-size: 0.8rem; font-family: 'Outfit', sans-serif; cursor: pointer; transition: color 0.2s; padding: 0; text-decoration: underline; text-underline-offset: 3px; }
.footer-legal button:hover { color: var(--gold); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--fire); border-radius: 3px; }

@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hero-content { padding: 0 1.5rem; max-width: 100%; }
  .hero-image { width: 100%; mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 60%, transparent 100%); -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 60%, transparent 100%); opacity: 0.25; }
  section { padding: 4rem 1.5rem; }
  .footer-top, .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .legal-box { padding: 2rem 1.5rem; }
}
