* {
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", Helvetica, sans-serif;
  margin: 0;
  color: white;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  position: relative;
  z-index: 1;
}

#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}

.gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(rgba(20, 26, 35, 0.55), rgba(20, 26, 35, 0.55));
  z-index: -1;
}

.container {
  text-align: center;
  max-width: 420px;
  width: 90vw;
  padding: 40px 25px;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.logo img {
  width: 100%;
  max-width: 225px;
  animation: logo 5s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(99, 102, 241, 0.6));
}

@keyframes logo {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.07);
  }
}

.server-name {
  font-size: 1.7rem;
  text-align: center;
  font-weight: 600;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.7);
}

.ip {
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  transition: color 0.3s ease;
  display: inline-block;
  position: center;
  padding: 5px 20px;
  border-radius: 40px;
  text-align: center;
  margin: 0 auto;
  display: block;
  width: fit-content;
  background: #555;
  background-position: center;
  box-shadow: 0 0 10px rgba(115, 115, 115, 0.7);
  font-weight: 700;
}

.ip:hover {
  color: #6366f1;
  box-shadow: 0 0 12px #6366f1;
}

hr {
  margin: 35px 0;
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.items {
  display: flex;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: nowrap;
  margin-bottom: 45px;
}

.item {
  color: white;
  text-align: center;
  flex: 1;
  min-width: 80px;
  max-width: 120px;
  cursor: pointer;
  transition: color 0.35s ease;
  user-select: none;
}

.item:hover {
  color: #6366f1;
}

.item i {
  transition: transform 0.25s ease;
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
}

.item i:hover {
  transform: scale(1.25);
}

.title {
  font-weight: 700;
  font-size: 1.2rem;
  margin: 14px 0 0 0;
  letter-spacing: 0.03em;
}

.subtitle {
  font-size: 1.5rem;
  margin: 0 0 30px 0;
  color: #ddd;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}

.social {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 20px;
}

.social .item i {
  color: white;
  transition: color 0.35s ease;
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.25));
}

.social .item:hover i {
  color: #6366f1;
}

/* Responsive para móvil */
@media (max-width: 600px) {
  .container {
    max-width: 95vw;
    padding: 30px 20px;
  }

  .items {
    gap: 18px;
    flex-wrap: wrap;
  }

  .item {
    flex: 1 1 30%;
    max-width: none;
  }

  .title {
    font-size: 1.1rem;
  }

  .subtitle {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .social {
    gap: 20px;
    margin-bottom: 15px;
  }
}
