/* ═══════════════════════════════════════════════════════════
   ICE-PHOENIX – Public Stylesheet
   Design: Futuristisch, dunkel, Ice-Blau (#00c8ff)
   ═══════════════════════════════════════════════════════════ */

/* ── Variablen ──────────────────────────────────────────── */
:root {
  --bg:          #05070f;
  --bg2:         #07090f;
  --bg3:         #0b0f1e;
  --bg4:         #0e1325;
  --border:      #111828;
  --border2:     #1a2640;
  --ice:         #00c8ff;
  --ice-dim:     #007aaa;
  --ice-dark:    #004d6e;
  --ice-glow:    rgba(0, 200, 255, 0.18);
  --ice-glow-s:  rgba(0, 200, 255, 0.45);
  --ice-bright:  #40e0ff;
  --text:        #d0e8ff;
  --text-mid:    #8aaac8;
  --text-muted:  #3a5a7a;
  --green:       #00e87a;
  --orange:      #ffaa00;
  --font-head:   'Orbitron', sans-serif;
  --font-body:   'Exo 2', sans-serif;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

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

/* ── Typography ─────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-head); letter-spacing: .04em; line-height: 1.15; }
a { color: var(--ice); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--ice-bright); }
img { max-width: 100%; height: auto; display: block; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout Helpers ─────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
section { padding: 6rem 0; }

/* ── Section Header ─────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 4rem; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-size: .65rem;
  letter-spacing: .3em;
  color: var(--ice);
  text-transform: uppercase;
  margin-bottom: .75rem;
  position: relative;
  padding: 0 1.5rem;
}
.section-tag::before, .section-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 1.5rem;
  height: 1px;
  background: var(--ice);
  opacity: .4;
}
.section-tag::before { right: 100%; margin-right: -1.5rem; }
.section-tag::after  { left:  100%; margin-left:  -1.5rem; }

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--text);
}
.section-title span { color: var(--ice); text-shadow: 0 0 30px var(--ice-glow-s); }

.section-line {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--ice), transparent);
  margin: 1rem auto 0;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 2rem;
  font-family: var(--font-head);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all .3s var(--ease);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  white-space: nowrap;
}
.btn-primary {
  background: var(--ice);
  color: #000;
  font-weight: 600;
}
.btn-primary:hover {
  background: var(--ice-bright);
  color: #000;
  box-shadow: 0 0 40px var(--ice-glow-s), 0 0 15px var(--ice-glow-s);
}
.btn-outline {
  background: transparent;
  color: var(--ice);
  box-shadow: inset 0 0 0 1px var(--ice-dim);
}
.btn-outline:hover {
  background: var(--ice-glow);
  color: var(--ice-bright);
  box-shadow: inset 0 0 0 1px var(--ice), 0 0 25px var(--ice-glow);
}

/* ── Cards ──────────────────────────────────────────────── */
.card {
  background: var(--bg3);
  border: 1px solid var(--border);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
}
.card::before, .card::after {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  border-color: var(--ice);
  border-style: solid;
  opacity: 0;
  transition: opacity .3s var(--ease);
  pointer-events: none;
}
.card::before { top: -1px;    left: -1px;  border-width: 2px 0 0 2px; }
.card::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }
.card:hover { border-color: var(--ice-dim); box-shadow: 0 0 30px var(--ice-glow), 0 8px 30px rgba(0,0,0,.5); transform: translateY(-5px); }
.card:hover::before, .card:hover::after { opacity: 1; }

