body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom, #0c0c2d, #1b1b3a);
  color: white;
  text-align: center;
  min-height: 100vh;
}

header {
  position: relative;
  padding: 20px;
}

.logo {
  position: absolute;
  top: 20px;
  left: 20px;
  font-weight: bold;
  color: orange;
}

.clock {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #333;
  padding: 5px 12px;
  border-radius: 20px;
}

.moon {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 22px;
  color: gold;
}

main h1 {
  font-size: 36px;
  color: #d6b4ff;
  margin-top: 80px;
}

main h1 span {
  color: #b48cf0;
}

main p {
  max-width: 500px;
  margin: 20px auto;
  color: #ccc;
  font-size: 14px;
}

.join-btn, button {
  background: linear-gradient(to right, #a865ff, #ff9b4b);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  margin: 20px auto;
}

input {
  padding: 10px;
  font-size: 16px;
  border-radius: 8px;
  border: none;
  margin-bottom: 16px;
}

.hidden {
  display: none;
}

section {
  padding: 40px 20px;
}

.timer {
  font-size: 32px;
  margin: 10px 0;
  color: #90ee90;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  padding: 5px;
}

/* Fuß-Button */
#kick-out {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  z-index: 999;
  transition: transform 0.2s;
}
#kick-out:hover {
  transform: scale(1.2) rotate(-10deg);
}

/* Popup Nachricht */
#kick-message {
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.1);
  padding: 20px 40px;
  border-radius: 12px;
  color: white;
  font-size: 20px;
  z-index: 1000;
  backdrop-filter: blur(8px);
}
