/* =======================================
   REEDROUX BOT — Modern Landing Page
   ======================================= */
:root {
  --accent: #e11d48;
  --accent-light: #fb7185;
  --bg: radial-gradient(circle at top, #0a0a0a 40%, #1a1a1a);
  --text: #f8fafc;
  --muted: #a1a1aa;
  --border: rgba(255, 255, 255, 0.08);
  --card: rgba(255, 255, 255, 0.05);
  --glow: 0 0 20px rgba(225, 29, 72, 0.3);
  --radius: 16px;
  --transition: all 0.3s ease;
}
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  scroll-behavior: smooth;
  line-height: 1.5;
}

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0.8rem;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 72%;
  margin: 0 auto;
  padding: 0.7rem 2rem;
  background: rgba(255, 255, 255, 0.05); /* heller, kein schwarzer Rand-Effekt */
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 24px rgba(225, 29, 72, 0.25); /* dezenter Glow */
  border-radius: 26px;
  transition: all 0.3s ease;
}

/* Header schrumpft beim Scrollen */
header.shrink {
  padding: 0.4rem 1.6rem;
  width: 68%;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}


/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.25rem;
  margin-left: 0.3rem;
}

.logo img {
  height: 32px; /* kleiner angepasst */
  width: auto;
  border-radius: 8px;
}

/* Navigation */
nav {
  display: flex;
  gap: 1.2rem;
}

nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  opacity: 0.85;
  position: relative;
  transition: var(--transition);
  padding: 0.4rem 0.9rem; /* kompaktere Buttons */
  border-radius: 8px;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

nav a:hover {
  color: var(--accent-light);
  opacity: 1;
  background: rgba(225, 29, 72, 0.08);
}

nav a:hover::after {
  width: 100%;
}
/* ===== HERO ===== */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(225, 29, 72, 0.18) 0%,
    rgba(225, 29, 72, 0.08) 25%,
    rgba(10, 10, 10, 0.9) 80%,
    rgba(10, 10, 10, 1) 100%
  );
  position: relative;
  overflow: hidden;
}


.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, transparent, #0a0a0a);
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  padding: 2rem;
  transform: translateY(-10%);
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 0 25px rgba(225,29,72,0.3);
}

.hero p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 2rem;
}

.btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.9rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--glow);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-5px);
}

.btn-secondary {
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: var(--accent-light);
  transform: translateY(-5px);
}

/* ===== TRUSTED BY ===== */
.trusted {
  text-align: center;
  padding: 6rem 2rem 5rem;
  background: linear-gradient(to bottom, rgba(255,255,255,0.01), rgba(255,255,255,0.02), rgba(10,10,10,1));
  border: none;
}

.trusted h2 {
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 3rem;
}

.trusted h2 span {
  color: var(--accent);
  text-shadow: 0 0 10px rgba(225,29,72,0.4);
}

.trusted-servers {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.trusted-servers img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 2px solid var(--border);
  box-shadow: 0 0 12px rgba(225,29,72,0.25);
  opacity: 0;
  animation: fadeInFloat 1s forwards, floatLoop 5s 1.2s ease-in-out infinite;
}

@keyframes fadeInFloat {
  0% {opacity: 0; transform: translateY(20px) scale(0.8);}
  60% {opacity: 1; transform: translateY(-6px) scale(1.05);}
  100% {opacity: 1; transform: translateY(0) scale(1);}
}

@keyframes floatLoop {
  0%, 100% {transform: translateY(0);}
  50% {transform: translateY(-10px);}
}

/* ===== FEATURES ===== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 6rem auto;
  padding: 0 2rem;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-light);
  box-shadow: var(--glow);
}

.feature-card img {
  width: 70px;
  height: 70px;
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: var(--accent-light);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* ===== EMBED SHOWCASE ===== */
.embed-showcase {
  text-align: center;
  padding: 6rem 2rem;
  background: linear-gradient(to bottom, rgba(10,10,10,1), rgba(255,255,255,0.02));
  border: none;
}

