/* ============================================================
   SCODDIP WEBSITE — STYLE.CSS
   Design: Neon-Brutalismus | Dark-Gaming | Comedy-Energy
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700;900&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */

:root {
  /* Farben */
  --orange:          #FF6B00;
  --orange-hot:      #FF3D00;
  --orange-muted:    #CC5500;
  --orange-glow:     rgba(255, 107, 0, 0.30);
  --orange-glow-sm:  rgba(255, 107, 0, 0.15);
  --orange-glow-xs:  rgba(255, 107, 0, 0.08);

  /* Backgrounds */
  --bg-base:         #060606;
  --bg-primary:      #0A0A0A;
  --bg-secondary:    #111111;
  --bg-tertiary:     #161616;
  --bg-card:         #1A1A1A;
  --bg-elevated:     #212121;
  --bg-hover:        #2A2A2A;

  /* Text */
  --text-white:      #FFFFFF;
  --text-bright:     #F0F0F0;
  --text-secondary:  #B0B0B0;
  --text-muted:      #6A6A6A;
  --text-faint:      #3A3A3A;

  /* Borders */
  --border-color:    rgba(255, 107, 0, 0.18);
  --border-hover:    rgba(255, 107, 0, 0.55);
  --border-subtle:   rgba(255, 255, 255, 0.06);

  /* Twitch */
  --twitch:          #9146FF;
  --instagram:       #E1306C;
  --youtube:         #FF0000;
  --spotify:         #1DB954;
  --discord:         #5865F2;

  /* Typografie */
  --font-display:    'Bebas Neue', sans-serif;
  --font-body:       'Inter', sans-serif;

  /* Spacing */
  --section-gap:     6rem;
  --container-max:   1280px;
  --radius:          0.5rem;
  --radius-lg:       1rem;
  --radius-xl:       1.5rem;

  /* Transitions */
  --transition-fast: 0.18s ease;
  --transition-mid:  0.32s ease;
  --transition-slow: 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================================
   RESET & BASE
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-base);
  color: var(--text-bright);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default;
}

/* Noise-Overlay über der gesamten Seite */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
  z-index: 9999;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--bg-base);
}
::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--orange-hot);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ============================================================
   UTILITIES
   ============================================================ */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--text-white);
  position: relative;
  display: inline-block;
}

.section-title .accent {
  color: var(--orange);
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
  display: block;
}

.orange-line {
  display: block;
  width: 3rem;
  height: 3px;
  background: var(--orange);
  margin-top: 1rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: #000;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-primary:hover {
  background: var(--orange-hot);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--orange-glow);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text-white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-hover);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-secondary:hover {
  background: var(--orange-glow-xs);
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

/* Scroll Reveal */
.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.scroll-reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.scroll-reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.scroll-reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Delay Klassen */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================================
   NAVIGATION
   ============================================================ */

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition-mid), backdrop-filter var(--transition-mid), box-shadow var(--transition-mid);
  padding: 1.25rem 0;
}

#navbar.scrolled {
  background: rgba(6, 6, 6, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-color);
  padding: 0.9rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: brightness(1);
  transition: filter var(--transition-fast);
}

.nav-logo:hover img {
  filter: drop-shadow(0 0 8px var(--orange));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  color: var(--text-secondary);
  transition: color var(--transition-fast), background var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-white);
  background: var(--bg-card);
}

.nav-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.nav-link.twitch-link:hover { color: var(--twitch); }
.nav-link.insta-link:hover  { color: var(--instagram); }
.nav-link.yt-link:hover     { color: var(--youtube); }
.nav-link.spotify-link:hover{ color: var(--spotify); }
.nav-link.discord-link:hover{ color: var(--discord); }

.nav-cta {
  font-size: 0.8rem;
  padding: 0.6rem 1.2rem;
}

/* ============================================================
   HERO
   ============================================================ */

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
  background: var(--bg-base);
}

/* Diagonaler Hintergrundakzent */
#hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, transparent 30%, rgba(255, 107, 0, 0.04) 100%);
  pointer-events: none;
}

/* Scanlines im Hero */
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0, 0, 0, 0.025) 3px,
    rgba(0, 0, 0, 0.025) 4px
  );
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

/* Hero — Links (Text) */
.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 99px;
  padding: 0.35rem 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 1.8rem;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: 0.88;
  letter-spacing: 0.01em;
  color: var(--text-white);
  margin-bottom: 1.5rem;
  position: relative;
}

.hero-title .line-orange {
  color: var(--orange);
  display: block;
  animation: glitch-text 6s ease-in-out infinite;
}

.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 420px;
}

.hero-countdown {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 0.75rem 1.25rem;
  margin-bottom: 2.5rem;
  font-size: 0.82rem;
}

