/**
 * Hollywood / musik.hollywood-in-bruehl.de — gemeinsames Erscheinungsbild
 * Schriften: Unbounded + DM Sans wie auf der Landingpage (im HTML verlinken).
 * Alle Apps: body.hw-skin + /hw-theme.css
 */
:root {
  --hw-bg0: #050810;
  --hw-bg1: #0a1020;
  --hw-card: rgba(18, 28, 48, 0.72);
  --hw-card-solid: #121c30;
  --hw-border: rgba(120, 200, 255, 0.14);
  --hw-text: #e8f0ff;
  --hw-muted: #8a9bb8;
  --hw-cyan: #2ec4ff;
  --hw-cyan-dim: #1a6a8a;
  --hw-gold: #f0c14b;
  --hw-glow: rgba(46, 196, 255, 0.32);
  --hw-danger: #ff6b6b;
  --hw-ok: #5ce1a3;
  --hw-warn: #ffc857;
  --hw-font: "DM Sans", system-ui, sans-serif;
  --hw-display: "Unbounded", system-ui, sans-serif;
  /* Alias für bestehende Seiten */
  --hw-primary: var(--hw-cyan);
  --hw-primary-dim: var(--hw-cyan-dim);
  --hw-surface: var(--hw-card-solid);
  --hw-surface-elevated: #1a2740;
}

.hw-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 0;
}

body.hw-skin {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--hw-font);
  background: var(--hw-bg0);
  color: var(--hw-text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body.hw-skin::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 50% -40%, var(--hw-glow), transparent 55%),
    radial-gradient(ellipse 40% 50% at 100% 0%, rgba(240, 193, 75, 0.06), transparent),
    linear-gradient(180deg, var(--hw-bg1) 0%, var(--hw-bg0) 45%);
  z-index: -2;
  pointer-events: none;
}

.hw-wrap {
  position: relative;
  z-index: 1;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem) 3rem;
}

.hw-logo {
  font-family: var(--hw-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--hw-text);
  text-decoration: none;
}
.hw-logo span {
  color: var(--hw-cyan);
}

.hw-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.75rem clamp(1rem, 3vw, 1.5rem);
  background: rgba(5, 8, 16, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hw-border);
}

.hw-nav a {
  color: var(--hw-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
}
.hw-nav a:hover {
  color: var(--hw-cyan);
}

.hw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.86rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.hw-btn:active {
  transform: scale(0.98);
}

.hw-btn-primary {
  background: linear-gradient(135deg, var(--hw-cyan), var(--hw-cyan-dim));
  color: #031018;
  box-shadow: 0 0 22px var(--hw-glow);
}
.hw-btn-primary:hover {
  box-shadow: 0 0 30px var(--hw-glow);
}

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

.hw-card {
  background: var(--hw-card);
  border: 1px solid var(--hw-border);
  border-radius: 16px;
  padding: 1.15rem;
  backdrop-filter: blur(8px);
}

.hw-section-title {
  font-family: var(--hw-display);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--hw-muted);
  margin: 0 0 0.75rem;
}

.hw-input,
.hw-skin input[type="text"],
.hw-skin input[type="password"],
.hw-skin input[type="number"],
.hw-skin input[type="url"],
.hw-skin input[type="search"] {
  width: 100%;
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  border: 1px solid var(--hw-border);
  background: var(--hw-surface-elevated);
  color: var(--hw-text);
  font-family: inherit;
  font-size: 1rem;
  box-sizing: border-box;
}
.hw-skin input:focus,
.hw-input:focus {
  outline: 2px solid var(--hw-cyan);
  outline-offset: 0;
  border-color: var(--hw-cyan);
}

.hw-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hw-gold);
  border: 1px solid rgba(240, 193, 75, 0.35);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}

.hw-license-banner {
  background: rgba(240, 193, 75, 0.12);
  border: 1px solid rgba(240, 193, 75, 0.35);
  color: var(--hw-gold);
  padding: 0.65rem 1rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
}
.hw-license-banner a {
  color: var(--hw-cyan);
}

.hw-foot {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.75rem;
  color: var(--hw-muted);
  border-top: 1px solid var(--hw-border);
  margin-top: 2rem;
}