.embed-showcase h2 {
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.embed-showcase p {
  color: var(--muted);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.embed-container.single {
  display: flex;
  justify-content: center;
  align-items: center;
}

.embed-container.single img {
  width: 80%;
  max-width: 1000px;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 0 40px rgba(225,29,72,0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.embed-container.single img:hover {
  transform: scale(1.02);
  box-shadow: 0 0 55px rgba(225,29,72,0.4);
}

/* ===== CTA ===== */
.cta {
  text-align: center;
  padding: 6rem 2rem 8rem;
  background: linear-gradient(to bottom, rgba(10,10,10,1), rgba(225,29,72,0.15) 40%, rgba(10,10,10,1) 90%);
  border: none;
}

.cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.big-btn {
  font-size: 1.05rem;
  padding: 1.1rem 2.6rem;
  border-radius: 14px;
  box-shadow: var(--glow);
}

.big-btn:hover {
  transform: translateY(-4px) scale(1.03);
}

/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.85),
    rgba(10, 10, 10, 0.5),
    rgba(10, 10, 10, 0)
  ); /* weicher Verlauf statt schwarzer Block */
  color: var(--muted);
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  backdrop-filter: blur(6px);
  border-bottom: none; /* entfernt harte untere Linie */
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-col {
  min-width: 160px;
}

.footer-col h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  letter-spacing: 0.4px;
}

.footer-col a {
  color: var(--muted);
  text-decoration: none;
  display: block;
  margin: 0.3rem 0;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--accent-light);
  transform: translateX(3px);
}


/* Footer dichter an die Seite */
.site-footer {
  padding-left: 0.5rem !important;
}

/* Content weniger eingerückt */
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 0 !important;
}

/* Branding Column ENTSCHEIDEND enger gemacht */
.footer-left {
  display: flex;
  align-items: center;
  gap: 0.6rem; /* enger */
  max-width: 150px; /* stark komprimiert */
}

/* Optimierte Logo-Skalierung */
.footer-logo {
  width: 64px;     /* statt 80px → bessere Balance */
  height: 64px;
  border-radius: 12px;
  object-fit: cover; /* bessere Skalierung */
  filter: drop-shadow(0 0 6px rgba(225, 29, 72, 0.45));
}

/* Textblock enger */
.footer-textblock {
  display: flex;
  flex-direction: column;
  gap: 0.15rem; /* enger */
}

/* Name kompakter & sauber skaliert */
.footer-brand {
  color: #fff;
  font-size: 1.15rem; /* minimal kleiner → perfektes Verhältnis zum Logo */
  margin: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.4px;
}

/* Tagline enger & besser lesbar */
.footer-tagline {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.15;
  letter-spacing: 0.2px;
}



/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  .trusted-servers img { width: 60px; height: 60px; }
  .embed-container.single img { width: 90%; }
  .features { padding: 0 1rem; }
  .footer-columns {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  header {
    width: 92%;
    padding: 0.6rem 1.2rem;
    border-radius: 18px;
  }

  .logo img {
    height: 32px;
  }

  nav {
    gap: 1rem;
  }

  .command-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .cmd-desc {
    margin-left: 0;
    text-align: left;
    font-size: 0.9rem;
  }
}
/* === AUDIO PROMO SECTION (Groß & Modern) === */
.audio-promo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  padding: 8rem 10%;
  background: linear-gradient(to bottom right, rgba(255,255,255,0.01), rgba(225,29,72,0.05), rgba(10,10,10,0.9));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.audio-left {
  flex: 1;
  max-width: 540px;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(225, 29, 72, 0.15);
  border: 1px solid rgba(225, 29, 72, 0.4);
  color: var(--accent-light);
  font-size: 0.85rem;
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  font-weight: 600;
  text-shadow: 0 0 8px rgba(225, 29, 72, 0.3);
  margin-bottom: 1.8rem;
}

.audio-left h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 0 20px rgba(225,29,72,0.3);
}

.audio-left p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 2rem;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-item .icon {
  font-size: 1.4rem;
  background: rgba(225,29,72,0.1);
  color: var(--accent-light);
  border-radius: 10px;
  padding: 0.4rem 0.6rem;
  box-shadow: 0 0 12px rgba(225,29,72,0.2);
}

