/* style.css */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  height: 100%;
  background: url('hintergrund.webp') no-repeat center center fixed;
  background-size: cover;
  color: #ffffff;
}

nav {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 1rem;
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 2rem;
  z-index: 1000;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
}

nav a:hover {
  text-decoration: underline;
}

.content {
  text-align: center;
  padding-top: 120px;
}

/* Die ".button" Klasse ist jetzt nicht mehr direkt im HTML verwendet,
   aber hier zur Vollständigkeit belassen, falls du sie später wieder brauchst. */
.button {
  display: inline-block;
  margin: 1rem;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  background-color: rgba(0, 123, 255, 0.8);
  color: white;
  text-decoration: none;
  border-radius: 0.5rem;
}

.button:hover {
  background-color: rgba(0, 123, 255, 1);
}

footer {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
  color: #cccccc;
  font-size: 0.9rem;
}

/* Neue Regeln für den Discord-Widget-Container */
.discord-widget-container {
  box-shadow: 0 0 15px rgba(0, 191, 255, 0.8); /* Blau leuchtender Schatten */
  border-radius: 8px; /* Optional: Abgerundete Ecken */
  padding: 5px; /* Optional: Etwas Abstand zwischen Rahmen und Widget */
  display: inline-block; /* Wichtig, damit der Schatten und der Rahmen richtig um das Inline-Element sitzen */
}

.discord-widget-container:hover {
  box-shadow: 0 0 25px rgba(0, 191, 255, 1); /* Intensiveres Leuchten beim Hover */
}
