/* ============================================
   Let's Urbex - style.css
   Urban Explorer Vibes | Dark & Adventurous
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Nunito:wght@400;600;700;800&display=swap');

/* ---- CSS Variables ---- */
:root {
  --primary:     #5b8fa8;      /* Skull-Teal aus dem Logo */
  --primary-dark:#3d7089;
  --accent:      #d4813a;      /* Warmes Orange/Bart-Gold aus dem Logo */
  --accent2:     #e8a020;      /* Helles Gold für Badges */
  --dark:        #141618;
  --darker:      #0d0f10;
  --surface:     #1e2225;
  --surface2:    #292e33;
  --text:        #e8e8e8;
  --text-muted:  #7a8490;
  --radius:      14px;
  --radius-sm:   8px;
  --shadow:      0 8px 32px rgba(0,0,0,.55);
  --transition:  .25s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background-color: var(--darker);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  background: linear-gradient(145deg, #0d1a22 0%, #0f1e28 40%, #0d0f10 100%);
  overflow: hidden;
  padding: 60px 0 70px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 65% 35%, rgba(91,143,168,.22) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(212,129,58,.10) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23ffffff06'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Logo */
.logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
  animation: fadeDown .7s ease both;
}

.logo-wrap img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 4px 24px rgba(91,143,168,.55));
  mix-blend-mode: lighten;
}

/* Hero Grid */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-text { animation: fadeLeft .75s .1s ease both; }

.hero-text h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.05;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero-text h1 span { color: var(--accent); }

.hero-text p {
  font-size: 1.05rem;
  color: #aab5bf;
  max-width: 520px;
  margin-bottom: 14px;
}

.hero-text p strong { color: #dde4e8; }

.hero-text .sig {
  margin-top: 22px;
  font-weight: 700;
  color: var(--primary);
  font-size: .95rem;
  letter-spacing: .5px;
}

.hero-image-wrap {
  position: relative;
  animation: fadeRight .75s .15s ease both;
}

.hero-image-wrap img {
  border-radius: 18px;
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
  max-height: 420px;
}

.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  box-shadow: inset 0 0 0 2px rgba(74,143,168,.25);
  pointer-events: none;
}

/* ============================================================
   SECTION GENERIC
   ============================================================ */
.section { padding: 70px 0; }

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 1.5px;
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: .95rem;
  margin-bottom: 44px;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 10px;
  border-radius: 2px;
}

/* ============================================================
   PLATFORMS / BUTTONS GRID
   ============================================================ */
.platforms-section { background: var(--dark); }

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.platform-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 28px 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
  animation: fadeUp .6s ease both;
}

.platform-card:hover {
  transform: translateY(-5px);
  background: var(--surface2);
  border-color: rgba(74,143,168,.4);
  box-shadow: 0 12px 30px rgba(0,0,0,.4);
}

.platform-card i {
  font-size: 2rem;
  transition: color var(--transition);
}

.platform-card span {
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .4px;
  text-transform: uppercase;
}