.feature-item h4 {
  margin: 0;
  font-size: 1.05rem;
  color: #fff;
}

.feature-item p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* === BIG PLAYER CARD === */
.audio-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.player-card {
  width: 480px;
  padding: 3rem 2.5rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 45px rgba(225,29,72,0.35);
  text-align: center;
  color: #fff;
  transform: scale(1.05);
  transition: all 0.4s ease;
}

.player-card:hover {
  transform: scale(1.08);
  box-shadow: 0 0 60px rgba(225,29,72,0.5);
}

.player-card .track-info h4 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.4rem;
  text-shadow: 0 0 25px rgba(225,29,72,0.4);
}

.player-card .track-info p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 1.6rem;
}

.progress-bar {
  background: rgba(255,255,255,0.08);
  height: 8px;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 1.2rem;
}

.progress {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  width: 35%;
  transition: width 0.5s ease;
  box-shadow: 0 0 10px var(--accent-light);
}

.player-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.4rem;
  color: var(--muted);
}

.buttons {
  display: flex;
  gap: 0.8rem;
}

.ctrl-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  border-radius: 14px;
  width: 48px;
  height: 48px;
  transition: var(--transition);
}

.ctrl-btn.play {
  width: 58px;
  height: 58px;
  font-size: 1.5rem;
  background: var(--accent);
  box-shadow: 0 0 25px rgba(225,29,72,0.6);
  border: none;
}

.ctrl-btn:hover {
  transform: scale(1.05);
  border-color: var(--accent-light);
}

.volume {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.equalizer {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  height: 30px;
}

.equalizer span {
  width: 6px;
  background: var(--accent-light);
  border-radius: 3px;
  animation: eq 1s infinite ease-in-out;
  box-shadow: 0 0 8px var(--accent-light);
}

.equalizer span:nth-child(2) { animation-delay: 0.1s; }
.equalizer span:nth-child(3) { animation-delay: 0.2s; }
.equalizer span:nth-child(4) { animation-delay: 0.3s; }
.equalizer span:nth-child(5) { animation-delay: 0.4s; }
.equalizer span:nth-child(6) { animation-delay: 0.5s; }

@keyframes eq {
  0%, 100% { height: 6px; opacity: 0.8; }
  50% { height: 22px; opacity: 1; }
}

/* === Responsive === */
@media (max-width: 950px) {
  .audio-promo {
    flex-direction: column;
    gap: 3rem;
    padding: 6rem 2rem;
    text-align: center;
  }

  .audio-left {
    max-width: 100%;
  }

  .player-card {
    width: 90%;
    max-width: 360px;
  }
}
/* ===== TRUSTED SERVER CARDS ===== */
.trusted {
  text-align: center;
  padding: 6rem 2rem 5rem;
  background: linear-gradient(to bottom, rgba(255,255,255,0.01), rgba(255,255,255,0.02), rgba(10,10,10,1));
  border: none;
}

.trusted h2 {
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 3rem;
}

.trusted h2 span {
  color: var(--accent);
  text-shadow: 0 0 10px rgba(225,29,72,0.4);
}

/* === Grid Layout === */
.trusted-servers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* === Server Card === */
.server-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem 1rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 0 15px rgba(225,29,72,0.15);
}

.server-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(225,29,72,0.3);
  border-color: var(--accent-light);
}

.server-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 2px solid var(--border);
  box-shadow: 0 0 12px rgba(225,29,72,0.25);
}

.server-info h4 {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.server-info p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* === Responsive === */
@media (max-width: 768px) {
  .trusted-servers-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.2rem;
  }

  .server-card {
    padding: 1.2rem;
  }

  .server-card img {
    width: 60px;
    height: 60px;
  }
}


/* =======================================================
   Reedroux-Bot – Legal & Info Pages (Terms, Privacy, Team)
   ======================================================= */

