/* ===== Reset ===== */

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

html, body {
  height: 100%;
  font-family: 'Inter', sans-serif;
  background: #05060A;
  color: #FFFFFF;
  line-height: 1.6;
}

/* ===== Farben ===== */

:root {
  --bg-dark: #05060A;
  --bg-panel: #111320;
  --accent-cyan: #00E0FF;
  --accent-red: #FF3A3A;
  --text-main: #FFFFFF;
  --text-muted: #A7B0C5;
}

/* ===== Hero ===== */

.hero {
  position: relative;
  height: 100vh;
  background-image: url('assets/img/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3.5rem;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-shadow: 0 0 20px var(--accent-cyan);
}

.hero p {
  font-size: 1.3rem;
  margin-top: 12px;
  color: var(--text-muted);
}

/* ===== Buttons ===== */

.cta {
  margin-top: 30px;
}

.btn-primary,
.btn-secondary {
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 1.05rem;
  margin: 0 10px;
  text-decoration: none;
  transition: 0.25s ease;
  display: inline-block;
}

.btn-primary {
  background: var(--accent-cyan);
  color: #000;
  box-shadow: 0 0 18px var(--accent-cyan);
  font-weight: 600;
}

.btn-primary:hover {
  background: #00B8D4;
  box-shadow: 0 0 24px var(--accent-cyan);
}

.btn-secondary {
  border: 2px solid var(--text-main);
  color: var(--text-main);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* ===== Sektionen ===== */

section {
  padding: 70px 8vw;
}

section:nth-of-type(odd) {
  background: #070814;
}

section h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===== Features ===== */

.features .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.features .card {
  background: var(--bg-panel);
  border-radius: 10px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.6);
}

/* ===== Games ===== */

.games .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.game-card {
  background: linear-gradient(135deg, #111320, #181A2A);
  border-radius: 10px;
  padding: 16px 18px;
  border: 1px solid rgba(0, 224, 255, 0.25);
  box-shadow: 0 0 16px rgba(0, 224, 255, 0.18);
  text-align: center;
  font-weight: 500;
}

/* ===== Events ===== */

.events ul {
  list-style: none;
}

.events li {
  margin-bottom: 10px;
  padding: 12px 16px;
  background: var(--bg-panel);
  border-radius: 8px;
  border-left: 3px solid var(--accent-red);
}

/* ===== Join ===== */

.join {
  text-align: center;
}

.join h2 {
  margin-bottom: 20px;
}

/* ===== Responsive ===== */

@media (max-width: 768px) {
  .hero {
    height: 80vh;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero p {
    font-size: 1.05rem;
  }

  section {
    padding: 50px 6vw;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .btn-primary,
  .btn-secondary {
    display: block;
    margin: 10px auto;
  }
}
