
body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background: radial-gradient(circle at top, #0586d2, #035a91);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 100vh;
padding-bottom: 100px;
  overflow-x: hidden;
overflow-y: auto;
}

header {
  background: #035a91;
  width: 100%;
  padding: 20px 0;
  box-shadow: 0 0 20px #35a9e1;
  z-index: 2;
  position: relative;
}

h1.neon {
  color: #35a9e1;
  text-shadow: 0 0 10px #35a9e1, 0 0 20px #35a9e1, 0 0 30px #35a9e1, 0 0 40px #35a9e1;
  font-size: 2.5em;
}

.twitch-button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: #0586d2;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  box-shadow: 0 0 10px #0586d2;
  transition: 0.3s;
}
.twitch-button:hover {
  background: #35a9e1;
  box-shadow: 0 0 15px #35a9e1;
}

.stream-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 40px 0;
  position: relative;
  z-index: 2;
}

iframe {
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 20px #35a9e166;
}

footer {
  background: #035a91;
  color: #ddd;
  padding: 15px;
  width: 100%;
  box-shadow: 0 -2px 20px #35a9e1;
  z-index: 2;
  position: relative;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  background: url('https://media.giphy.com/media/l0MYt5jPR6QX5pnqM/giphy.gif') center/cover no-repeat;
  opacity: 0.05;
  animation: flicker 3s infinite alternate;
}

@keyframes flicker {
  from { opacity: 0.03; }
  to { opacity: 0.08; }
}

.planning {
  margin: 50px auto;
  padding: 20px;
  max-width: 900px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 20px;
  box-shadow: 0 0 25px #35a9e155;
}

.planning h2 {
  margin-bottom: 20px;
  font-size: 2em;
  color: #35a9e1;
  text-shadow: 0 0 10px #35a9e1;
}

.planning table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.1em;
  color: #ffffff;
}

.planning th, .planning td {
  padding: 12px 20px;
  border-bottom: 1px solid #35a9e133;
  text-align: center;
}

.planning th {
  color: #35a9e1;
  text-shadow: 0 0 10px #35a9e1;
}


h1.neon {
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid #2fc1ff;
  width: 0;
  animation: typing 4s steps(45, end) forwards, blink 0.7s step-end infinite;
  font-size: 2.3em;
  color: #2fc1ff;
  font-family: 'Orbitron', monospace;
  letter-spacing: 1px;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink {
  50% { border-color: transparent; }
}


.youtube-carousel {
  margin: 60px auto;
  padding: 20px;
  max-width: 1000px;
  text-align: center;
}

.youtube-carousel h2 {
  color: #2fc1ff;
  font-size: 2em;
  text-shadow: 0 0 10px #2fc1ff;
  margin-bottom: 20px;
}

.carousel-container {
  overflow-x: auto;
  scroll-behavior: smooth;
}

.carousel {
  display: flex;
  gap: 20px;
  padding: 10px;
  justify-content: flex-start;
}

.carousel iframe {
  width: 320px;
  height: 180px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 10px #2fc1ff66;
  transition: transform 0.3s;
}

.carousel iframe:hover {
  transform: scale(1.05);
}


/* Responsive styles */
@media (max-width: 768px) {
  .stream-container {
    flex-direction: column;
    align-items: center;
  }

  iframe {
    width: 100% !important;
    height: auto;
    max-width: 100%;
  }

  .carousel {
    flex-direction: column;
    align-items: center;
  }

  .video-promo {
    flex-direction: column;
  }

  .youtube-button {
    font-size: 1em;
    padding: 10px 15px;
  }

  .planning table {
    font-size: 0.95em;
  }

  .planning th, .planning td {
    padding: 8px;
  }

  h1.neon, h2.neon {
    font-size: 1.5em;
  }

  .video-promo img {
    width: 100%;
    max-width: 320px;
  }
}


.contact-section {
  margin: 60px auto;
  text-align: center;
  padding: 40px 20px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  box-shadow: 0 0 20px #2fc1ff66;
  max-width: 700px;
}

.contact-section h2 {
  font-size: 2em;
  color: #2fc1ff;
  margin-bottom: 15px;
  text-shadow: 0 0 10px #2fc1ff;
}

.contact-section p {
  font-size: 1.1em;
  color: #eee;
  margin-bottom: 15px;
}

.contact-mail {
  font-size: 1.2em;
  color: #2fc1ff;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-mail:hover {
  color: #ffffff;
  text-shadow: 0 0 10px #2fc1ff;
}


.discord-link {
  font-size: 1.1em;
  color: #5865F2;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  transition: color 0.3s;
}

.discord-link:hover {
  color: #ffffff;
  text-shadow: 0 0 10px #5865F2;
}