/* ===== HERO SECTION ===== */
.terms-hero,
.privacy-hero,
.team-hero {
  height: 35vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(225, 29, 72, 0.18) 0%,
    rgba(225, 29, 72, 0.08) 25%,
    rgba(10, 10, 10, 0.9) 80%,
    rgba(10, 10, 10, 1) 100%
  );
  margin-bottom: 0;
}

.terms-hero h1,
.privacy-hero h1,
.team-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
  text-shadow: 0 0 20px rgba(225, 29, 72, 0.3);
}

.terms-hero span,
.privacy-hero span,
.team-hero span {
  color: var(--accent);
}

.terms-hero p,
.privacy-hero p,
.team-hero p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 0.3rem;
  line-height: 1.2;
}

/* ===== CONTENT WRAPPER ===== */
.terms-wrapper,
.privacy-wrapper {
  background: linear-gradient(to bottom, rgba(10, 10, 10, 1), rgba(255, 255, 255, 0.02));
  padding: 2rem 2rem 6rem;
  display: flex;
  justify-content: center;
  margin-top: -1rem;
}

.terms-content,
.privacy-content {
  max-width: 900px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 2.5rem 2.2rem;
  box-shadow: 0 0 40px rgba(225, 29, 72, 0.25);
  backdrop-filter: blur(20px) saturate(140%);
  line-height: 1.7;
}

.terms-content h2,
.privacy-content h2 {
  color: var(--accent-light);
  font-size: 1.4rem;
  margin: 2rem 0 0.8rem;
  font-weight: 700;
  text-shadow: 0 0 12px rgba(225, 29, 72, 0.4);
}

.terms-content p,
.privacy-content p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
}

.terms-content strong,
.privacy-content strong {
  color: #fff;
  font-weight: 600;
}

.terms-content a.link,
.privacy-content a.link {
  color: var(--accent-light);
  text-decoration: none;
  border-bottom: 1px dashed rgba(225, 29, 72, 0.3);
  transition: 0.3s ease;
}

.terms-content a.link:hover,
.privacy-content a.link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
  text-shadow: 0 0 12px rgba(225, 29, 72, 0.5);
}

/* ===== TEAM PAGE ===== */
.team-section {
  background: linear-gradient(to bottom, rgba(10, 10, 10, 1), rgba(255, 255, 255, 0.03));
  padding: 3rem 2rem 6rem;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.team-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 2.5rem 1.8rem;
  color: #fff;
  text-align: center;
  box-shadow: 0 0 25px rgba(225, 29, 72, 0.15);
  transition: 0.3s ease;
  backdrop-filter: blur(20px) saturate(140%);
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(225, 29, 72, 0.3);
}

.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
  box-shadow: 0 0 18px rgba(225, 29, 72, 0.25);
  margin-bottom: 1rem;
}

.team-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #fff;
}

.team-handle {
  color: #aaa;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--accent-light);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .terms-hero,
  .privacy-hero,
  .team-hero {
    height: 40vh;
  }

  .terms-content,
  .privacy-content {
    padding: 1.8rem 1.2rem;
  }

  .team-section {
    padding: 2.5rem 1rem 5rem;
  }

  .team-avatar {
    width: 75px;
    height: 75px;
  }
}

/* ===== COMMAND SEARCH + FILTER BUTTONS ===== */
.command-filter {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.command-filter input[type="text"] {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  font-size: 0.95rem;
  min-width: 240px;
  outline: none;
  transition: var(--transition);
}

.command-filter input[type="text"]:focus {
  border-color: var(--accent-light);
  box-shadow: 0 0 15px rgba(225, 29, 72, 0.3);
}

.filter-btn {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid var(--border);
  padding: 0.6rem 1.3rem;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}

.filter-btn:hover {
  border-color: var(--accent-light);
  box-shadow: 0 0 15px rgba(225, 29, 72, 0.3);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 25px rgba(225, 29, 72, 0.5);
}

/* ===== COMMANDS PAGE (Neon Glass Design) ===== */
.commands-section {
  max-width: 1200px;
  margin: 6rem auto 8rem;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.command-category {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 0 25px rgba(225, 29, 72, 0.15);
  transition: var(--transition);
}

.command-category:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 35px rgba(225, 29, 72, 0.25);
  border-color: var(--accent-light);
}

.command-category h3 {
  color: var(--accent-light);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  text-align: center;
}

.command-category p {
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
  margin-bottom: 1.2rem;
}

.command-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.command-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  margin: 0.4rem 0;
  transition: var(--transition);
}