/* Platform brand colours */
.c-youtube  { color: #ff0000; }
.c-twitch   { color: #9146ff; }
.c-multistream { color: var(--primary); }
.c-shop     { color: var(--accent); }
.c-instagram{ color: #e1306c; }
.c-whatsapp { color: #25d366; }
.c-community{ color: var(--primary); }
.c-tiktok   { color: #ee1d52; }
.c-facebook { color: #1877f2; }
.c-telegram { color: #2aabee; }
.c-discord  { color: #5865f2; }
.c-podcast  { color: #8e44ad; }
.c-paypal   { color: #003087; }

/* ============================================================
   PARTNER SECTION
   ============================================================ */
.partner-section { background: var(--darker); }

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.partner-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
  border-color: rgba(91,143,168,.35);
}

.partner-avatar {
  width: 110px;
  height: 110px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(91,143,168,.3);
}

.partner-avatar-placeholder {
  width: 110px;
  height: 110px;
  border-radius: 14px;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  flex-shrink: 0;
  border: 2px solid rgba(91,143,168,.2);
}

.partner-info { flex: 1; }

.partner-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: .8px;
  margin-bottom: 4px;
}

.partner-info p {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.rabatt-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212,129,58,.12);
  border: 1px solid rgba(212,129,58,.4);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 14px;
}

.btn-partner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 8px 18px;
  font-size: .85rem;
  font-weight: 700;
  transition: background var(--transition), transform var(--transition);
}

.btn-partner:hover {
  background: var(--primary-dark);
  transform: translateX(3px);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--darker);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-copy {
  font-size: .82rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: .82rem;
  color: var(--text-muted);
  font-weight: 600;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--primary); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeDown  { from { opacity:0; transform:translateY(-20px) } to { opacity:1; transform:none } }
@keyframes fadeLeft  { from { opacity:0; transform:translateX(-28px) } to { opacity:1; transform:none } }
@keyframes fadeRight { from { opacity:0; transform:translateX( 28px) } to { opacity:1; transform:none } }
@keyframes fadeUp    { from { opacity:0; transform:translateY( 22px) } to { opacity:1; transform:none } }

/* stagger platform cards */
.platform-card:nth-child(1)  { animation-delay:.05s }
.platform-card:nth-child(2)  { animation-delay:.10s }
.platform-card:nth-child(3)  { animation-delay:.15s }
.platform-card:nth-child(4)  { animation-delay:.20s }
.platform-card:nth-child(5)  { animation-delay:.25s }
.platform-card:nth-child(6)  { animation-delay:.30s }
.platform-card:nth-child(7)  { animation-delay:.35s }
.platform-card:nth-child(8)  { animation-delay:.40s }
.platform-card:nth-child(9)  { animation-delay:.45s }
.platform-card:nth-child(10) { animation-delay:.50s }
.platform-card:nth-child(11) { animation-delay:.55s }
.platform-card:nth-child(12) { animation-delay:.60s }
.platform-card:nth-child(13) { animation-delay:.65s }

/* ============================================================
   SHOP SECTION
   ============================================================ */
.shop-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  text-align: center;
}

.shop-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  filter: brightness(.35) saturate(.8);
  transform: scale(1.04);
  transition: transform 8s ease;
}

.shop-section:hover .shop-bg {
  transform: scale(1.08);
}

.shop-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13,15,16,.55) 0%,
    rgba(13,15,16,.2) 40%,
    rgba(13,15,16,.75) 100%
  );
}

.shop-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.shop-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,129,58,.18);
  border: 1px solid rgba(212,129,58,.5);
  color: var(--accent);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
}

.shop-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: #fff;
  letter-spacing: 2px;
  line-height: 1;
  text-shadow: 0 4px 24px rgba(0,0,0,.6);
  margin: 0;
}

.shop-sub {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0;
}

.shop-desc {
  font-size: 1rem;
  color: #c8d2da;
  max-width: 500px;
  margin: 0;
  line-height: 1.7;
}

.shop-desc strong { color: #fff; }

.btn-shop {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 36px;
  border-radius: 50px;
  letter-spacing: .5px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 6px 24px rgba(212,129,58,.4);
}

.btn-shop:hover {
  background: #bf6e28;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(212,129,58,.55);
  color: #fff;
}

/* Info-Box unter Partnern */
.partner-info-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 28px;
  background: rgba(91,143,168,.08);
  border: 1px solid rgba(91,143,168,.25);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.partner-info-box i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.partner-info-box p {
  font-size: .9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

.partner-info-box p strong { color: var(--text); }

/* ============================================================
   LIVESTREAM SECTION
   ============================================================ */
.livestream-section { background: var(--dark); }

/* Live-Dot im Titel */
.live-dot-title { display: inline-block; margin-right: 10px; }
.live-dot-header {
  display: inline-block;
  width: 12px; height: 12px;
  background: #e53e3e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(229,62,62,.6);
  animation: livePulse 1.4s infinite;
  vertical-align: middle;
  margin-bottom: 3px;
}

/* 3-spaltig */
.stream-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* -- Stream Card -- */
.stream-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-decoration: none;
  color: var(--text);
  animation: fadeUp .5s ease both;
}

.stream-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0,0,0,.5);
  border-color: rgba(91,143,168,.4);
  color: var(--text);
}

/* LIVE-Zustand: linker farbiger Rand */
.stream-card.stream-live {
  border-color: rgba(229,62,62,.5);
  box-shadow: 0 0 0 1px rgba(229,62,62,.25), inset 3px 0 0 #e53e3e;
}

.stream-card.stream-live:hover {
  border-color: #e53e3e;
  box-shadow: 0 16px 36px rgba(229,62,62,.25), inset 3px 0 0 #e53e3e;
}

/* Card Info */
.stream-card-info {
  padding: 16px 16px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stream-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Platform Badge */
.stream-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .4px;
  padding: 4px 10px;
  border-radius: 5px;
}