.countdown-label {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-size: 0.7rem;
}

.countdown-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--orange);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Hero — Rechts (Bild) */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-photo-wrap {
  position: relative;
  max-width: 480px;
  width: 100%;
}

/* Orange Glow hinter dem Bild */
.hero-photo-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse at center, var(--orange-glow) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

.hero-photo {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  object-position: bottom;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 60px rgba(255, 107, 0, 0.2));
}

/* Floating GIF */
.hero-float-gif {
  position: absolute;
  top: 10%;
  right: -5%;
  width: 80px;
  height: auto;
  z-index: 3;
  animation: float 3.5s ease-in-out infinite;
  border-radius: 50%;
  overflow: hidden;
}

/* Overlapping Emotes auf dem Foto */
.hero-emote {
  position: absolute;
  z-index: 4;
}

.hero-emote-1 {
  bottom: 15%;
  left: -8%;
  width: 70px;
  transform: rotate(-12deg);
  animation: float 4s ease-in-out infinite 0.5s;
}

.hero-emote-2 {
  top: 20%;
  left: 5%;
  width: 55px;
  transform: rotate(8deg);
  animation: float 4.5s ease-in-out infinite 1s;
}

/* ============================================================
   SEKTION — TWITCH STREAM
   ============================================================ */

#stream {
  padding: var(--section-gap) 0;
  background: var(--bg-primary);
  position: relative;
}

#stream::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.stream-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.stream-header-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(145, 70, 255, 0.15);
  border: 1px solid rgba(145, 70, 255, 0.3);
  color: var(--twitch);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 99px;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--twitch);
  animation: pulse-dot 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

.stream-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 1.25rem;
  min-height: 480px;
}

#twitch-player,
#twitch-chat {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-secondary);
}

#twitch-player {
  min-height: 480px;
}

#twitch-chat {
  min-height: 480px;
}

.stream-footer {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.stream-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.stream-info svg {
  width: 16px;
  height: 16px;
  fill: var(--orange);
  flex-shrink: 0;
}

/* ============================================================
   SEKTION — ÜBER SCODDIP
   ============================================================ */

#about {
  padding: var(--section-gap) 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

/* Dezentes Hintergrund-Muster */
#about::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--orange-glow-xs) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Bild links */
.about-photo-wrap {
  position: relative;
}

.about-photo-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

/* Orange-Rahmen-Effekt */
.about-photo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--orange);
  border-radius: var(--radius-xl);
  opacity: 0.5;
  z-index: 2;
  pointer-events: none;
}

/* Gradient unten für sanften Übergang */
.about-photo-frame::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(transparent, var(--bg-secondary));
  z-index: 1;
  pointer-events: none;
}

.about-photo {
  width: 100%;
  max-height: 550px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-xl);
  display: block;
}

/* Mikrofon-Deko unten links */
.about-photo-decoration {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  width: 90px;
  height: 90px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border-hover);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  z-index: 3;
}

.about-photo-decoration img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text rechts */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-bio {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.about-bio strong {
  color: var(--text-white);
  font-weight: 600;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.about-feature-card:hover {
  border-color: var(--border-color);
  background: var(--bg-elevated);
}

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  display: block;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--text-white);
  margin-bottom: 0.4rem;
}

.feature-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   SEKTION — INSTAGRAM REELS
   ============================================================ */

#reels {
  padding: var(--section-gap) 0;
  background: var(--bg-primary);
  position: relative;
}

#reels::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--instagram), transparent);
}

.reels-header {
  text-align: center;
  margin-bottom: 3rem;
}

.reels-header .section-eyebrow {
  color: var(--instagram);
}

/* Karussell-Wrapper */
.reels-carousel-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.reels-carousel {
  display: flex;
  gap: 1rem;
  overflow: hidden;
  position: relative;
}

.reel-slide {
  flex: 0 0 calc(33.333% - 0.667rem);
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: transform var(--transition-mid), box-shadow var(--transition-mid);
  cursor: pointer;
}

.reel-slide:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(225, 48, 108, 0.2);
}

.reel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay auf den Reels */
.reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 1;
  transition: opacity var(--transition-mid);
}

.reel-mood-label {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--text-white);
  line-height: 1;
}

.reel-mood-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.3rem;
}

/* Instagram-Play-Icon oben rechts */
.reel-play-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reel-play-icon svg {
  width: 14px;
  height: 14px;
  fill: white;
}

/* Indikator-Punkte */
.reels-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.reels-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.reels-dot.active {
  background: var(--instagram);
  border-color: var(--instagram);
  width: 20px;
}

.reels-cta {
  text-align: center;
  margin-top: 2rem;
}

.btn-instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}

.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(225, 48, 108, 0.3);
}

