/* ═══════════════════════════════════════════════════════════
   GAMING LOUNGE DE – Main Stylesheet
   ═══════════════════════════════════════════════════════════ */

/* ── CSS Variables ──────────────────────────────────────── */
:root {
  --bg-darkest:   #020b18;
  --bg-dark:      #040e1f;
  --bg-card:      #071428;
  --bg-card2:     #091830;
  --border:       #0e2a4a;
  --border-glow:  #1a4a7a;
  --accent:       #00d4ff;
  --accent2:      #0088cc;
  --accent3:      #004488;
  --discord:      #5865F2;
  --discord-dark: #4752c4;
  --text-main:    #e8f4ff;
  --text-muted:   #7a9bbb;
  --text-dim:     #3a5a7a;
  --green:        #00e676;
  --yellow:       #ffd740;
  --red:          #ff5252;
  --font-display: 'Orbitron', sans-serif;
  --font-heading: 'Rajdhani', sans-serif;
  --font-body:    'Inter', sans-serif;
  --radius:       8px;
  --radius-lg:    14px;
  --shadow-glow:  0 0 20px rgba(0,212,255,.15), 0 0 60px rgba(0,212,255,.05);
  --shadow-card:  0 4px 24px rgba(0,0,0,.5);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--bg-darkest);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Layout helpers ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.section-header.center {
  flex-direction: column;
  text-align: center;
  gap: 12px;
}

.section-eyebrow {
  font-family: var(--font-heading);
  font-size: .8rem;
  letter-spacing: .2em;
  color: var(--accent);
  font-weight: 600;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: .02em;
}

.section-desc {
  color: var(--text-muted);
  max-width: 560px;
}

.section-link {
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--accent);
  white-space: nowrap;
  transition: opacity .2s;
}
.section-link:hover { opacity: .7; }

.gradient-text {
  background: linear-gradient(90deg, var(--accent), #0af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .08em;
  cursor: pointer;
  transition: all .25s;
  border: 2px solid transparent;
}

.btn-discord {
  background: var(--discord);
  color: #fff;
  border-color: var(--discord);
}
.btn-discord:hover {
  background: var(--discord-dark);
  border-color: var(--discord-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(88,101,242,.4);
}

.btn-primary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent);
  color: #000;
  box-shadow: 0 8px 24px rgba(0,212,255,.3);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border-color: var(--border-glow);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-lg  { padding: 14px 32px; font-size: 1rem; }
.btn-xl  { padding: 16px 40px; font-size: 1.05rem; }
.btn-full{ width: 100%; justify-content: center; }

.discord-icon { width: 28px; height: 28px; flex-shrink: 0; filter: brightness(0) invert(1); }
img[src="discordlogo.svg"] { filter: brightness(0) invert(1); }

/* ══════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(2,11,24,.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}

#navbar.scrolled {
  box-shadow: 0 4px 32px rgba(0,212,255,.08);
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0,212,255,.5));
}

.logo-icon { width: 40px; height: 40px; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 900;
  color: var(--text-main);
  letter-spacing: .1em;
}

.logo-sub {
  font-family: var(--font-display);
  font-size: .55rem;
  letter-spacing: .25em;
  color: var(--accent);
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--text-muted);
  padding: 6px 10px;
  border-radius: 4px;
  transition: color .2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--accent);
  transition: left .2s, right .2s;
  border-radius: 2px;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text-main);
}

.nav-links a:hover::after, .nav-links a.active::after {
  left: 10%; right: 10%;
}

.nav-discord { margin-left: 16px; flex-shrink: 0; }

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: .3s;
}

.mobile-menu {
  display: none;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
  background: rgba(4,14,31,.97);
}

.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: block;
  padding: 10px 12px;
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--text-muted);
  border-radius: var(--radius);
  transition: background .2s, color .2s;
}
.mobile-menu a:hover { background: var(--bg-card); color: var(--accent); }

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 70px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #010d1f 0%, #020e20 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Subtle grid lines */
  background:
    linear-gradient(rgba(0,212,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
  animation: float-particle linear infinite;
  opacity: 0;
}

@keyframes float-particle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: .6; }
  90%  { opacity: .2; }
  100% { transform: translateY(-20vh) scale(1); opacity: 0; }
}

