@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Fondo sutil */
.overlay {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.03) 10px,
    transparent 10px,
    transparent 20px
  );
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 760px;
  width: 90%;
  padding: 60px 50px;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 18px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

/* Marca */
.brand {
  margin-bottom: 35px;
}

.brand .icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 10px;
}

.brand h1 {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 6px;
}

.subtitle {
  color: #d4af37;
  font-weight: 500;
  letter-spacing: 2px;
  margin-top: 6px;
}

/* Contenido */
.content h2 {
  font-size: 1.9rem;
  margin-bottom: 15px;
  font-weight: 500;
}

.content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e0e0e0;
}

.divider {
  width: 80px;
  height: 3px;
  background: #d4af37;
  margin: 25px auto;
  border-radius: 10px;
}

.status {
  font-size: 1.05rem;
  font-weight: 500;
  color: #ffffff;
}

/* Footer */
footer {
  margin-top: 40px;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .container {
    padding: 40px 25px;
  }

  .brand h1 {
    font-size: 2.4rem;
    letter-spacing: 4px;
  }

  .content h2 {
    font-size: 1.5rem;
  }

  .content p {
    font-size: 1rem;
  }
}
