body {
  font-family: 'Arial', sans-serif;
  background-color: #000;
  color: #4db8ff;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

#stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.star {
  position: absolute;
  background-color: #fff;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  animation: twinkle 3s infinite;
}

.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.content-wrapper {
  background-color: rgba(77, 184, 255, 0.1);
  border-radius: 15px;
  padding: 1rem;
  box-shadow: 0 0 20px rgba(77, 184, 255, 0.3);
  max-width: 500px;
  width: 90%;
  position: relative;
  overflow: hidden;
}

.content-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    transparent,
    rgba(77, 184, 255, 0.4),
    transparent 30%
  );
  animation: rotate 4s linear infinite;
}

.content-wrapper::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: rgba(0, 0, 0, 0.9);
  border-radius: 15px;
}

h1, h2 {
  text-align: center;
  color: #4db8ff;
  text-shadow: 0 0 10px rgba(77, 184, 255, 0.5);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.animate-title {
  animation: slideIn 1s ease-out, glow 2s ease-in-out infinite alternate;
}

.form-container {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.form-container a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  width: 80%;
  max-width: 300px;
  text-align: center;
}

/* Botón de Contacto */
.contact-button {
  background-color: #4db8ff;
  color: #000;
  box-shadow: 0 4px 15px rgba(77, 184, 255, 0.3);
}

.contact-button:hover {
  background-color: #80ccff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(77, 184, 255, 0.5);
}

/* Botón de Reset IP BIND */
.reset-button {
  background-color: #ff4d4d;
  color: #000;
  box-shadow: 0 4px 15px rgba(255, 77, 77, 0.3);
}

.reset-button:hover {
  background-color: #ff6666;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 77, 77, 0.5);
}

/* Efecto Animado */
.animate-button {
  animation: fadeIn 0.8s ease-in-out, pulse 2s infinite alternate;
}

input, button {
  padding: 0.5rem;
  border: none;
  border-radius: 5px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

input {
  background-color: #1a1a1a;
  color: #4db8ff;
  border: 1px solid #4db8ff;
  flex-grow: 1;
}

.animate-input {
  animation: fadeIn 0.5s ease-out, float 3s ease-in-out infinite;
}

.purchase-btn {
   margin-top: 20px;
   text-align: center;
}

.purchase-btn .btn {
   background-color: #2ecc71;
   border: none;
   border-radius: 5px;
   color: #fff;
   font-size: 12px;
   font-weight: 500;
   padding: 10px 10px;
   text-decoration: none;
}

.purchase-btn .subtext {
   color: #bdc3c7;
   font-size: 12px;
   font-weight: 400;
   margin-top: 5px;
   text-align: center;
}


button {
  background-color: #4db8ff;
  color: #000;
  cursor: pointer;
  white-space: nowrap;
}

.animate-button {
  animation: fadeIn 0.5s ease-out 0.2s both, pulse 2s infinite;
}

button:hover {
  background-color: #80ccff;
  transform: scale(1.05);
}

button:hover {
  background-color: #80ccff;
  transform: scale(1.05);
}


.info-container {
  background-color: rgba(77, 184, 255, 0.05);
  border-radius: 10px;
  padding: 0.75rem;
  box-shadow: 0 0 15px rgba(77, 184, 255, 0.2);
  position: relative;
  z-index: 1;
}

.animate-fade-in {
  animation: fadeIn 1s ease-out 0.5s both;
}

ol, ul {
  padding-left: 0;
  list-style-type: none;
  counter-reset: item;
  margin: 0.5rem 0;
}

ol > li, ul > li {
  margin-bottom: 0.5rem;
  padding: 0.4rem 0.6rem;
  background-color: rgba(77, 184, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  font-size: 0.85rem;
}

ol > li::before {
  counter-increment: item;
  content: counter(item);
  background-color: #4db8ff;
  color: #000;
  font-weight: bold;
  width: 1.2em;
  height: 1.2em;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0.5rem;
  font-size: 0.75rem;
}

ul > li::before {
  content: 'â€¢';
  color: #4db8ff;
  font-size: 1.1em;
  margin-right: 0.5rem;
}

ol > li:hover, ul > li:hover {
  background-color: rgba(77, 184, 255, 0.2);
  transform: translateX(5px);
}

footer {
  text-align: center;
  padding: 0.5rem;
  width: 100%;
  background-color: rgba(77, 184, 255, 0.1);
  font-size: 0.75rem;
  position: fixed;
  bottom: 0;
}

@media (max-width: 500px) {
  .content-wrapper {
    padding: 0.75rem;
  }

  .form-container {
    flex-direction: column;
  }

  ol > li, ul > li {
    flex-direction: column;
    align-items: flex-start;
  }

  ol > li::before, ul > li::before {
    margin-bottom: 0.25rem;
  }
}

@keyframes twinkle {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes glow {
  from { text-shadow: 0 0 5px #4db8ff, 0 0 10px #4db8ff; }
  to { text-shadow: 0 0 10px #4db8ff, 0 0 20px #4db8ff; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}