/* ---------------------------------------------------
   GLOBAL
--------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  background: #0d0d0d;
  color: #fff;
  overflow-x: hidden;
}

/* Orbitron Schrift für Titel */
.orbitron,
.hero-title,
.section-title,
.plan-title,
.legal-section h1,
.legal-section h2 {
  font-family: "Orbitron", sans-serif;
  letter-spacing: 1px;
}

/* ---------------------------------------------------
   GOLD ORBS BACKGROUND – MIX AUS GROSS & KLEIN
--------------------------------------------------- */
.orbs {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: #0d0d0d;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(25px);
  opacity: 0.55;
  animation: floatOrb linear infinite;
}

/* Große Orbs */
.orb.big {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255,200,0,0.45), rgba(255,150,0,0.15));
}

/* Kleine Orbs */
.orb.small {
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, rgba(255,200,0,0.35), rgba(255,150,0,0.1));
}

@keyframes floatOrb {
  0% { transform: translate(0,0) scale(1); }
  50% { transform: translate(40px, -60px) scale(1.15); }
  100% { transform: translate(-20px, 20px) scale(1); }
}

/* ---------------------------------------------------
   HERO
--------------------------------------------------- */
.hero {
  text-align: center;
  padding: 40px 20px;
}

.hero-logo {
  width: 180px;
  margin: 0 auto 20px auto;
  display: block;
}

/* Pulse Glow Titel */
.hero-title {
  position: relative;
  display: inline-block;
  font-size: 3rem;
  font-weight: 900;
  font-family: "Orbitron", sans-serif;

  background: linear-gradient(90deg, #ff9900, #ffd700);
  -webkit-background-clip: text;
  color: transparent;

  animation: pulseGlow 3s infinite ease-in-out;
  text-shadow: 0 0 12px rgba(255,200,0,0.5);

   margin-bottom: 35px; /* Abstand zum Banner */
}

@keyframes pulseGlow {
  0% {
    text-shadow: 0 0 10px rgba(255,200,0,0.4);
    transform: scale(1);
  }
  50% {
    text-shadow: 0 0 28px rgba(255,200,0,1);
    transform: scale(1.03);
  }
  100% {
    text-shadow: 0 0 10px rgba(255,200,0,0.4);
    transform: scale(1);
  }
}

.hero-banner {
  width: 90%;
  max-width: 900px;
  margin: 0 auto 20px auto;
  display: block;
}

/* ---------------------------------------------------
   SECTION TITLES
--------------------------------------------------- */
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #ff9900, #ffd700);
  -webkit-background-clip: text;
  color: transparent;
}

/* ---------------------------------------------------
   TEAM SECTION
--------------------------------------------------- */
.team-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 20px;
}

.team-card {
  width: 260px;
  padding: 20px;
  background: rgba(255,165,0,0.05);
  border: 1px solid rgba(255,165,0,0.25);
  border-radius: 12px;
  text-align: center;
  transition: 0.3s;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(255,165,0,0.35);
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 15px;
}

/* ---------------------------------------------------
   STREAMING PLÄNE
--------------------------------------------------- */
.plan-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 20px;
  flex-wrap: wrap;
}

.plan-box {
  text-align: center;
}

.plan-title {
  font-size: 1.6rem;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #ff9900, #ffd700);
  -webkit-background-clip: text;
  color: transparent;
}

.plan-img {
  width: 350px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(255,165,0,0.35);
}

/* ---------------------------------------------------
   FOOTER
--------------------------------------------------- */
.footer {
  text-align: center;
  padding: 30px;
  opacity: 0.7;
}

.footer a {
  color: #ffd27f;
  text-decoration: none;
}

