﻿/*
  ================================================================
  PartyBeatz – Zentrales Theme
  Farben, Fonts, Reset & gemeinsame Komponenten
  ================================================================
  Hier 1x ändern → wirkt auf ALLE Seiten.
*/

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;600&display=swap');

/* ── Design-Variablen ── */
:root {
  --bg:        #0a0612;
  --surface:   #110a1c;
  --card:      #180d28;
  --border:    #2d1548;
  --accent1:   #ff0000; /* Neon Red – Logo Glow */
  --accent2:   #cc0000; /* Electric Blue – Logo Outline */
  --accent3:   #ffffff; /* Gold – Logo Text */
  --accent4:   #800000; /* Warm Orange */
  --text:      #f0e8ff;
  --muted:     #8a75a8;
  --glow1:     0 0 24px rgba(51, 102, 255, 0.6);
  --glow1-s:   0 0 10px rgba(255, 26, 26, 0.3);
  --glow2:     0 0 24px rgba(51, 102, 255, 0.5);
  --glow3:     0 0 24px rgba(255, 204, 0, 0.3);
  --glow4:     0 0 20px rgba(255, 102, 0, 0.3);
  --font:      'DM Sans', sans-serif;
  --font-head: 'Bebas Neue', sans-serif;
}

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

/* ── Body & Hintergrund-Gradient ── */
body {
  background: 
    linear-gradient(rgba(10, 6, 18, 0.5), rgba(10, 6, 18, 0.5)),
    url('bg.png') center/cover fixed;
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 40% at 10% 20%, rgba(51, 102, 255, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 90% 80%, rgba(255, 0, 0, 0.05) 0%, transparent 60%);
}

/* ── Content Container ── */
.content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem;
  position: relative;
  z-index: 1;
}

/* ── Typografie ── */
h1 {
  font-family: var(--font-head);
  font-size: 3.5rem;
  color: var(--accent1);
  margin-bottom: .5rem;
  letter-spacing: .06em;
}

h2 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--accent3);
  margin: 1.5rem 0 .5rem;
  letter-spacing: .06em;
}

.sub {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 3rem;
  line-height: 1.7;
}

/* ── Footer ── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 1;
  margin-top: 3rem;
}

footer a {
  color: var(--accent1);
  text-decoration: none;
  font-size: .82rem;
  margin-right: 1.5rem;
}

.fc {
  font-size: .8rem;
  color: var(--muted);
}

/* ── Links ── */
a { color: var(--accent1); }

/* ── Skeleton Loading ── */
.skeleton {
  background: var(--border);
  border-radius: 18px;
  height: 80px;
  margin-bottom: .7rem;
  animation: shimmer 1.4s infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: .4; }
  50%      { opacity: .8; }
}

/* ── Scrollbar ── */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 26, 26, .4) rgba(10, 10, 24, .7);
}
*::-webkit-scrollbar       { width: 5px; height: 5px; }
*::-webkit-scrollbar-track { background: rgba(10, 10, 24, .7); border-radius: 3px; }
*::-webkit-scrollbar-thumb { background: rgba(255, 26, 26, .4); border-radius: 3px; }
*::-webkit-scrollbar-thumb:hover { background: rgba(255, 26, 26, .7); }