.hero .container {
  max-width: 100%;
  padding-left: clamp(24px, 5vw, 80px);
  padding-right: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding-top: 24px;
  padding-bottom: 64px;
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: .85rem;
  letter-spacing: .3em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: .03em;
  margin-bottom: 24px;
  text-shadow: 0 0 60px rgba(0,212,255,.25), 0 2px 30px rgba(0,0,0,.8);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Banner GIF */
.hero-banner-gif {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-banner-gif img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: .45;
}

/* Dark overlay so text stays readable */
.hero-banner-gif::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(2,11,24,.75) 0%, rgba(2,11,24,.4) 50%, rgba(2,11,24,.2) 100%),
    linear-gradient(to bottom, rgba(2,11,24,.3) 0%, transparent 20%, transparent 80%, rgba(2,11,24,.6) 100%);
}

/* Hero Live Badge */
.hero-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,230,118,.1);
  border: 1px solid rgba(0,230,118,.3);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: .82rem;
  color: #00e676;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  letter-spacing: .05em;
}

/* Live dot */
.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: pulse-dot 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

/* Live stat card */
.stat-live {
  position: relative;
}

.stat-live-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: .6rem;
  letter-spacing: .18em;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 6px;
}

.stat-live .stat-number {
  color: var(--green);
}

/* About GIF */
.about-img-inner {
  position: relative;
  overflow: hidden;
}

.about-server-gif {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-line {
  width: 2px;
  height: 50px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  margin: 0 auto;
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: .3; transform: scaleY(.8); }
  50%       { opacity: 1;  transform: scaleY(1); }
}

/* ══════════════════════════════════════════════════════════
   FEATURES STRIP
══════════════════════════════════════════════════════════ */
.features-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(0,212,255,.1);
  border: 1px solid rgba(0,212,255,.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.feature-icon svg { width: 20px; height: 20px; }

.feature-item h3 {
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--text-main);
  margin-bottom: 4px;
}