.badge-twitch  { background: #9146ff; color: #fff; }
.badge-youtube { background: #ff0000; color: #fff; }

/* Status */
.stream-status {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.stream-status.live    { color: #e53e3e; }
.stream-status.offline { color: var(--text-muted); }

.live-dot, .offline-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.live-dot {
  background: #e53e3e;
  animation: livePulse 1.4s infinite;
}

.offline-dot { background: var(--text-muted); }

@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(229,62,62,.6); }
  70%  { box-shadow: 0 0 0 7px rgba(229,62,62,0); }
  100% { box-shadow: 0 0 0 0 rgba(229,62,62,0); }
}

/* Kanal-Name & Titel */
.stream-name {
  font-weight: 800;
  font-size: .95rem;
  color: #fff;
}

.stream-title, .stream-channel {
  font-size: .8rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Stats */
.stream-card-stats {
  display: flex;
  gap: 0;
  margin-top: 14px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.stream-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 8px;
  gap: 3px;
  border-right: 1px solid rgba(255,255,255,.06);
}

.stream-stat:last-child { border-right: none; }

.stream-stat i {
  font-size: .75rem;
  color: var(--text-muted);
}

.stat-label {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-muted);
  font-weight: 700;
}

.stat-value {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}

/* Skeleton Loader */
.stream-skeleton {
  min-height: 200px;
  background: linear-gradient(
    90deg,
    var(--surface) 25%,
    var(--surface2) 50%,
    var(--surface) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Error Box */
.stream-error {
  background: rgba(229,62,62,.08);
  border: 1px solid rgba(229,62,62,.3);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  color: #f08080;
  font-size: .9rem;
  line-height: 1.8;
}
.stream-error i { font-size: 1.5rem; display: block; margin-bottom: 10px; }
.stream-error code {
  background: rgba(255,255,255,.08);
  padding: 2px 7px;
  border-radius: 4px;
  font-size: .82rem;
}

/* Multistream Button */
.btn-multistream {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid rgba(91,143,168,.4);
  color: var(--primary);
  font-weight: 800;
  font-size: .95rem;
  padding: 13px 30px;
  border-radius: 50px;
  letter-spacing: .3px;
  transition: background var(--transition), border-color var(--transition),
              color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-multistream:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(91,143,168,.35);
}

/* ============================================================
   LEGAL PAGES (impressum.php / datenschutz.php)
   ============================================================ */
.legal-hero {
  position: relative;
  background: linear-gradient(145deg, #0d1a22 0%, #0f1e28 40%, #0d0f10 100%);
  overflow: hidden;
  padding: 50px 0 40px;
  text-align: center;
}

.legal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 65% 35%, rgba(91,143,168,.15) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(212,129,58,.08) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23ffffff06'/%3E%3C/svg%3E");
  pointer-events: none;
}

.legal-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.legal-logo img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 4px 20px rgba(91,143,168,.5));
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(91,143,168,.35);
  color: var(--primary);
  font-weight: 700;
  font-size: .9rem;
  padding: 10px 24px;
  border-radius: 50px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  text-decoration: none;
}

.btn-back:hover {
  background: var(--primary);
  color: #fff;
  transform: translateX(-3px);
}

/* Content Area */
.legal-content {
  background: var(--darker);
  padding: 50px 0 80px;
}

.legal-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  padding: 40px 44px;
  max-width: 820px;
  margin: 0 auto;
}

.legal-card h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: #fff;
  letter-spacing: 1.5px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(91,143,168,.25);
}

.legal-card h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--primary);
  letter-spacing: 1px;
  margin-top: 36px;
  margin-bottom: 10px;
}

.legal-card p {
  font-size: .95rem;
  color: #b0bac4;
  line-height: 1.8;
  margin-bottom: 0;
}

.legal-card a {
  color: var(--primary);
  text-decoration: none;
}

.legal-card a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.legal-info-block {
  background: var(--surface2);
  border-left: 3px solid var(--primary);
  border-radius: 8px;
  padding: 16px 20px;
  margin-top: 10px;
}

