* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Orbitron', sans-serif;
  color: white;
  overflow: hidden;
  height: 100vh;
  cursor: none;
  background: #000; /* Default fallback color */
}
.overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('https://www.videezy.com/image/backgrounds/animated-smoke-loop.gif') center/cover no-repeat;
  opacity: 0.15;
  z-index: 1;
}
#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* Particle effect in the background */
}
.container {
  position: relative;
  z-index: 2; /* Make sure content is on top */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}
h1 {
  font-size: 3.5rem;
  margin-bottom: 10px;
}
.btn {
  background: #f03434;
  padding: 12px 24px;
  color: white;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1.2rem;
  margin: 10px;
  transition: 0.3s ease;
}
.btn:hover {
  background: #ff6666;
}
.servers {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.server-link {
  background: rgba(255,255,255,0.05);
  padding: 15px 20px;
  border-radius: 10px;
  width: 300px;
  font-weight: bold;
  transition: 0.3s ease;
}
.server-link:hover {
  background: rgba(240,52,52,0.8);
  cursor: pointer;
}
.social-icons {
  margin-top: 30px;
}
.social-icons a {
  color: #f03434;
  margin: 0 10px;
  font-size: 1.5rem;
  transition: 0.3s;
}
.social-icons a:hover {
  color: #fff;
}
footer {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  font-size: 0.9rem;
  font-family: 'Nunito', sans-serif;
  color: #ccc;
}
.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 2px solid #f03434;
  border-radius: 50%;
  pointer-events: none;
  transition: transform 0.1s ease;
  z-index: 9999;
}
.partners {
  margin-top: 40px;
  text-align: center;
  z-index: 2;
}
.partners h2 {
  color: #f03434;
  margin-bottom: 20px;
  font-size: 1.8rem;
}
.partner-logos {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.partner-logos a img {
  max-width: 150px;
  height: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.partner-logos a img:hover {
  opacity: 1;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  .btn {
    font-size: 1rem;
    padding: 10px 20px;
    width: 80%;
  }

  .servers .server-link {
    width: 90%;
    font-size: 1rem;
  }

  .partner-logos {
    flex-direction: column;
    align-items: center;
  }

  .partner-logos a img {
    max-width: 80%;
    margin-bottom: 10px;
  }

  .social-icons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .social-icons a {
    font-size: 1.2rem;
    margin: 8px;
  }

  .container {
    padding: 20px;
    height: auto;
  }

  body {
    overflow-y: auto;
  }

  footer {
    position: static;
    margin-top: 30px;
  }
}