.feature-item p {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ══════════════════════════════════════════════════════════
   STATS
══════════════════════════════════════════════════════════ */
.stats-section {
  padding: 64px 0;
  background: var(--bg-dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: rgba(7,20,40,.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(14,42,74,.9);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s, transform .3s;
  box-shadow: 0 4px 24px rgba(0,0,0,.4), inset 0 1px 0 rgba(0,212,255,.06);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: .7;
}

.stat-card:hover {
  border-color: rgba(0,212,255,.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: .75rem;
  letter-spacing: .2em;
  color: var(--text-muted);
  font-weight: 600;
}

/* ══════════════════════════════════════════════════════════
   GAMES
══════════════════════════════════════════════════════════ */
.games-section {
  background: var(--bg-darkest);
}

.games-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.games-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  flex: 1;
  flex-wrap: nowrap;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.games-slider::-webkit-scrollbar { display: none; }

.game-card {
  flex: 0 0 calc(20% - 16px);
  min-width: 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}

.game-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--accent);
  box-shadow: 0 16px 40px rgba(0,212,255,.2);
}

.game-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .4s;
}

.game-card:hover .game-img {
  transform: scale(1.05);
}

/* Game images */
.cs2-bg {
  background-image: url('https://cdn.cloudflare.steamstatic.com/steam/apps/730/library_600x900.jpg');
  background-size: cover; background-position: center top;
  background-color: #1a1000;
}
.val-bg {
  background-image: url('https://upload.wikimedia.org/wikipedia/en/b/ba/Valorant_cover.jpg');
  background-size: cover; background-position: center top;
  background-color: #2a0610;
}
.mc-bg {
  background-image: url('https://minecraft.wiki/images/MC_key_art_2024.jpg');
  background-size: cover; background-position: center top;
  background-color: #1a3a1a;
}
.cod-bg {
  background-image: url('https://cdn.cloudflare.steamstatic.com/steam/apps/1938090/library_600x900.jpg');
  background-size: cover; background-position: center top;
  background-color: #0a0a0a;
}
.heartopia-bg {
  background-image: url('heartopia.jpg');
  background-size: cover; background-position: center top;
  background-color: #2a1040;
}
.rl-bg {
  background-image: url('https://cdn.cloudflare.steamstatic.com/steam/apps/252950/library_600x900.jpg');
  background-size: cover; background-position: center top;
  background-color: #001a40;
}
.phasmo-bg {
  background-image: url('https://cdn.cloudflare.steamstatic.com/steam/apps/739630/library_600x900.jpg');
  background-size: cover; background-position: center top;
  background-color: #0a0a1a;
}
.sdv-bg {
  background-image: url('https://cdn.cloudflare.steamstatic.com/steam/apps/413150/library_600x900.jpg');
  background-size: cover; background-position: center top;
  background-color: #1a3010;
}
.au-bg {
  background-image: url('https://cdn.cloudflare.steamstatic.com/steam/apps/945360/library_600x900.jpg');
  background-size: cover; background-position: center top;
  background-color: #1a0030;
}
.gta-bg {
  background-image: url('GTAV.jpg');
  background-size: cover; background-position: center top;
  background-color: #0a1a0a;
}
.dbd-bg {
  background-image: url('DbD.jpg');
  background-size: cover; background-position: center top;
  background-color: #1a0000;
}
.lol-bg {
  background-image: url('LoL.jpg');
  background-size: cover; background-position: center top;
  background-color: #000a1a;
}
.fortnite-bg {
  background-image: url('fortnite.jpg');
  background-size: cover; background-position: center top;
  background-color: #001a2a;
}
.wow-bg {
  background-image: url('World-of-Warcraft.jpg');
  background-size: cover; background-position: center top;
  background-color: #0a0010;
}
.apex-bg {
  background-image: url('Apex.jpg');
  background-size: cover; background-position: center top;
  background-color: #1a0500;
}
.r6-bg {
  background-image: url('r6.jpg');
  background-size: cover; background-position: center top;
  background-color: #0a0a0a;
}
.genshin-bg {
  background-image: url('genshin2025.jpg');
  background-size: cover; background-position: center top;
  background-color: #001020;
}
.repo-bg {
  background-image: url('Repo.jpg');
  background-size: cover; background-position: center top;
  background-color: #0a0a0a;
}
.repo-bg {
  background-image: url('https://cdn.cloudflare.steamstatic.com/steam/apps/3241660/library_600x900.jpg');
  background-size: cover; background-position: center top;
  background-color: #0a0a0a;
}

.game-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,11,24,.98) 0%, rgba(2,11,24,.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 16px;
  opacity: 1;
}

.game-badge {
  font-family: var(--font-heading);
  font-size: .65rem;
  letter-spacing: .15em;
  background: var(--green);
  color: #000;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  display: inline-block;
  width: fit-content;
  margin-bottom: 8px;
}

.game-overlay h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: .05em;
  margin-bottom: 2px;
}

.game-overlay p {
  font-size: .75rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.game-btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 4px 12px;
  border-radius: 4px;
  transition: background .2s, color .2s;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s;
}

.game-card:hover .game-btn {
  opacity: 1;
  transform: translateY(0);
}

.game-btn:hover {
  background: var(--accent);
  color: #000;
}

.slider-btn {
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-main);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s, border-color .2s, color .2s;
}

.slider-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
}

/* ══════════════════════════════════════════════════════════
   CARD BASE
══════════════════════════════════════════════════════════ */
.card {
  background: rgba(7,20,40,.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(14,42,74,.9);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,.35), inset 0 1px 0 rgba(0,212,255,.05);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.card-header h2 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--text-main);
}

/* ══════════════════════════════════════════════════════════
   SERVER STATUS
══════════════════════════════════════════════════════════ */
.status-section {
  background: var(--bg-dark);
  padding: 80px 0;
}

.server-list { display: flex; flex-direction: column; gap: 12px; }

.server-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .2s;
}

.server-item:hover { border-color: var(--border-glow); }

.server-icon { width: 28px; height: 28px; object-fit: contain; border-radius: 4px; }
.server-icon-svg { width: 28px; height: 28px; flex-shrink: 0; }

.server-name {
  flex: 1;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-main);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-dot.online { background: var(--green); box-shadow: 0 0 8px var(--green); animation: pulse-dot 2s infinite; }
.status-dot.offline { background: var(--red); }
.status-dot.warn { background: var(--yellow); }

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 4px var(--green); }
  50%       { box-shadow: 0 0 12px var(--green); }
}