/* ════════════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.5rem 0;
  transition: all .3s var(--ease);
}
.nav.scrolled {
  background: rgba(5, 7, 15, .92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  display: flex; align-items: center; gap: .75rem;
  text-decoration: none;
}
.nav-logo img { height: 36px; width: auto; }
.nav-logo-text {
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: .08em;
  color: var(--text);
}
.nav-logo-text span { color: var(--ice); }

.nav-links { display: flex; align-items: center; gap: 2.25rem; list-style: none; }
.nav-links a {
  font-family: var(--font-head);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  transition: color .25s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--ice);
  transition: width .3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--ice); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ice); transition: all .3s var(--ease); }

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

#particles-canvas {
  position: absolute; inset: 0; z-index: 0;
}

.hero-bg-glow {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 35%, rgba(0, 80, 160, .15), transparent),
    radial-gradient(ellipse 35% 45% at 15% 75%, rgba(0, 200, 255, .07), transparent),
    radial-gradient(ellipse 25% 35% at 85% 65%, rgba(0, 120, 200, .06), transparent);
}

/* Hex grid overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='92' viewBox='0 0 80 92' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0l40 23v46L40 92 0 69V23z' fill='none' stroke='%2300c8ff' stroke-opacity='.025' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 80px 92px;
}

.hero-content {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-head);
  font-size: .6rem; letter-spacing: .35em;
  color: var(--ice); text-transform: uppercase;
  margin-bottom: 1.75rem;
  padding: .4rem 1.25rem;
  border: 1px solid rgba(0, 200, 255, .25);
  background: rgba(0, 200, 255, .04);
}
.hero-tag-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ice);
  animation: dot-pulse 2.2s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(.7); }
}

.hero-title {
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  color: var(--text);
}
.hero-title .accent {
  color: var(--ice);
  text-shadow: 0 0 60px var(--ice-glow-s), 0 0 25px var(--ice-glow-s);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-mid);
  margin: 0 auto 2.5rem;
  max-width: 580px;
  font-weight: 300;
}

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

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  font-family: var(--font-head); font-size: .55rem;
  letter-spacing: .22em; color: var(--text-muted); text-transform: uppercase;
  animation: scroll-bounce 2.4s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--ice), transparent);
}
@keyframes scroll-bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ════════════════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════════════════ */
.about { background: var(--bg2); position: relative; overflow: hidden; }
.about::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2300c8ff' fill-opacity='.015'%3E%3Crect x='0' y='0' width='1' height='40'/%3E%3Crect x='0' y='0' width='40' height='1'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative; z-index: 1;
}

.about-text p { color: var(--text-mid); line-height: 1.85; margin-bottom: 1.25rem; }
.about-text p:last-child { margin-bottom: 0; }

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

.stat-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 1.75rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--ice), transparent);
}
.stat-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, var(--ice-glow), transparent);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.stat-card:hover::after { opacity: 1; }

.stat-number {
  font-family: var(--font-head);
  font-size: 2.8rem;
  color: var(--ice);
  line-height: 1;
  margin-bottom: .3rem;
  text-shadow: 0 0 25px var(--ice-glow-s);
}
.stat-label {
  font-size: .7rem; letter-spacing: .12em;
  color: var(--text-muted); text-transform: uppercase;
  font-family: var(--font-head);
}

/* ════════════════════════════════════════════════════════
   GAMES
   ════════════════════════════════════════════════════════ */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 2rem;
}

.game-card { overflow: hidden; }

.game-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg4);
}
.game-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.game-card:hover .game-thumb img { transform: scale(1.06); }

.game-thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem; letter-spacing: .1em;
  color: var(--text-muted);
  background: linear-gradient(135deg, var(--bg4), var(--bg3));
}

.game-status {
  position: absolute; top: .75rem; right: .75rem;
  font-family: var(--font-head);
  font-size: .55rem; letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .65rem;
  background: rgba(5, 7, 15, .88);
  border: 1px solid;
  backdrop-filter: blur(8px);
}
.game-status.released      { color: var(--green);  border-color: rgba(0,232,122,.3); }
.game-status.in_development { color: var(--ice);    border-color: rgba(0,200,255,.3); }
.game-status.announced     { color: var(--orange); border-color: rgba(255,170,0,.3); }

.game-info { padding: 1.5rem; }