.legal-info-block p { color: #c8d2da; }

.legal-fanpaket-block {
  background: rgba(212,129,58,.07);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 16px 20px;
  margin-top: 10px;
}

.legal-fanpaket-block p { color: #c8d2da; }

.legal-highlight-box {
  background: rgba(91,143,168,.07);
  border: 1px solid rgba(91,143,168,.2);
  border-radius: 8px;
  padding: 14px 18px;
  margin-top: 10px;
}

.legal-highlight-box p { color: #c8d2da; font-size: .9rem; }

.legal-service-block {
  background: var(--surface2);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 12px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color var(--transition);
}

.legal-service-block:hover { border-color: rgba(91,143,168,.3); }

.legal-service-block i {
  font-size: 1.2rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.legal-service-block p { color: #b0bac4; font-size: .9rem; margin: 0; }
.legal-service-block strong { color: #dde4e8; }

.divider-legal {
  border: none;
  border-top: 1px solid rgba(255,255,255,.07);
  margin: 32px 0;
}

/* Legal footer */
.legal-footer {
  background: var(--darker);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 28px 0;
  text-align: center;
}

.legal-footer p {
  font-size: .82rem;
  color: var(--text-muted);
}

.legal-footer a {
  color: var(--text-muted);
  font-weight: 600;
  transition: color var(--transition);
}

.legal-footer a:hover { color: var(--primary); }

@media (max-width: 640px) {
  .legal-card { padding: 28px 18px; }
  .legal-card h1 { font-size: 2rem; }
  .legal-service-block { flex-direction: column; gap: 8px; }
}

/* ============================================================
   COOKIE MODAL
   ============================================================ */
.cookie-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-fade-in  { animation: cookieFadeIn  .35s ease both; }
.cookie-fade-out { animation: cookieFadeOut .35s ease both; }

@keyframes cookieFadeIn  { from { opacity:0; } to { opacity:1; } }
@keyframes cookieFadeOut { from { opacity:1; } to { opacity:0; } }

.cookie-modal {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 36px 32px 28px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,.7);
  max-height: 90vh;
  overflow-y: auto;
  animation: modalSlideUp .35s ease both;
}

@keyframes modalSlideUp {
  from { transform: translateY(30px); opacity:0; }
  to   { transform: translateY(0);    opacity:1; }
}

.cookie-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.cookie-close:hover { color: #fff; background: rgba(255,255,255,.08); }

.cookie-logo { display: flex; justify-content: center; margin-bottom: 20px; }
.cookie-logo img {
  width: 80px; height: 80px;
  object-fit: contain;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 2px 10px rgba(91,143,168,.4));
}

.cookie-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: #fff;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 18px;
}

.cookie-body p { font-size: .88rem; color: #b0bac4; line-height: 1.75; margin-bottom: 12px; }
.cookie-body p:last-child { margin-bottom: 0; }
.cookie-body strong { color: #dde4e8; }

.cookie-buttons { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }

.cookie-btn-modal {
  width: 100%;
  padding: 13px 20px;
  border-radius: 8px;
  border: none;
  font-family: 'Nunito', sans-serif;
  font-size: .95rem;
  font-weight: 800;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.cookie-btn-modal:hover { transform: translateY(-1px); }

.cookie-btn-all       { background: var(--primary); color: #fff; }
.cookie-btn-all:hover { background: var(--primary-dark); }
.cookie-btn-necessary { background: var(--surface2); color: var(--text); border: 1px solid rgba(255,255,255,.1); }
.cookie-btn-necessary:hover { background: #353b42; }
.cookie-btn-save      { background: transparent; color: var(--text-muted); border: 1px solid rgba(255,255,255,.08); }
.cookie-btn-save:hover { color: #fff; background: rgba(255,255,255,.05); }

.cookie-footer-link { text-align: center; margin-top: 16px; }
.cookie-footer-link a { font-size: .82rem; color: var(--primary); text-decoration: underline; }
.cookie-footer-link a:hover { color: var(--accent); }

@media (max-width: 480px) {
  .cookie-modal { padding: 28px 20px 22px; }
  .cookie-title { font-size: 1.5rem; }
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(91,143,168,.35);
  color: var(--primary);
  font-weight: 700;
  font-size: .9rem;
  padding: 10px 24px;
  border-radius: 50px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  text-decoration: none;
}

.btn-back:hover {
  background: var(--primary);
  color: #fff;
  transform: translateX(-3px);
}

.legal-text-block {
  max-width: 780px;
  margin: 0 auto;
}

.legal-text-block h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: var(--primary);
  letter-spacing: 1px;
  margin-top: 32px;
  margin-bottom: 8px;
}

.legal-text-block p {
  font-size: .95rem;
  color: #b0bac4;
  line-height: 1.85;
  margin-bottom: 0;
}

.legal-text-block p + p { margin-top: 10px; }

.legal-text-block a {
  color: var(--primary);
  text-decoration: none;
}

.legal-text-block a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.legal-text-block strong { color: #dde4e8; }
.legal-text-block .muted { opacity: .6; font-size: .85rem; }

/* Service-Zeilen im Datenschutz */
.legal-services {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  margin-bottom: 8px;
}

.legal-service-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: .88rem;
  color: #b0bac4;
  transition: border-color var(--transition);
}

.legal-service-row:hover { border-color: rgba(91,143,168,.3); }

.legal-service-row i { font-size: 1.1rem; flex-shrink: 0; width: 20px; text-align: center; }

.legal-service-row strong { color: #dde4e8; }

.legal-service-row a {
  color: var(--primary);
  text-decoration: none;
  margin-left: 4px;
}

.legal-service-row a:hover { color: var(--accent); text-decoration: underline; }

/* ============================================================
   UNTERSTÜTZEN SECTION
   ============================================================ */
.unterstuetzen-section { background: var(--dark); }

.unterstuetzen-grid {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  gap: 40px;
  align-items: center;
}

.unterstuetzen-text p {
  font-size: 1rem;
  color: #b0bac4;
  line-height: 1.8;
  margin-bottom: 12px;
}

.unterstuetzen-text p strong { color: #dde4e8; }

/* Button + Icons direkt unter Text */
.unterstuetzen-btn-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.btn-paypal-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 15px 28px;
  background: #ffc439;
  color: #1a1a1a;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 6px 24px rgba(255,196,57,.3);
}

.btn-paypal-large:hover {
  background: #f0b90b;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255,196,57,.45);
  color: #1a1a1a;
}

.btn-paypal-large strong { color: #003087; }
.btn-paypal-large span  { color: #1a1a1a; }

.payment-icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.payment-icon {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .5px;
}

/* Bild rechts – kleiner */
.unterstuetzen-image img {
  width: 100%;
  max-height: 260px;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow);
}

/* Mobile: nur Text + Button, Bild ausblenden */
@media (max-width: 768px) {
  .unterstuetzen-grid { grid-template-columns: 1fr; }
  .unterstuetzen-image { display: none; }
  .payment-icons { justify-content: flex-start; }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { background: var(--dark); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.faq-open {
  border-color: rgba(91,143,168,.4);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Nunito', sans-serif;
  font-size: .97rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.faq-question:hover {
  background: var(--surface2);
  color: #fff;
}

.faq-item.faq-open .faq-question {
  color: #fff;
  background: var(--surface2);
}

.faq-icon {
  color: var(--primary);
  font-size: .85rem;
  flex-shrink: 0;
  transition: transform .3s ease;
}

.faq-answer {
  border-top: 1px solid rgba(255,255,255,.06);
}

.faq-answer-inner {
  padding: 18px 22px;
  font-size: .92rem;
  color: #b0bac4;
  line-height: 1.8;
}

.faq-answer-inner strong { color: #dde4e8; }
.faq-answer-inner a { color: var(--primary); text-decoration: none; }
.faq-answer-inner a:hover { color: var(--accent); text-decoration: underline; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 991px) {
  .hero-grid { grid-template-columns: 1fr; }
  /* Reihenfolge: Text (order 1) ? Bild (order 2) */
  .hero-text      { order: 1; }
  .hero-image-wrap { order: 2; }
  .hero-image-wrap img { max-height: 300px; margin: 0 auto; }
  .platforms-grid { grid-template-columns: repeat(3, 1fr); }
  .partner-grid { grid-template-columns: 1fr; }
  .stream-grid  { grid-template-columns: repeat(3, 1fr); }
}

/* Large mobile */
@media (max-width: 640px) {
  .platforms-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-text { text-align: center; }
  .hero-text h1 { font-size: 2.6rem; }
  .hero-text p, .hero-text .sig { text-align: center; }
  .partner-row { flex-wrap: wrap; }
  .partner-row-right { align-items: flex-start; width: 100%; }
  .partner-card { flex-direction: column; text-align: center; }
  .partner-avatar, .partner-avatar-placeholder { margin: 0 auto; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .stream-grid  { grid-template-columns: 1fr; }
  .btn-multistream { font-size: .85rem; padding: 11px 20px; }
}

/* Small mobile */
@media (max-width: 400px) {
  .platforms-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .platform-card { padding: 20px 10px 16px; }
}