.status-text {
  font-family: var(--font-heading);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.online-text { color: var(--green); }
.offline-text { color: var(--red); }

/* COMMUNITY IN ZAHLEN */
.zahlen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.zahl-item {
  background: rgba(0,212,255,.04);
  border: 1px solid rgba(0,212,255,.12);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: border-color .2s;
}

.zahl-item:hover { border-color: rgba(0,212,255,.35); }

.zahl-item svg { width: 28px; height: 28px; color: var(--accent); margin: 0 auto 8px; }

.zahl-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1.2;
}

.zahl-label {
  font-family: var(--font-heading);
  font-size: .72rem;
  letter-spacing: .12em;
  color: var(--text-muted);
  font-weight: 600;
}

/* ══════════════════════════════════════════════════════════
   NEWS + EVENTS
══════════════════════════════════════════════════════════ */
.news-events-section {
  background: var(--bg-darkest);
}

/* News */
.news-list { display: flex; flex-direction: column; gap: 20px; }

.news-card {
  display: flex;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}

.news-card:hover {
  border-color: var(--border-glow);
  transform: translateX(4px);
}

.news-thumb {
  width: 110px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}

.news-thumb-1 { background-color: #0a2a4a; background-image: linear-gradient(135deg, #0a2a5a, #1a5a9a); }
.news-thumb-2 { background-color: #0a2a1a; background-image: linear-gradient(135deg, #0a3a1a, #1a6a3a); }
.news-thumb-3 { background-color: #2a0a1a; background-image: linear-gradient(135deg, #3a0a2a, #8a1a4a); }

.news-body {
  padding: 14px 16px 14px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.news-tag {
  font-family: var(--font-heading);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--accent);
  background: rgba(0,212,255,.1);
  padding: 2px 8px;
  border-radius: 4px;
  width: fit-content;
}

.news-body h3 {
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
}

.news-body p {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.news-body time {
  font-size: .75rem;
  color: var(--text-dim);
}

/* Events */
.events-list { display: flex; flex-direction: column; gap: 16px; }

.event-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  transition: border-color .2s, box-shadow .2s;
}

.event-card:hover {
  border-color: var(--border-glow);
  box-shadow: inset 0 0 30px rgba(0,212,255,.03);
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 54px;
  background: rgba(0,212,255,.08);
  border: 1px solid rgba(0,212,255,.2);
  border-radius: var(--radius);
  padding: 8px 12px;
}

.event-day {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.event-month {
  font-family: var(--font-heading);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--text-muted);
}

.event-info { flex: 1; }

.event-info h3 {
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.event-info p {
  font-size: .78rem;
  color: var(--text-muted);
}

.event-badge {
  font-family: var(--font-heading);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
}

.event-badge.turnier   { background: rgba(255,215,64,.1);  color: var(--yellow); border: 1px solid rgba(255,215,64,.3); }
.event-badge.community { background: rgba(0,212,255,.1);   color: var(--accent); border: 1px solid rgba(0,212,255,.3); }
.event-badge.event     { background: rgba(100,200,100,.1); color: #6ec96e;       border: 1px solid rgba(100,200,100,.3); }

/* ══════════════════════════════════════════════════════════
   ABOUT / ÜBER UNS
══════════════════════════════════════════════════════════ */
.about-section {
  background: var(--bg-dark);
}

.about-col {
  align-items: center;
  gap: 64px;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.8;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  color: var(--text-muted);
}

.about-list svg { width: 18px; height: 18px; flex-shrink: 0; }

.about-visual { flex: 1; }

.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  aspect-ratio: 4/3;
}

.about-img-inner {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  background: #020b18;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

/* about-img-inner::after removed – real GIF is used instead */

.about-badge-1, .about-badge-2 {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 10px 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
}

.about-badge-1 { bottom: -20px; left: -20px; }
.about-badge-2 { top: -20px; right: -20px; }

.badge-num {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--accent);
}

.badge-lbl {
  font-family: var(--font-heading);
  font-size: .65rem;
  letter-spacing: .12em;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════════
   TEAM
══════════════════════════════════════════════════════════ */
.team-section {
  background: var(--bg-darkest);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}

.team-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
}

.team-avatar {
  aspect-ratio: 1;
  width: 100%;
  background-size: cover;
  background-position: center;
}

.avatar-1 { background: linear-gradient(135deg, #1a3a6a 0%, #0066cc 50%, #00d4ff 100%); }
.avatar-2 { background: linear-gradient(135deg, #3a1a6a 0%, #6600cc 50%, #cc00ff 100%); }
.avatar-3 { background: linear-gradient(135deg, #1a3a2a 0%, #006633 50%, #00cc66 100%); }
.avatar-4 { background: linear-gradient(135deg, #3a1a1a 0%, #cc3300 50%, #ff6600 100%); }

.team-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.team-info h3 {
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: .04em;
  margin-top: 2px;
}

.team-role {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 4px 10px;
  border-radius: 5px;
  width: fit-content;
  display: block;
}

.team-role.owner { background: rgba(255,215,64,.15); color: var(--yellow); border: 1px solid rgba(255,215,64,.3); }
.team-role.admin { background: rgba(255,80,50,.1);   color: #ff6040;       border: 1px solid rgba(255,80,50,.3); }
.team-role.mod   { background: rgba(0,212,255,.1);   color: var(--accent); border: 1px solid rgba(0,212,255,.3); }

.team-info p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.team-socials { display: flex; gap: 8px; margin-top: 4px; }

.team-socials a {
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: background .2s, border-color .2s, color .2s;
}

.team-socials a svg { width: 14px; height: 14px; }

.team-socials a:hover {
  background: var(--discord);
  border-color: var(--discord);
  color: #fff;
}

/* ══════════════════════════════════════════════════════════
   DISCORD CTA
══════════════════════════════════════════════════════════ */
.discord-cta {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2a1060 0%, #3b4fd8 40%, #1a2a5a 100%);
}

.cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M 30 0 L 60 15 L 60 45 L 30 60 L 0 45 L 0 15 Z' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='1'/%3E%3C/svg%3E") repeat;
}

.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: .03em;
}

.cta-text p {
  color: rgba(255,255,255,.7);
  margin-bottom: 20px;
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cta-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: rgba(255,255,255,.85);
}

.cta-features svg { width: 16px; height: 16px; flex-shrink: 0; }

.cta-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.discord-logo-big {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 3s ease-in-out infinite;
}

.discord-logo-big img { width: 120px; height: 120px; filter: brightness(0) invert(1); }

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

/* ══════════════════════════════════════════════════════════
   KONTAKT
══════════════════════════════════════════════════════════ */
.kontakt-section {
  background: var(--bg-dark);
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  margin-top: 48px;
}

.kontakt-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-content: start;
}

.kontakt-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.kontakt-icon {
  width: 48px;
  height: 48px;
  background: rgba(0,212,255,.08);
  border: 1px solid rgba(0,212,255,.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.kontakt-icon svg { width: 22px; height: 22px; }

.kontakt-item h3 {
  font-family: var(--font-heading);
  font-size: .78rem;
  letter-spacing: .15em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 4px;
}

.kontakt-item p {
  font-size: .9rem;
  color: var(--text-main);
}

/* Form */
.kontakt-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: .9rem;
  transition: border-color .2s, box-shadow .2s;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,212,255,.08);
}

.form-success {
  display: none;
  color: var(--green);
  font-size: .85rem;
  text-align: center;
  padding: 12px;
  background: rgba(0,230,118,.08);
  border: 1px solid rgba(0,230,118,.2);
  border-radius: var(--radius);
}

.form-success.visible { display: block; }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-darkest);
  border-top: 1px solid var(--border);
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-brand p {
  margin-top: 16px;
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 260px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

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

.footer-socials a svg { width: 16px; height: 16px; }
.footer-socials a img { width: 16px; height: 16px; filter: brightness(0) invert(0.6); }
.footer-socials a:hover img { filter: brightness(0); }

.footer-socials a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  transform: translateY(-3px);
}

.footer-nav h4 {
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--text-main);
  margin-bottom: 16px;
}

.footer-nav ul { display: flex; flex-direction: column; gap: 8px; }

.footer-nav a {
  font-size: .85rem;
  color: var(--text-muted);
  transition: color .2s;
}

.footer-nav a:hover { color: var(--accent); }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: .82rem;
  color: var(--text-dim);
}

/* ══════════════════════════════════════════════════════════
   ANIMATIONS & SCROLL REVEAL
══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s ease, transform .7s ease;
}

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

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .game-card { flex: 0 0 calc(33.333% - 14px); }
}

@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .zahlen-grid { grid-template-columns: repeat(2, 1fr); }
  .about-col { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .cta-content { flex-direction: column; text-align: center; }
  .cta-features { align-items: center; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .news-events-section .two-col { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-discord { display: none; }
  .mobile-menu-btn { display: flex; }
  .mobile-menu.open { display: block; }

  .hero-title { font-size: clamp(2rem, 10vw, 3.5rem); }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }

  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .zahlen-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .game-card { flex: 0 0 calc(60% - 10px); }
  .section { padding: 48px 0; }
  .section-title { font-size: clamp(1.4rem, 6vw, 2rem); }
  .discord-logo-big img { width: 80px; height: 80px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .zahlen-grid { grid-template-columns: 1fr 1fr; }
  .game-card { flex: 0 0 calc(80% - 10px); }
  .hero-title { font-size: clamp(1.6rem, 8vw, 2.5rem); }
  .section { padding: 32px 0; }
  .footer-socials { flex-wrap: wrap; }
}

/* ══════════════════════════════════════════════════════════
   PROFESSIONAL ENHANCEMENTS & NEW COMPONENTS
══════════════════════════════════════════════════════════ */

/* Section title neon glow */
.section-title {
  text-shadow: 0 0 40px rgba(0,212,255,.08);
}

/* Gradient text stronger glow */
.gradient-text {
  filter: drop-shadow(0 0 12px rgba(0,212,255,.3));
}

/* Cards glassmorphism base */
.news-card,
.event-card,
.team-card,
.server-item,
.zahl-item {
  box-shadow: 0 4px 16px rgba(0,0,0,.35);
}

.news-card:hover,
.event-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.5), 0 0 0 1px rgba(0,212,255,.1);
}

/* Game card improvements */
.game-card {
  box-shadow: 0 4px 20px rgba(0,0,0,.6);
}

.game-card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,.7), 0 0 20px rgba(0,212,255,.15);
}

/* Kontakt link */
.kontakt-link {
  font-size: .9rem;
  color: var(--accent);
  transition: opacity .2s;
  word-break: break-all;
}
.kontakt-link:hover { opacity: .7; }

/* Footer website link */
.footer-website {
  margin-top: 4px;
}
.footer-website a {
  font-size: .85rem;
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: .08em;
  opacity: .8;
  transition: opacity .2s;
}
.footer-website a:hover { opacity: 1; }

/* Bewerbung button in about-section */
.btn-bewerbung {
  background: linear-gradient(135deg, rgba(0,212,255,.15), rgba(0,100,200,.1));
  border-color: rgba(0,212,255,.4);
  color: var(--accent);
}
.btn-bewerbung:hover {
  background: var(--accent);
  color: #000;
  box-shadow: 0 8px 24px rgba(0,212,255,.35);
  transform: translateY(-2px);
}

/* Server status improvement */
.status-section {
  position: relative;
}
.status-card,
.community-zahlen-card {
  height: 100%;
}

/* Team card glassmorphism */
.team-card {
  background: rgba(7,20,40,.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Kontakt form improvement */
.kontakt-form {
  background: rgba(7,20,40,.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Discord CTA improvements */
.discord-cta {
  border-top: 1px solid rgba(88,101,242,.2);
  border-bottom: 1px solid rgba(88,101,242,.2);
}

/* Smooth button glow */
.btn-discord {
  box-shadow: 0 4px 15px rgba(88,101,242,.25);
}
.btn-discord:hover {
  box-shadow: 0 8px 30px rgba(88,101,242,.5) !important;
}

/* Nav active line animation */
.nav-links a.active {
  color: var(--accent);
}

/* Hero eyebrow pulse */
.hero-eyebrow {
  animation: eyebrow-pulse 3s ease-in-out infinite;
}
@keyframes eyebrow-pulse {
  0%, 100% { opacity: .8; }
  50%       { opacity: 1; }
}

@media (max-width: 900px) {
  .kontakt-info { grid-template-columns: 1fr; }
}

/* Mobile: hero GIF hidden */
@media (max-width: 768px) {
  .hero-banner-gif { display: none; }
  .hero-content { max-width: 100%; }
}

/* ══════════════════════════════════════════════════════════
   DISCORD WIDGET EMBED
══════════════════════════════════════════════════════════ */
.discord-widget-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.discord-widget-wrap iframe {
  border-radius: var(--radius);
  min-height: 380px;
  width: 100%;
  display: block;
}

.widget-note {
  font-size: .78rem;
  color: var(--text-dim);
  text-align: center;
}

.widget-note a {
  color: var(--accent);
}

/* ══════════════════════════════════════════════════════════
   TEAM – 8 members, avatar with initial
══════════════════════════════════════════════════════════ */
.team-grid {
  grid-template-columns: repeat(4, 1fr) !important;
}

.team-avatar {
  aspect-ratio: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.team-avatar-initial {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(255,255,255,.85);
  text-shadow: 0 0 20px rgba(0,212,255,.6), 0 2px 8px rgba(0,0,0,.8);
  letter-spacing: .05em;
}

.team-aka {
  font-size: .75em;
  color: var(--text-muted);
  font-weight: 400;
}

.team-role.supporter {
  background: rgba(0,180,120,.1);
  color: #00cc88;
  border: 1px solid rgba(0,180,120,.3);
}

.team-role.leitung {
  background: rgba(255,165,0,.12);
  color: #ffaa33;
  border: 1px solid rgba(255,165,0,.3);
}

.team-role.sr-mod {
  background: rgba(0,200,255,.1);
  color: #00ccff;
  border: 1px solid rgba(0,200,255,.3);
}

.team-role.test-sup {
  background: rgba(180,100,255,.1);
  color: #cc88ff;
  border: 1px solid rgba(180,100,255,.3);
}

/* Crown emoji avatar fix */
.team-avatar-initial[style*="👑"], .team-avatar-initial {
  font-size: 2.4rem;
}

@media (max-width: 1100px) {
  .team-grid { grid-template-columns: repeat(4, 1fr) !important; }
}

@media (max-width: 768px) {
  .team-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .team-avatar-initial { font-size: 2rem; }
}

/* ══════════════════════════════════════════════════════════
   DESIGN REFRESH – HUMAN TOUCH
══════════════════════════════════════════════════════════ */

/* Custom scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #010810; }
::-webkit-scrollbar-thumb { background: rgba(0,212,255,.3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }
html { scrollbar-width: thin; scrollbar-color: rgba(0,212,255,.3) #010810; }

/* Section eyebrow – dash prefix */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 16px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

/* Section title – accent underline */
.section-title {
  padding-bottom: 16px;
}
.section-title::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  opacity: .65;
  margin-top: 10px;
}
.section-header.center .section-title::after {
  margin: 10px auto 0;
  width: 48px;
}

/* Nav – animated underline on hover/active */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 1.5px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

/* Feature items – left accent bar */
.feature-item {
  box-shadow: inset 3px 0 0 rgba(0,212,255,.12);
  padding-left: 20px;
  transition: box-shadow .3s, transform .25s;
}
.feature-item:hover {
  box-shadow: inset 3px 0 0 var(--accent);
  transform: translateX(5px);
}

/* Game badge – stronger glow */
.game-badge {
  font-weight: 800;
  letter-spacing: .1em;
  box-shadow: 0 0 14px rgba(0,200,60,.5);
}

/* Cards – bottom shimmer on hover */
.team-card,
.news-card,
.event-card {
  position: relative;
  overflow: hidden;
}
.team-card::after,
.news-card::after,
.event-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,.55), transparent);
  opacity: 0;
  transition: opacity .4s, left .4s, right .4s;
}
.team-card:hover::after,
.news-card:hover::after,
.event-card:hover::after {
  opacity: 1;
  left: 0; right: 0;
}

/* Server items – left accent + slide */
.server-item {
  border-left: 3px solid rgba(0,212,255,.1) !important;
  transition: border-left-color .3s, transform .25s !important;
}
.server-item:hover {
  border-left-color: rgba(0,212,255,.45) !important;
  transform: translateX(5px) !important;
}

/* Stat numbers – bigger impact */
.stat-number {
  font-size: clamp(2.6rem, 5vw, 4.2rem) !important;
  line-height: 1 !important;
}

/* Hero title – more presence */
.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 5.2rem) !important;
}

/* About visual – stacked frame decoration */
.about-gif-wrap {
  position: relative;
}
.about-gif-wrap::before {
  content: '';
  position: absolute;
  top: -8px; right: -8px;
  bottom: 8px; left: 8px;
  border: 1px solid rgba(0,212,255,.13);
  border-radius: calc(var(--radius-lg) + 3px);
  pointer-events: none;
  z-index: 2;
}

/* Zahl items – top accent strip */
.zahl-item {
  position: relative;
  overflow: hidden;
}
.zahl-item::before {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,.2), transparent);
}