.game-genre {
  font-family: var(--font-head);
  font-size: .58rem; letter-spacing: .2em;
  color: var(--ice-dim); text-transform: uppercase;
  margin-bottom: .4rem;
}
.game-title { font-size: 1.15rem; color: var(--text); margin-bottom: .7rem; }
.game-desc { font-size: .88rem; color: var(--text-mid); margin-bottom: 1.25rem; line-height: 1.6; }

.game-links { display: flex; gap: .65rem; flex-wrap: wrap; }
.game-link {
  font-family: var(--font-head);
  font-size: .6rem; letter-spacing: .1em;
  color: var(--ice); text-transform: uppercase;
  padding: .3rem .8rem;
  border: 1px solid rgba(0,200,255,.25);
  transition: all .25s var(--ease);
}
.game-link:hover { background: var(--ice-glow); border-color: var(--ice); color: var(--ice-bright); }

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

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.75rem;
}

.team-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all .3s var(--ease);
  position: relative; overflow: hidden;
}
.team-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--ice), transparent);
  transform: scaleX(0);
  transition: transform .4s var(--ease);
}
.team-card:hover { border-color: var(--ice-dim); box-shadow: 0 0 30px var(--ice-glow); transform: translateY(-5px); }
.team-card:hover::before { transform: scaleX(1); }

.team-avatar {
  width: 96px; height: 96px;
  border-radius: 50%; object-fit: cover;
  border: 2px solid var(--ice-dark);
  margin: 0 auto 1.25rem;
  display: block;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.team-card:hover .team-avatar { border-color: var(--ice); box-shadow: 0 0 20px var(--ice-glow); }

.team-avatar-placeholder {
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--bg4); border: 2px solid var(--ice-dark);
  margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 2.2rem; color: var(--ice-dim);
  transition: border-color .3s var(--ease);
}
.team-card:hover .team-avatar-placeholder { border-color: var(--ice); }

/* Ohne Spitzname: Name als H3 */
.team-name { font-size: 1rem; color: var(--text); margin-bottom: .2rem; }

/* Mit Spitzname: Spitzname groß, echter Name klein darunter */
.team-nickname {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--ice);
  letter-spacing: .06em;
  margin-bottom: .15rem;
  text-shadow: 0 0 18px var(--ice-glow);
}
.team-realname {
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: .2rem;
  letter-spacing: .02em;
}

.team-role {
  font-family: var(--font-head);
  font-size: .6rem; letter-spacing: .15em;
  color: var(--ice-dim); text-transform: uppercase;
  margin-bottom: .75rem;
}
.team-bio { font-size: .83rem; color: var(--text-mid); line-height: 1.6; }

/* ════════════════════════════════════════════════════════
   NEWS
   ════════════════════════════════════════════════════════ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.news-grid-full { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); margin-bottom: 0; }

.news-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all .3s var(--ease);
}
.news-card:hover { border-color: var(--ice-dim); box-shadow: 0 0 25px var(--ice-glow); transform: translateY(-4px); }

.news-thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--bg4); }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.news-card:hover .news-thumb img { transform: scale(1.05); }

.news-body { padding: 1.5rem; }
.news-date {
  font-family: var(--font-head); font-size: .58rem;
  letter-spacing: .15em; color: var(--ice-dim);
  text-transform: uppercase; margin-bottom: .5rem;
}
.news-title { font-size: 1.05rem; color: var(--text); margin-bottom: .7rem; line-height: 1.35; }
.news-title a { color: var(--text); }
.news-title a:hover { color: var(--ice); }
.news-excerpt { font-size: .875rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 1rem; }
.news-read-more {
  font-family: var(--font-head); font-size: .62rem;
  letter-spacing: .1em; color: var(--ice); text-transform: uppercase;
  display: inline-flex; align-items: center; gap: .4rem;
}
.news-read-more::after { content: '→'; transition: transform .25s var(--ease); }
.news-read-more:hover::after { transform: translateX(5px); }
.news-center { text-align: center; margin-top: 2.5rem; }

/* ════════════════════════════════════════════════════════
   NEWS PAGE HERO & DETAIL
   ════════════════════════════════════════════════════════ */
