@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;800;900&display=swap);

body {
    font-family: 'Poppins', sans-serif;
    background-color: #202228;
    color: #fff;
  }

  .hero-bg {
    position: relative;
    min-height: 60vh;
    background: url('../images/hero.jpg') top center / cover no-repeat;
    overflow: hidden;
  }

  @media (max-width: 768px) {
    .hero-bg {
      min-height: auto;
    }
  }

  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }

  .hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(0, 255, 0, 0.2), rgba(255, 0, 0, 0.2));
    background-size: 400% 400%;
    animation: gradient-animation 6s infinite alternate;
    z-index: 2;
  }

  .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem 1rem;
    max-width: 90%;
    margin: 2rem auto;
  }

  @media (max-width: 768px) {
    .hero-content {
      margin: 1rem auto;
    }

    .hero-content h1 {
      font-size: 1.8rem;
    }

    .hero-content p {
      font-size: 1rem;
    }

    .hero-content ul li {
      font-size: 0.9rem;
    }
  }

  @keyframes gradient-animation {
    0% {
      background-position: 0% 50%;
    }

    50% {
      background-position: 100% 50%;
    }

    100% {
      background-position: 0% 50%;
    }
  }

  .blur-bg {
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.5);
  }

  .gaming-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3rem 0;
  position: relative;
}

.gaming-divider::before,
.gaming-divider::after {
  content: '';
  flex: 1;
  height: 3px;
  background: linear-gradient(90deg, rgba(127, 17, 224, 0.7), rgba(214, 188, 251, 0.7));
  animation: pulse-divider 3s infinite alternate;
}

.gaming-divider span {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0 1rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gaming-divider span .material-icons {
  transition: transform 0.3s ease, color 0.3s ease;
}

.gaming-divider span .material-icons:hover {
  transform: scale(1.3);
  color: rgba(214, 188, 251, 1);
}

@keyframes pulse-divider {
  0% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.8;
  }
}

  .centered-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem 1rem;
  }

  .image-hover {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #1c1e22;
    padding: 10px;
    border: 2px solid #7f11e0;
  }

  .image-hover:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(127, 17, 224, 0.5);
  }

  .image-hover img {
    display: block;
    width: 100%;
    height: auto;
    transition: filter 0.3s ease;
  }

  .image-hover:hover img {
    filter: brightness(1.2) contrast(1.3);
  }

  .status-icon {
    font-size: 1.5rem;
  }

  .status-online {
    color: #4caf50;
  }

  .status-offline {
    color: #f44336;
  }

  .footer {
    background: linear-gradient(135deg, #121212, #1c1e22);
  }

  .footer {
    background: linear-gradient(135deg, #0e0e0e, #1c1e22);
    border-top: 2px solid rgba(255, 255, 255, 0.1);
  }

  .footer a {
    font-size: 1rem;
    transition: color 0.3s ease, transform 0.3s ease;
  }

  .footer a:hover {
    transform: translateY(-3px);
  }

  .footer h3 {
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }

  .footer .bi,
  .footer .material-icons {
    transition: transform 0.3s ease, color 0.3s ease;
  }

  .footer .bi:hover,
  .footer .material-icons:hover {
    transform: scale(1.3);
    color: rgba(255, 255, 255, 0.8);
  }

  .footer p {
    line-height: 1.6;
  }

  @media (min-width: 768px) {
    .footer .container {
      align-items: flex-start;
    }

    .footer .portals,
    .footer .social-media,
    .footer .developed {
      flex: 1;
    }
  }

  #discord-users {
    animation: pulse 2s infinite;
  }

  @keyframes pulse {

    0%,
    100% {
      opacity: 1;
    }

    50% {
      opacity: 0.7;
    }
  }

  .stat-card {
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .stat-card:hover {
    transform: translateY(-5px);
  }

  .progress .w-full {
    position: relative;
  }

  .progress span {
    position: absolute;
    z-index: 10;
  }