/* Discord CTA – richer gradient */
.discord-cta {
  background:
    radial-gradient(ellipse 55% 80% at 18% 50%, rgba(88,101,242,.13) 0%, transparent 55%),
    radial-gradient(ellipse 50% 70% at 84% 50%, rgba(88,101,242,.07) 0%, transparent 50%),
    linear-gradient(160deg, #010d1e 0%, #020c1e 100%);
}

/* Input focus – visible ring */
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: rgba(0,212,255,.5) !important;
  box-shadow: 0 0 0 3px rgba(0,212,255,.1) !important;
  outline: none;
}

/* Footer links – slide on hover */
.footer-links a {
  display: inline-block;
  transition: color .2s, transform .2s;
}
.footer-links a:hover {
  color: var(--accent);
  transform: translateX(3px);
}

/* Kontakt items icon accent */
.kontakt-item-icon {
  transition: transform .3s, box-shadow .3s;
}
.kontakt-item:hover .kontakt-item-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 0 16px rgba(0,212,255,.3);
}

/* Stats card top glow on hover */
.stat-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,.4), 0 0 0 1px rgba(0,212,255,.12), 0 -2px 0 rgba(0,212,255,.25) inset;
}

/* Team role font size bump */
.team-role {
  font-size: .85rem !important;
  letter-spacing: .1em !important;
}