.page-hero {
  padding: 8rem 0 4rem;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}
.page-hero .section-tag { display: block; margin-bottom: .75rem; }
.page-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--text);
}
.page-hero-title span { color: var(--ice); }

.news-page { padding-top: 4rem; }

/* News article */
.news-article { padding-top: 110px; padding-bottom: 6rem; }

.article-hero-img {
  width: 100%; max-height: 500px; overflow: hidden;
  margin-bottom: 3rem;
}
.article-hero-img img { width: 100%; height: 100%; object-fit: cover; }

.article-wrap { max-width: 780px; margin: 0 auto; }

.article-meta {
  display: flex; align-items: center; gap: 1.5rem;
  margin-bottom: 2rem;
  padding-top: .5rem;
}
.article-back {
  font-family: var(--font-head); font-size: .65rem;
  letter-spacing: .1em; color: var(--text-muted);
  text-transform: uppercase; transition: color .25s;
}
.article-back:hover { color: var(--ice); }
.article-date {
  font-family: var(--font-head); font-size: .6rem;
  letter-spacing: .15em; color: var(--ice-dim);
  text-transform: uppercase;
}

.article-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text); margin-bottom: 1.25rem;
}
.article-excerpt {
  font-size: 1.15rem; color: var(--text-mid);
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
  line-height: 1.75;
}

.article-body {
  color: var(--text-mid);
  line-height: 1.85;
  font-size: 1rem;
}
.article-body h2 { font-size: 1.5rem; color: var(--text); margin: 2rem 0 .75rem; }
.article-body h3 { font-size: 1.2rem; color: var(--text); margin: 1.5rem 0 .6rem; }
.article-body p  { margin-bottom: 1.25rem; }
.article-body ul, .article-body ol { margin: 0 0 1.25rem 1.5rem; }
.article-body li { margin-bottom: .4rem; }
.article-body a  { color: var(--ice); text-decoration: underline; }
.article-body img { border-radius: 2px; margin: 1.5rem 0; max-width: 100%; }
.article-body strong { color: var(--text); }
.article-body blockquote {
  border-left: 3px solid var(--ice);
  padding: .75rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--bg3);
  color: var(--text-mid);
  font-style: italic;
}

.article-footer { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }

/* ════════════════════════════════════════════════════════
   LANGUAGE SWITCHER
   ════════════════════════════════════════════════════════ */
.lang-switcher {
  display: flex; align-items: center; gap: .4rem;
  font-family: var(--font-head); font-size: .62rem;
  letter-spacing: .1em;
}
.lang-switcher a { color: var(--text-muted); transition: color .2s; }
.lang-switcher a:hover, .lang-switcher a.active { color: var(--ice); }
.lang-switcher span { color: var(--text-muted); opacity: .4; }

/* ════════════════════════════════════════════════════════
   ROADMAP
   ════════════════════════════════════════════════════════ */
.roadmap-section { background: var(--bg2); }

.roadmap-list {
  max-width: 800px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0;
}

.roadmap-item {
  display: flex; gap: 1.5rem; position: relative;
  padding-bottom: 2rem;
}
.roadmap-item:last-child { padding-bottom: 0; }
.roadmap-item:last-child .roadmap-line { display: none; }

