body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top, #0d0d0d, #000);
  color: #f0f0f0;
  line-height: 1.6;
}

/* Header und Navigation */
header {
  background-color: #0a0a0a;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  color: #00ffe1;
  margin: 0;
}

nav {
  display: flex;
  gap: 1.5rem;
  background: #0a0a0a;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  box-shadow: inset 0 0 10px rgba(0, 255, 225, 0.2);
}

nav a {
  color: #ccc;
  text-decoration: none;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: background 0.3s, color 0.3s;
}

nav a:hover {
  background: #00ffe1;
  color: #000;
}

/* Hero Bereich */
.hero {
  background: linear-gradient(to right, #1a1a1a, #222);
  text-align: center;
  padding: 6rem 2rem 4rem;
  border-bottom: 2px solid #00ffe1;
}

.hero h2 {
  font-size: 3rem;
  color: #00ffe1;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  color: #ccc;
  max-width: 800px;
  margin: 0 auto;
}

/* Galerie */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery a {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 255, 225, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery a:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(0, 255, 225, 0.4);
}

.gallery img {
  width: 100%;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 255, 225, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0, 255, 225, 0.3);
}

/* Spiele-Liste */
.game-list {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.game-item {
  background: #121212;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0, 255, 225, 0.1);
  transition: box-shadow 0.3s;
}

.game-item:hover {
  box-shadow: 0 6px 25px rgba(0, 255, 225, 0.4);
}

.game-item img {
  max-width: 100%;
  border-radius: 12px;
  margin-top: 1rem;
}

/* Discord Link Button */
.discord-link {
  display: inline-block;
  background: #7289da;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.discord-link:hover {
  background: #5b6eae;
}

/* Chatbox (für Discord oder Support) */
.chatbox {
  max-width: 800px;
  margin: 3rem auto;
  background: #1b1b1b;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 255, 225, 0.05);
}

.chat-msg {
  background: #111;
  border-radius: 8px;
  padding: 0.8rem 1rem;
  margin-bottom: 1rem;
  color: #ccc;
  line-height: 1.5;
}

.chat-msg.user {
  background: #00ffe133;
  color: #fff;
  text-align: right;
}

/* Footer */
footer {
  background-color: #111;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #888;
}

/* Scroll to top Button */
#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 70px;
  right: 30px;
  z-index: 9999;
  background-color: #00ffe1;
  color: #000;
  border: none;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 255, 225, 0.4);
  transition: background-color 0.3s;
}
#scrollTopBtn:hover {
  background-color: #00c4ab;
}

/* Dark Mode Styles */
.dark-mode {
  background: #111 !important;
  color: #eee !important;
}
.dark-mode header,
.dark-mode footer,
.dark-mode nav {
  background-color: #222 !important;
}

/* Dark Mode Toggle Button */
#darkModeToggle {
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 10000;
  background-color: #00ffe1;
  border: none;
  padding: 10px 16px;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  color: #000;
  box-shadow: 0 4px 10px rgba(0, 255, 225, 0.4);
  transition: background-color 0.3s;
}
#darkModeToggle:hover {
  background-color: #00c4ab;
}

.slider img {
  width: 300px; /* Bildgröße anpassen */
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 15px 6px rgba(0, 255, 225, 0.25); /* sanfter Glow, kein harter Rand */
  display: block;
  margin: 0 auto;
}
.music-consent {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #111;
  color: #fff;
  border: 2px solid #00ffe1;
  border-radius: 12px;
  padding: 1rem;
  z-index: 10000;
  box-shadow: 0 0 15px rgba(0, 255, 225, 0.3);
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.music-consent button {
  margin: 0.5rem;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 8px;
  background: #00ffe1;
  color: #000;
  cursor: pointer;
  font-weight: bold;
}

.music-consent button:hover {
  background: #00cccc;
}

.music-blocker {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.music-popup {
  background: #111;
  border: 2px solid #00ffe1;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 0 25px rgba(0, 255, 225, 0.3);
}

.music-popup button {
  margin: 0.8rem;
  padding: 0.7rem 1.4rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: bold;
  background: #00ffe1;
  color: #000;
  cursor: pointer;
  transition: background 0.3s;
}

.music-popup button:hover {
  background: #00cccc;
}

.music-consent {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #111;
  color: #fff;
  border: 2px solid #00ffe1;
  border-radius: 12px;
  padding: 1rem;
  z-index: 10000;
  box-shadow: 0 0 15px rgba(0, 255, 225, 0.3);
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.music-consent button {
  margin: 0.5rem;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 8px;
  background: #00ffe1;
  color: #000;
  cursor: pointer;
  font-weight: bold;
}

.music-consent button:hover {
  background: #00cccc;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top, #111, #000);
  color: #f0f0f0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background-color: #111;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

header h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  color: #00ffe1;
  margin: 0;
}

nav a {
  color: #ddd;
  margin-left: 1.5rem;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}

nav a:hover {
  color: #00ffe1;
}

main {
  flex: 1;
  padding: 2rem;
}

.music-blocker {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.music-popup {
  background: #111;
  border: 2px solid #00ffe1;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 0 25px rgba(0, 255, 225, 0.3);
}

.music-popup button {
  margin: 0.8rem;
  padding: 0.7rem 1.4rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: bold;
  background: #00ffe1;
  color: #000;
  cursor: pointer;
  transition: background 0.3s;
}

.music-popup button:hover {
  background: #00cccc;
}

label {
  font-size: 1.2rem;
  cursor: pointer;
}

input[type="checkbox"] {
  margin-right: 0.8rem;
  transform: scale(1.3);
  cursor: pointer;
}

.music-blocker {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.music-popup {
  background: #222;
  padding: 2rem;
  border-radius: 8px;
  color: #eee;
  font-family: sans-serif;
  text-align: center;
}