.command-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--accent-light);
  box-shadow: 0 0 10px rgba(225, 29, 72, 0.2);
}

.cmd-name {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}

.cmd-desc {
  color: var(--muted);
  font-size: 0.9rem;
  margin-left: 0.8rem;
}

/* Smooth fade in */
.command-category {
  animation: fadeInUp 0.8s ease both;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive fix */
@media (max-width: 768px) {
  .command-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }

  .cmd-desc {
    margin-left: 0;
    font-size: 0.85rem;
  }
}

/* ===== PREMIUM PAGE ===== */
.premium-hero {
  text-align: center;
  padding: 8rem 2rem 4rem;
  background: radial-gradient(circle at top, rgba(225, 29, 72, 0.15), rgba(10, 10, 10, 1));
}

.premium-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  font-weight: 800;
  margin-bottom: 1rem;
}

.premium-hero h1 span {
  color: var(--accent);
}

.premium-hero p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* ===== PREMIUM PLANS ===== */
.premium-plans {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 5rem 2rem;
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.02), rgba(10, 10, 10, 0.9));
}

.plan-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  color: #fff;
  width: 320px;
  transition: var(--transition);
  box-shadow: 0 0 25px rgba(225, 29, 72, 0.15);
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 40px rgba(225, 29, 72, 0.3);
  border-color: var(--accent-light);
}

.plan-card.highlight {
  background: rgba(225, 29, 72, 0.1);
  border: 1px solid var(--accent-light);
  box-shadow: 0 0 45px rgba(225, 29, 72, 0.4);
}

.plan-header {
  margin-bottom: 1.5rem;
}

.plan-header .badge {
  background: var(--accent);
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.6rem;
}

.plan-header h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.plan-header .price {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent-light);
}

.plan-header .price span {
  font-size: 0.9rem;
  color: var(--muted);
}

.plan-features {
  list-style: none;
  margin: 0 0 2rem 0;
  padding: 0;
  color: var(--muted);
  text-align: left;
}

.plan-features li {
  margin: 0.4rem 0;
  padding-left: 1.2rem;
  position: relative;
}

/* Grünes, leuchtendes Hackerl vor jedem Feature */
.plan-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: #22c55e; /* hellgrün */
  font-weight: 900;
  text-shadow: 0 0 8px rgba(34, 197, 94, 0.8);
  animation: glowPulse 1.8s infinite ease-in-out;
}

/* Leuchtende Animation */
@keyframes glowPulse {
  0%, 100% {
    text-shadow: 0 0 8px rgba(34, 197, 94, 0.8);
    opacity: 1;
  }
  50% {
    text-shadow: 0 0 16px rgba(34, 197, 94, 1);
    opacity: 0.85;
  }
}


.plan-card .btn {
  width: 100%;
  text-align: center;
  border-radius: 12px;
}

/* ===== PREMIUM CTA ===== */
.premium-cta {
  text-align: center;
  padding: 6rem 2rem 8rem;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 1), rgba(225, 29, 72, 0.1));
}

.premium-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
}

.premium-cta p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
  .premium-plans {
    flex-direction: column;
    align-items: center;
  }

  .plan-card {
    width: 90%;
  }
}


/* =========================================================
   🔧 RESPONSIVE SCALING ADD-ONS (non-destructive overrides)
   Paste at the very end of style.css
   ========================================================= */