.roadmap-indicator { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.roadmap-dot {
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid var(--border2);
  background: var(--bg);
  flex-shrink: 0; margin-top: 4px;
  transition: border-color .3s, background .3s;
}
.roadmap-line { flex: 1; width: 2px; background: var(--border); margin-top: 6px; }

.roadmap-done    .roadmap-dot { background: var(--green); border-color: var(--green); box-shadow: 0 0 10px rgba(0,232,122,.4); }
.roadmap-in_progress .roadmap-dot { background: var(--ice); border-color: var(--ice); box-shadow: 0 0 10px var(--ice-glow); animation: dot-pulse 2s ease-in-out infinite; }
.roadmap-planned .roadmap-dot { border-color: var(--border2); }

.roadmap-content { flex: 1; padding-bottom: .5rem; }
.roadmap-header { display: flex; align-items: flex-start; flex-wrap: wrap; gap: .75rem; margin-bottom: .5rem; }
.roadmap-title { font-size: 1rem; color: var(--text); line-height: 1.3; }
.roadmap-meta { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; }
.roadmap-game { font-family: var(--font-head); font-size: .58rem; letter-spacing: .1em; color: var(--ice-dim); text-transform: uppercase; }
.roadmap-date { font-size: .75rem; color: var(--text-muted); }
.roadmap-badge { font-family: var(--font-head); font-size: .55rem; letter-spacing: .08em; text-transform: uppercase; padding: .2rem .55rem; border: 1px solid; }
.roadmap-badge-done        { color: var(--green);  border-color: rgba(0,232,122,.3); }
.roadmap-badge-in_progress { color: var(--ice);    border-color: rgba(0,200,255,.3); }
.roadmap-badge-planned     { color: var(--text-muted); border-color: var(--border2); }
.roadmap-desc { font-size: .875rem; color: var(--text-muted); line-height: 1.65; }

/* ════════════════════════════════════════════════════════
   CONTACT FORM
   ════════════════════════════════════════════════════════ */
.contact-section { background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  gap: 4rem;
  align-items: start;
}

.contact-intro { color: var(--text-muted); line-height: 1.75; margin-bottom: 1.5rem; }

.contact-info-link {
  display: flex; align-items: center; gap: .65rem;
  font-size: .9rem; color: var(--text-mid);
  margin-bottom: .85rem;
  transition: color .25s;
}
.contact-info-link svg {
  width: 18px; height: 18px;
  min-width: 18px; max-width: 18px;
  flex-shrink: 0; color: var(--ice);
}
.contact-info-link:hover { color: var(--ice); }

.contact-form { display: flex; flex-direction: column; gap: .85rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.cf-group input,
.cf-group textarea {
  width: 100%; padding: .75rem 1rem;
  background: var(--bg3); border: 1px solid var(--border2);
  color: var(--text); font-family: var(--font-body); font-size: .9rem;
  outline: none; transition: border-color .25s, box-shadow .25s;
}
.cf-group input:focus, .cf-group textarea:focus {
  border-color: var(--ice); box-shadow: 0 0 0 2px var(--ice-glow);
}
.cf-group input::placeholder, .cf-group textarea::placeholder { color: var(--text-muted); }
.cf-group textarea { resize: vertical; min-height: 130px; }

.contact-success {
  display: flex; align-items: center; gap: .75rem;
  padding: .85rem 1rem; margin-bottom: 1rem;
  background: rgba(0,232,122,.08); border: 1px solid rgba(0,232,122,.3);
  color: var(--green); font-size: .875rem;
}
.contact-success svg { width: 20px; height: 20px; flex-shrink: 0; }
.contact-error {
  padding: .85rem 1rem; margin-bottom: 1rem;
  background: rgba(255,68,102,.08); border: 1px solid rgba(255,68,102,.3);
  color: #ff8899; font-size: .875rem;
}

/* ════════════════════════════════════════════════════════
   GAME DETAIL PAGE
   ════════════════════════════════════════════════════════ */
.game-detail-hero {
  position: relative; padding-top: 110px;
  min-height: 480px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.game-detail-hero-img {
  position: absolute; inset: 0;
}
.game-detail-hero-img img {
  width: 100%; height: 100%; object-fit: cover; opacity: .35;
}
.game-detail-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--bg) 10%, rgba(5,7,15,.6) 100%);
}
.game-detail-hero-content {
  position: relative; z-index: 1;
  padding: 3rem 0 2.5rem;
}
.game-detail-meta { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; flex-wrap: wrap; }
.game-detail-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--text); margin-bottom: .75rem;
}
.game-detail-subtitle { font-size: 1.1rem; color: var(--text-mid); margin-bottom: 1.5rem; max-width: 600px; }
.game-detail-links { display: flex; gap: 1rem; flex-wrap: wrap; }