/* ============================================================
   SEKTION — GALERIE
   ============================================================ */

#gallery {
  padding: var(--section-gap) 0;
  background: var(--bg-secondary);
}

.gallery-header {
  margin-bottom: 3rem;
}

/* CSS Columns Masonry */
.gallery-grid {
  columns: 4;
  column-gap: 1rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-mid);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--text-white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* ============================================================
   SEKTION — EMOTES
   ============================================================ */

#emotes {
  padding: var(--section-gap) 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

#emotes::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.emotes-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.emotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.emote-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1rem;
  cursor: pointer;
  position: relative;
  transition: border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  user-select: none;
}

.emote-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-elevated);
  box-shadow: 0 8px 28px var(--orange-glow-sm);
}

.emote-card.bouncing {
  animation: emote-bounce 0.5s ease;
}

.emote-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.emote-card:hover .emote-img {
  transform: scale(1.12);
}

.emote-name {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--text-white);
}

/* Tooltip */
.emote-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-elevated);
  border: 1px solid var(--border-hover);
  color: var(--text-secondary);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
  z-index: 10;
}

.emote-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--border-hover);
}

.emote-card:hover .emote-tooltip {
  opacity: 1;
}

.emotes-footer {
  text-align: center;
  margin-top: 2.5rem;
}

/* ============================================================
   SEKTION — HOLY (Partner)
   ============================================================ */

#holy {
  padding: 4.5rem 0;
  background: var(--bg-tertiary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

#holy::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.012) 0%, transparent 70%);
  pointer-events: none;
}

/* Header-Reihe: Titel + CTA */
.holy-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.holy-header-text {
  flex-shrink: 0;
}

.holy-powered-by {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.4rem;
}

.holy-title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  color: var(--text-white);
  line-height: 1;
}

.holy-subtitle {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  max-width: 480px;
}

/* 4 Produkt-Karten */
.holy-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.holy-product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: all var(--transition-mid);
  position: relative;
  overflow: hidden;
}

.holy-product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.holy-product-card:hover {
  border-color: rgba(255,255,255,0.18);
  background: var(--bg-elevated);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.holy-product-card:hover::before {
  opacity: 1;
}

/* Energy-Karte subtil anders gestaltet */
.holy-product-card--energy {
  border-color: rgba(255, 107, 0, 0.1);
  opacity: 0.8;
}

.holy-product-card--energy:hover {
  border-color: rgba(255, 107, 0, 0.25);
  opacity: 1;
}

.holy-product-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.holy-product-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--text-white);
}

.holy-product-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Tier-Icons Deko-Reihe */
.holy-icons-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  justify-content: center;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
  flex-wrap: wrap;
}

.holy-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  cursor: pointer;
  opacity: 0.75;
}

.holy-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.holy-icon:hover {
  transform: scale(1.18) translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  opacity: 1;
}

.btn-holy {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-holy:hover {
  color: var(--text-white);
  border-color: rgba(255,255,255,0.28);
  background: var(--bg-card);
}

/* Responsive Holy */
@media (max-width: 900px) {
  .holy-products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .holy-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .holy-products {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   SEKTION — SOCIAL MEDIA HUB
   ============================================================ */

#social {
  padding: var(--section-gap) 0;
  background: var(--bg-secondary);
}

.social-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-decoration: none;
  transition: all var(--transition-mid);
  position: relative;
  overflow: hidden;
}

/* Platform Farbstreifen oben */
.social-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--platform-color, var(--orange));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.social-card:hover {
  transform: translateY(-5px);
  border-color: var(--platform-color, var(--orange));
  box-shadow: 0 16px 40px rgba(0,0,0,0.3), 0 0 0 1px var(--platform-color, var(--orange)) inset;
}

.social-card:hover::before {
  opacity: 1;
}

.social-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.social-card:hover .social-card-icon {
  background: color-mix(in srgb, var(--platform-color, var(--orange)) 15%, var(--bg-elevated));
}

.social-card-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--platform-color, var(--orange));
}

.social-card-content {
  flex: 1;
}

.social-card-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--text-white);
  margin-bottom: 0.4rem;
}

.social-card-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.social-card-arrow {
  width: 20px;
  height: 20px;
  fill: var(--text-faint);
  transition: fill var(--transition-fast), transform var(--transition-fast);
  align-self: flex-end;
  flex-shrink: 0;
}

.social-card:hover .social-card-arrow {
  fill: var(--platform-color, var(--orange));
  transform: translate(3px, -3px);
}

/* Platform-Farben */
.social-card[data-platform="twitch"]   { --platform-color: var(--twitch); }
.social-card[data-platform="instagram"]{ --platform-color: var(--instagram); }
.social-card[data-platform="youtube"]  { --platform-color: var(--youtube); }
.social-card[data-platform="spotify"]  { --platform-color: var(--spotify); }
.social-card[data-platform="discord"]  { --platform-color: var(--discord); }
.social-card[data-platform="podcast"]  { --platform-color: var(--orange); }