/* 1) Fluid base type + spacing scale */
:root {
  /* Fluid root size: ~14.5px on sehr kleinen Phones → ~17.5px auf großen Desktops */
  --fluid-rem: clamp(14.5px, 0.85vw + 12px, 17.5px);

  /* Fluid spacing scale (nutzen wir in Overrides unten) */
  --space-0: clamp(0.25rem, 0.15rem + 0.3vw, 0.5rem);
  --space-1: clamp(0.5rem, 0.25rem + 0.6vw, 1rem);
  --space-2: clamp(0.75rem, 0.4rem + 0.9vw, 1.5rem);
  --space-3: clamp(1rem, 0.6rem + 1.2vw, 2rem);
  --space-4: clamp(1.5rem, 0.9rem + 1.8vw, 3rem);

  /* Fluid radius */
  --radius-fluid: clamp(12px, 1.2vw + 8px, 24px);

  /* Max content width helper */
  --content-max: min(1200px, 92vw);
}

html { font-size: var(--fluid-rem); }

/* 2) Desktop polish (>= 1200px) */
@media (min-width: 1200px) {
  header {
    max-width: 1100px;
    width: 72%;
  }
  .hero .btn { padding: 1rem 2.2rem; }
  .features,
  .commands-section { max-width: var(--content-max); }
  .player-card { transform: scale(1.06); }
}

/* 3) Large tablet / small desktop (992–1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  header {
    width: 80%;
    padding: 0.6rem 1.4rem;
    border-radius: calc(var(--radius-fluid) + 4px);
  }
  .hero-content { padding: var(--space-3); transform: translateY(-6%); }
  .btn { padding: 0.85rem 1.8rem; border-radius: calc(var(--radius-fluid) - 4px); }
  .features { gap: var(--space-3); padding: 0 var(--space-2); }
  .feature-card { padding: var(--space-3) var(--space-2); border-radius: var(--radius-fluid); }
  .commands-section { gap: var(--space-2); }
  .plan-card { width: 300px; }
}

/* 4) Tablet / Landscape phone (768–991px) */
@media (max-width: 991px) and (min-width: 768px) {
  header {
    width: 86%;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-fluid);
  }
  nav { gap: 0.8rem; }
  nav a { padding: 0.35rem 0.7rem; }
  .hero { min-height: 88vh; }
  .hero-content { padding: var(--space-2) var(--space-3); transform: translateY(-4%); }
  .hero p { font-size: 1rem; max-width: 600px; }
  .btn { padding: 0.8rem 1.6rem; }
  .features { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--space-2); }
  .feature-card img { width: 64px; height: 64px; }
  .embed-container.single img { width: 88%; border-radius: calc(var(--radius-fluid) + 2px); }
  .trusted-servers img { width: 64px; height: 64px; }
  .player-card { width: 420px; padding: 2.4rem 2rem; transform: none; }
}

/* 5) Phones (<= 767px) */
@media (max-width: 767px) {
  header {
    width: 92%;
    padding: 0.55rem 1rem;
    border-radius: var(--radius-fluid);
    gap: 0.5rem;
  }
  .logo { font-size: 1.05rem; gap: 0.4rem; }
  .logo img { height: 28px; }
  nav { gap: 0.6rem; }
  nav a { padding: 0.35rem 0.6rem; font-size: 0.95rem; }
  .hero { min-height: 84vh; }
  .hero h1 { font-size: clamp(1.9rem, 6.2vw, 2.3rem); }
  .hero p { font-size: 0.98rem; margin-bottom: var(--space-2); }
  .btns { gap: var(--space-1); }
  .btn { padding: 0.75rem 1.35rem; border-radius: calc(var(--radius-fluid) - 6px); }
  .features { gap: var(--space-2); padding: 0 var(--space-1); }
  .feature-card { padding: var(--space-2); }
  .feature-card h3 { font-size: 1.15rem; }
  .feature-card p { font-size: 0.98rem; }
  .trusted-servers-grid { gap: 1rem; }
  .server-card { padding: 1.1rem; }
  .server-card img { width: 56px; height: 56px; }
  .audio-promo { gap: var(--space-2); padding: 4.5rem var(--space-1); }
  .player-card { width: 92%; max-width: 340px; padding: 2rem 1.5rem; border-radius: calc(var(--radius-fluid) + 2px); }
  .player-card .track-info h4 { font-size: 1.35rem; }
  .ctrl-btn { width: 44px; height: 44px; font-size: 1.15rem; }
  .ctrl-btn.play { width: 54px; height: 54px; font-size: 1.35rem; }
  .commands-section { grid-template-columns: 1fr; gap: var(--space-2); padding: 0 var(--space-1); }
  .command-item { padding: 0.65rem 0.9rem; }
  .premium-plans { padding: 4rem var(--space-1); }
  .plan-card { width: 100%; max-width: 520px; }
  .plan-header h2 { font-size: 1.35rem; }
  .plan-header .price { font-size: 1.25rem; }
  .terms-content, .privacy-content { border-radius: var(--radius-fluid); }
}