.game-detail-body { padding: 3rem 0 5rem; }
.game-detail-grid { display: grid; grid-template-columns: 1fr 280px; gap: 3rem; align-items: start; }

.game-trailer {
  position: relative; aspect-ratio: 16/9;
  overflow: hidden; margin-bottom: 2.5rem;
  background: var(--bg3);
}
.game-trailer iframe { width: 100%; height: 100%; position: absolute; inset: 0; }

.game-detail-description { margin-bottom: 3rem; }

.screenshots-section { margin-top: 2rem; }
.screenshots-title { font-size: 1.1rem; color: var(--text); margin-bottom: 1.25rem; }
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: .75rem;
}
.screenshot-thumb img {
  width: 100%; aspect-ratio: 16/9;
  object-fit: cover; display: block;
  border: 1px solid var(--border);
  transition: opacity .25s, border-color .25s;
}
.screenshot-thumb:hover img { opacity: .85; border-color: var(--ice-dim); }

.game-info-box {
  background: var(--bg3); border: 1px solid var(--border);
  padding: 1.5rem; position: sticky; top: 90px;
}
.info-box-title {
  font-family: var(--font-head); font-size: .7rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--ice); margin-bottom: 1.1rem;
  padding-bottom: .75rem; border-bottom: 1px solid var(--border);
}
.info-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: .5rem; padding: .5rem 0;
  border-bottom: 1px solid rgba(17,24,40,.6);
  font-size: .85rem;
}
.info-row:last-child { border-bottom: none; }
.info-label { color: var(--text-muted); flex-shrink: 0; }