/* ── Alle Games Accordion ────────────────────────────────── */
.alle-games-section {
  max-height: 0;
  overflow: hidden;
  transition: max-height .65s cubic-bezier(.4,0,.2,1), padding .4s ease;
  padding: 0 24px;
  background: linear-gradient(180deg, rgba(0,6,18,.7) 0%, var(--bg-darkest) 100%);
}
.alle-games-section.open {
  max-height: 2400px;
  padding: 80px 24px;
}
.alle-games-section .container {
  max-width: 1280px;
  margin: 0 auto;
}
.alle-games-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.alle-games-grid .game-card {
  flex: none !important;
  width: 100% !important;
  min-width: 0;
}
@media (max-width: 1200px) {
  .alle-games-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .alle-games-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 580px) {
  .alle-games-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

/* Toggle link arrow */
.section-link-toggle { transition: color .2s; }
.section-link-toggle .toggle-arrow {
  display: inline-block;
  transition: transform .35s ease;
}
.section-link-toggle.active .toggle-arrow {
  transform: rotate(90deg);
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ══════════════════════════════════════════════════════════
   KONTAKT FORM WRAPPER
══════════════════════════════════════════════════════════ */
.kontakt-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.kontakt-discord-cta {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(88,101,242,.08);
  border: 1px solid rgba(88,101,242,.25);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 24px 28px;
}

.kontakt-discord-cta h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.kontakt-discord-cta p {
  font-size: .85rem;
  color: var(--text-muted);
}

.kontakt-discord-cta svg {
  flex-shrink: 0;
  margin-top: 4px;
}

.kontakt-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 28px;
  background: var(--bg-card);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.kontakt-divider::before,
.kontakt-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.kontakt-divider span {
  font-family: var(--font-heading);
  font-size: .7rem;
  letter-spacing: .2em;
  color: var(--text-dim);
  white-space: nowrap;
  padding: 12px 0;
}

.kontakt-form {
  border-radius: 0 0 var(--radius-lg) var(--radius-lg) !important;
  border-top: none !important;
}

/* Stat-label text wrap fix */
.stat-label { white-space: nowrap; }