/* ---------------------------------------------------
   COOKIE BANNER
--------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  padding: 20px;
  border-top: 1px solid rgba(255,165,0,0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-btn {
  padding: 8px 16px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

.cookie-accept {
  background: #ff9900;
  color: #000;
}

.cookie-decline {
  background: #333;
  color: #fff;
}

/* ---------------------------------------------------
   LEGAL PAGES (IMPRESSUM / DATENSCHUTZ)
--------------------------------------------------- */
.back-btn {
  display: inline-block;
  margin: 20px;
  padding: 10px 18px;
  background: rgba(255,165,0,0.15);
  border: 1px solid rgba(255,165,0,0.4);
  border-radius: 8px;
  color: #ffd27f;
  text-decoration: none;
  transition: 0.3s;
}

.back-btn:hover {
  background: rgba(255,165,0,0.35);
  box-shadow: 0 0 20px rgba(255,165,0,0.4);
}

.legal-section {
  max-width: 800px;
  margin: 60px auto;
  padding: 20px;
  background: rgba(255,165,0,0.05);
  border: 1px solid rgba(255,165,0,0.25);
  border-radius: 12px;
}

.legal-section h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #ff9900, #ffd700);
  -webkit-background-clip: text;
  color: transparent;
}

.legal-section h2 {
  margin-top: 25px;
  margin-bottom: 10px;
  color: #ffd27f;
}

/* VOD Avatar Fix – Desktop kleiner, Mobile perfekt */
.vod-avatar {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

/* Mobile: Avatare automatisch kleiner */
@media (max-width: 600px) {
  .vod-avatar {
    width: 90px;
    height: 90px;
  }
}

/* ---------------------------------------------------
   LIVE STATUS BADGES
--------------------------------------------------- */
.live-status {
  display: inline-block;
  padding: 6px 14px;
  margin: 10px auto 15px auto;
  border-radius: 8px;
  font-family: "Orbitron", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255,165,0,0.15);
  border: 1px solid rgba(255,165,0,0.35);
  box-shadow: 0 0 12px rgba(255,165,0,0.25);
  width: fit-content;
}

/* LIVE = ROT */
.live-status.live {
  background: rgba(255,0,0,0.20);
  border-color: rgba(255,0,0,0.55);
  box-shadow: 0 0 18px rgba(255,0,0,0.45);
  color: #ff6b6b;
}

/* OFFLINE = GELB */
.live-status.offline {
  background: rgba(255,200,0,0.20);
  border-color: rgba(255,200,0,0.55);
  box-shadow: 0 0 18px rgba(255,200,0,0.45);
  color: #ffe28a;
}

.team-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

/* Plan-Titel NICHT als Link darstellen */
.plan-link h3,
.plan-link .plan-title {
  text-decoration: none;
  color: inherit;
  pointer-events: none;
}

/* ---------------------------------------------------
   HRX INFO BOXEN – GLEICH GROSS + OUTER GLOW
--------------------------------------------------- */

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.info-box {
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  padding: 25px;
  border-radius: 14px;
  border: 1px solid #6a2cff;

  /* Doppelter Glow */
  box-shadow:
    0 0 18px rgba(106, 44, 255, 0.25),
    0 0 35px rgba(106, 44, 255, 0.35);

  color: #fff;
  font-size: 17px;
  line-height: 1.6;
  width: 100%;
  max-width: 500px;
  min-height: 350px;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.info-avatar {
  width: 120px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.info-title {
  margin: 0;
  color: #b07bff;
  text-shadow: 0 0 8px rgba(176, 123, 255, 0.6);
}

.info-text {
  margin-top: 10px;
}

/* ---------------------------------------------------
   STREAMINGPLÄNE – TITEL NICHT KLICKBAR + OHNE UNTERSTRICH
--------------------------------------------------- */

.plan-title {
  font-size: 1.6rem;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #ff9900, #ffd700);
  -webkit-background-clip: text;
  color: transparent;
  text-decoration: none;
  pointer-events: none;
  border-bottom: none;
}

/* Nur die PNGs sind klickbar */
.plan-box a {
  text-decoration: none;
}

.plan-img {
  width: 350px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(255,165,0,0.35);
  transition: 0.2s;
}

.plan-img:hover {
  transform: scale(1.03);
}

/* Abstand unter den Info-Boxen (Desktop + Mobile) */
.vod-section {
  margin-bottom: 80px !important;
}