@media (max-width: 860px) {
  .game-detail-grid { grid-template-columns: 1fr; }
  .game-info-box { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row-2 { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════
   ACHIEVEMENTS
   ════════════════════════════════════════════════════════ */
.achievements-section { background: var(--bg2); }
.achievements-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 1px; }

.achievement-item {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg3); border: 1px solid var(--border);
  transition: border-color .3s, box-shadow .3s;
}
.achievement-item:hover { border-color: var(--ice-dim); box-shadow: 0 0 20px var(--ice-glow); }

.achievement-icon { font-size: 2rem; flex-shrink: 0; width: 48px; text-align: center; }
.achievement-content { flex: 1; }
.achievement-title { font-size: 1rem; color: var(--text); margin-bottom: .2rem; }
.achievement-desc { font-size: .85rem; color: var(--text-muted); line-height: 1.5; }
.achievement-date {
  font-family: var(--font-head); font-size: .6rem; letter-spacing: .12em;
  color: var(--ice-dim); text-transform: uppercase; white-space: nowrap; flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════
   DISCORD WIDGET
   ════════════════════════════════════════════════════════ */
.discord-section { background: var(--bg); }
.discord-wrap {
  display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: center;
}
.discord-text p { color: var(--text-muted); line-height: 1.75; font-size: .95rem; }
.discord-widget iframe { display: block; border-radius: 2px; }

@media (max-width: 800px) {
  .discord-wrap { grid-template-columns: 1fr; }
  .discord-widget { display: flex; justify-content: center; }
  .discord-widget iframe { width: 100%; max-width: 350px; }
}

/* ════════════════════════════════════════════════════════
   TAGS
   ════════════════════════════════════════════════════════ */
.tag-badge {
  display: inline-flex; align-items: center;
  font-family: var(--font-head); font-size: .55rem; letter-spacing: .1em;
  text-transform: uppercase; padding: .2rem .55rem;
  border-radius: 2px; border: 1px solid;
  opacity: .85; transition: opacity .2s;
}
.tag-badge:hover { opacity: 1; }
.tags-row { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .6rem; }

/* ════════════════════════════════════════════════════════
   REVIEWS
   ════════════════════════════════════════════════════════ */
.reviews-section { margin-top: 3rem; border-top: 1px solid var(--border); padding-top: 2.5rem; }
.reviews-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.reviews-title { font-size: 1.1rem; color: var(--text); }
.rating-avg {
  font-family: var(--font-head); font-size: .8rem;
  color: #ffcc00; letter-spacing: .05em;
}
.review-card {
  background: var(--bg3); border: 1px solid var(--border);
  padding: 1.25rem 1.5rem; margin-bottom: 1rem;
}
.review-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .6rem; flex-wrap: wrap; gap: .5rem; }
.review-author { font-weight: 600; color: var(--text); font-size: .9rem; }
.review-stars { color: #ffcc00; font-size: 1rem; letter-spacing: .05em; }
.review-date { font-size: .75rem; color: var(--text-muted); }
.review-text { font-size: .875rem; color: var(--text-mid); line-height: 1.7; }

/* ════════════════════════════════════════════════════════
   LEGAL PAGES (Impressum / Datenschutz)
   ════════════════════════════════════════════════════════ */
.legal-page { padding-top: 110px; padding-bottom: 6rem; }
.legal-wrap { max-width: 780px; margin: 0 auto; }

.legal-body h2 {
  font-size: 1.2rem; color: var(--text);
  margin: 2rem 0 .65rem;
  padding-bottom: .4rem;
  border-bottom: 1px solid var(--border);
}
.legal-body h3 { font-size: 1rem; color: var(--text); margin: 1.25rem 0 .4rem; }
.legal-body p  { color: var(--text-mid); margin-bottom: .85rem; line-height: 1.75; }
.legal-body ul, .legal-body ol { margin: 0 0 1rem 1.5rem; color: var(--text-mid); }
.legal-body li { margin-bottom: .35rem; line-height: 1.65; }
.legal-body a  { color: var(--ice); }
.legal-body a:hover { color: var(--ice-bright); }
.legal-body strong { color: var(--text); }

.legal-placeholder {
  padding: 3rem 2rem; text-align: center;
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--text-muted);
}
.legal-placeholder a { color: var(--ice); }

/* ════════════════════════════════════════════════════════
   EMPTY STATE
   ════════════════════════════════════════════════════════ */
.empty-state {
  text-align: center; padding: 4rem 2rem;
  color: var(--text-muted);
}
.empty-icon { font-size: 3rem; margin-bottom: 1rem; opacity: .5; }
.empty-state p { font-size: 1rem; }

/* ════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 4.5rem 0 2rem;
}
.footer-minimal { padding: 2rem 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.footer-logo img { height: 34px; }
.footer-logo-text { font-family: var(--font-head); font-size: .95rem; letter-spacing: .08em; color: var(--text); }
.footer-logo-text span { color: var(--ice); }

.footer-about { font-size: .875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; }

.social-links { display: flex; gap: .75rem; flex-wrap: wrap; }
.social-link {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border2); color: var(--text-muted);
  transition: all .25s var(--ease);
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover { border-color: var(--ice); color: var(--ice); background: var(--ice-glow); }

.footer-heading {
  font-family: var(--font-head); font-size: .62rem;
  letter-spacing: .22em; color: var(--ice);
  text-transform: uppercase; margin-bottom: 1.25rem;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { font-size: .875rem; color: var(--text-muted); transition: color .25s; }
.footer-links a:hover { color: var(--ice); }

.footer-contact-item { font-size: .875rem; color: var(--text-muted); margin-bottom: .5rem; }
.footer-contact-item a { color: var(--text-mid); }
.footer-contact-item a:hover { color: var(--ice); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: .8rem; color: var(--text-muted); }
.footer-copy span { color: var(--ice); }

/* ════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(5, 7, 15, .97);
    border-top: 1px solid var(--border);
    flex-direction: column;
    padding: 1.5rem 2rem; gap: 1.25rem;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .about-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }

  .page-hero { padding: 7rem 0 3rem; }
}

@media (max-width: 480px) {
  section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }
  .stat-number { font-size: 2.2rem; }
}
