* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* FONDO */
body {
  background: #0b0f19;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* CONTENEDOR */
.container {
  width: 90%;
  max-width: 360px;
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 18px;
  text-align: center;
  position: relative;

  /* GLOW FUERTE */
  box-shadow: 
    0 0 10px rgba(0, 229, 255, 0.8),
    0 0 25px rgba(0, 229, 255, 0.6),
    0 0 60px rgba(0, 229, 255, 0.5),
    0 0 100px rgba(0, 229, 255, 0.3);

  border-top: 4px solid #f97316;
}

/* BORDE NEÓN REAL */
.container::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(135deg, #00e5ff, #00bcd4, #00e5ff);
  z-index: -1;
  filter: blur(12px);
  opacity: 0.9;
}

/* FOTO */
.profile {
  width: 105px;
  height: 105px;
  border-radius: 50%;
  border: 3px solid #1f2937;
  margin-bottom: 12px;
}

/* TEXTO */
h2 {
  color: #1f2937;
  margin-bottom: 5px;
  font-weight: 600;
}

p {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 18px;
}

/* BOTONES */
.buttons {
  margin-top: 10px;
}

button {
  width: 100%;
  padding: 14px;
  margin: 8px 0;
  border-radius: 10px;
  font-size: 15px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.25s ease;
  border: none;
}

/* BOTÓN PRINCIPAL */
button.primary {
  background: #1f2937;
  color: white;
}

button.primary:hover {
  background: #111827;
  transform: translateY(-2px);
}

/* BOTÓN NARANJA */
button.accent {
  background: #f97316;
  color: white;
}

button.accent:hover {
  background: #ea580c;
  transform: translateY(-2px);
}

/* BOTÓN SECUNDARIO */
button.secondary {
  background: transparent;
  border: 1.5px solid #d1d5db;
  color: #374151;
}

button.secondary:hover {
  border-color: #f97316;
  color: #f97316;
}

/* RESPONSIVE */
@media (max-width: 400px) {
  .container {
    padding: 25px 18px;
  }

  h2 {
    font-size: 18px;
  }

  button {
    font-size: 14px;
    padding: 12px;
  }
}

body {
  background: #0b0f19;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100dvh;
  padding: 15px;
}