/* ============================================================
   FOOTER
   ============================================================ */

#footer {
  background: var(--bg-base);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-subtle);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 340px;
}

.footer-logo {
  height: 38px;
  width: auto;
  margin-bottom: 1.25rem;
  filter: brightness(0.9);
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social-icons {
  display: flex;
  gap: 0.5rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.footer-social-link:hover {
  color: var(--text-white);
  border-color: var(--border-color);
  background: var(--bg-elevated);
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-partner {
  text-align: right;
}

.footer-partner-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.75rem;
}

.footer-partner-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-partner-link:hover {
  color: var(--text-white);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.78rem;
  color: var(--text-faint);
}

.footer-holy-link {
  font-size: 0.78rem;
  color: var(--text-faint);
  transition: color var(--transition-fast);
}

.footer-holy-link:hover {
  color: var(--text-muted);
}

/* ============================================================
   ABSCHNITT-TRENNER
   ============================================================ */

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

/* ============================================================
   ANIMATIONEN
   ============================================================ */

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.75);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-12px) rotate(2deg);
  }
  66% {
    transform: translateY(-6px) rotate(-1deg);
  }
}

@keyframes glitch-text {
  0%, 90%, 100% {
    text-shadow: none;
    transform: none;
  }
  91% {
    text-shadow: -3px 0 var(--orange-hot), 3px 0 rgba(0, 255, 255, 0.7);
    transform: translate(-2px, 0);
  }
  93% {
    text-shadow: 3px 0 var(--orange-hot), -3px 0 rgba(0, 255, 255, 0.7);
    transform: translate(2px, 0);
  }
  95% {
    text-shadow: none;
    transform: none;
  }
  97% {
    text-shadow: -2px 0 var(--orange), 2px 0 rgba(255, 255, 0, 0.5);
    transform: translate(1px, 0);
  }
}

@keyframes emote-bounce {
  0%, 100% { transform: translateY(0) scale(1); }
  25% { transform: translateY(-15px) scale(1.1); }
  50% { transform: translateY(-8px) scale(1.05); }
  75% { transform: translateY(-12px) scale(1.08); }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Einblend-Animationen beim Laden */
.hero-badge    { animation: fade-in-up 0.7s ease both 0.1s; }
.hero-title    { animation: fade-in-up 0.7s ease both 0.25s; }
.hero-subtitle { animation: fade-in-up 0.7s ease both 0.4s; }
.hero-countdown{ animation: fade-in-up 0.7s ease both 0.52s; }
.hero-actions  { animation: fade-in-up 0.7s ease both 0.64s; }
.hero-visual   { animation: fade-in-up 0.9s ease both 0.3s; }

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

/* Tablet (≤ 1024px) */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    order: 2;
  }

  .hero-visual {
    order: 1;
    max-width: 380px;
    margin: 0 auto;
  }

  .hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-countdown {
    justify-content: center;
  }

  .stream-layout {
    grid-template-columns: 1fr;
  }

  #twitch-chat {
    min-height: 380px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-photo-wrap {
    max-width: 420px;
    margin: 0 auto;
  }

  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    columns: 3;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-partner {
    text-align: left;
  }
}

/* Mobil (≤ 768px) */
@media (max-width: 768px) {
  :root {
    --section-gap: 4rem;
  }

  .container {
    padding: 0 1.25rem;
  }

  .hero-title {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .hero-float-gif {
    width: 55px;
    right: 0;
  }

  .hero-emote-1,
  .hero-emote-2 {
    display: none;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    columns: 2;
  }

  .emotes-grid {
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 0.75rem;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

.reel-slide {
    flex: 0 0 calc(80% - 0.5rem);
  }

  .reels-carousel {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }

  .reel-slide {
    scroll-snap-align: center;
  }

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

  .stream-layout {
    min-height: 320px;
  }

  #twitch-player {
    min-height: 320px;
  }

  .nav-cta {
    display: none;
  }
}

/* Klein-Mobil (≤ 480px) */
@media (max-width: 480px) {
  .gallery-grid {
    columns: 2;
    column-gap: 0.5rem;
  }

  .gallery-item {
    margin-bottom: 0.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    text-align: center;
    justify-content: center;
  }
}

/* ============================================================
   LIGHTBOX (Galerie)
   ============================================================ */

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-mid);
  backdrop-filter: blur(8px);
}

.lightbox-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 42px;
  height: 42px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 1.2rem;
  transition: all var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--bg-elevated);
  color: var(--text-white);
}