/* 6) Small phones (<= 400px) */
@media (max-width: 400px) {
  header { width: 94%; padding: 0.5rem 0.8rem; }
  nav { gap: 0.5rem; }
  nav a { font-size: 0.9rem; }
  .hero h1 { font-size: clamp(1.7rem, 7vw, 2rem); }
  .btn { padding: 0.7rem 1.2rem; }
  .feature-card { padding: 1rem; }
  .player-card { max-width: 320px; }
}

/* 7) Ultra-wide (>= 1600px) */
@media (min-width: 1600px) {
  html { font-size: clamp(16px, 1vw + 12px, 19px); }
  header { width: 64%; }
  .hero-content { transform: translateY(-12%); }
  .embed-container.single img { max-width: 1080px; }
}

/* 8) Motion & safe-area tweaks */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
@supports (padding: max(0px)) {
  body { padding-left: max(0px, env(safe-area-inset-left)); padding-right: max(0px, env(safe-area-inset-right)); }
}

/* ==========================================
   ✅ FINAL FIX: Header responsive alignment
   ========================================== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1rem;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 1.2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.logo img { height: 40px; width: auto; }

nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 0.45rem 0.9rem;
  font-size: 1rem;
  border-radius: 6px;
  transition: background 0.2s ease;
}
nav a:hover { background: rgba(255, 255, 255, 0.08); }

/* 📱 MOBILE (≤ 768px) */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 94%;
    gap: 0.6rem;
    padding: 0.8rem 1rem;
  }
  .logo {
    justify-content: center;
    margin-bottom: 0.4rem;
  }
  .logo img { height: 32px; }
  nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.6rem;
    width: 100%;
  }
  nav a {
    font-size: 0.95rem;
    padding: 0.4rem 0.8rem;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
  }
  nav a:hover {
    background: rgba(225,29,72,0.12);
  }
}

/* 💻 TABLET / SMALL DESKTOP (769–1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  header {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.8rem;
  }
  nav {
    justify-content: flex-end;
    gap: 0.8rem;
  }
  nav a {
    font-size: 0.98rem;
    padding: 0.45rem 0.85rem;
  }
}

/* ==========================================
   FOOTER – Reedroux (Black & Light)
   ========================================== */

.site-footer {
  background: rgba(0, 0, 0, 0.25); /* <<< DEUTLICH HELLER */
  backdrop-filter: blur(8px);
  color: #ffffff;
}

/* CONTAINER – WEIT AUSSEN */
.footer-content {
  max-width: 1800px;
  margin: 0 auto;
  padding: 3.5rem 5rem;
}

/* ==========================================
   COLUMNS
   ========================================== */

.footer-columns {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3.6rem;
}

/* ==========================================
   BRANDING
   ========================================== */

.footer-branding {
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;

  /* sehr heller Black-Glass */
  background: rgba(0, 0, 0, 0.18);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.footer-brand-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
}

.footer-brand-desc {
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.95);
}

/* ==========================================
   LINKS
   ========================================== */

.footer-col h4 {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}

.footer-col a {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.93);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #ffffff;
}

/* ==========================================
   BOTTOM BAR
   ========================================== */

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.35); /* heller Trenner */
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy,
.footer-extra {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.9);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1200px) {
  .footer-content {
    padding: 3rem 3rem;
  }
}

@media (max-width: 900px) {
  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 2.6rem;
  }
}

@media (max-width: 600px) {
  .footer-content {
    padding: 2.2rem 1.5rem;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-branding {
    align-items: center;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}
