body {
  margin: 0;
  background-color: #000;
  color: #fff;
  font-family: Arial, sans-serif;
}

header {
  display: flex;
  justify-content: flex-start;
  padding: 20px;
  background-color: #111;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-right: 20px;
  font-size: 16px;
  transition: color 0.3s;
}

nav a:hover {
  color: #00ffe1;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100vh;
  padding-top: 80px;
  box-sizing: border-box;
}

.title {
  font-family: 'Audiowide', cursive;
  font-size: 4rem;
  color: white;
  animation: glow 4s infinite;
}

.headertext {
  font-family: 'Audiowide', cursive;
  font-size: 1rem;
  color: white;
}

@keyframes glow {
  0% { text-shadow: 0 0 0px #00ffe1; color: #fff; }
  50% { text-shadow: 0 0 20px #00ffe1, 0 0 30px #00ffe1; color: #00ffe1; }
  100% { text-shadow: 0 0 0px #00ffe1; color: #fff; }
}

.subtitle {
  font-size: 1.2rem;
  color: white;
  margin-top: 10px;
}

@media (max-width: 600px) {
  .title {
    font-size: 2.5rem;
  }

  nav a {
    font-size: 14px;
    margin-right: 15px;
  }
}

.subtitle {
  color: #fff;
  text-align: center;
  margin-top: 20px;
  font-size: 18px;
  letter-spacing: 1px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.animated-words .word {
  opacity: 0;
  transform: translateX(50px);
  animation: fadeInRight 1s ease-out forwards;
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #222;
    color: #fff;
    padding: 15px;
    text-align: center;
    font-size: 14px;
    z-index: 999;
}

#cookie-banner button {
    margin-top: 8px;
    padding: 8px 14px;
    border: none;
    background-color: #00ffe1;
    color: #000;
    font-weight: bold;
    cursor: pointer;
}

