@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Space+Grotesk:wght@500;600;700&display=swap");

@media (min-width: 769px) {
  html {
    font-size: 133%;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #080810;
  background-image:
    radial-gradient(
      ellipse at 20% 20%,
      rgba(124, 58, 237, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 80%,
      rgba(124, 58, 237, 0.05) 0%,
      transparent 50%
    );
  color: #e0e0e0;
  min-height: 100vh;
  padding: 2.5rem 2rem;
}

h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #fff 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.descripcion {
  font-size: 13px;
  color: #8e72be;
  margin-top: 6px;
  margin-bottom: 2px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.fecha {
  font-size: 12px;
  color: #a0a0b0;
  margin-top: 4px;
  margin-bottom: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.app-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: #6b6b80;
  padding: 0.75rem 0;
  background: rgba(8, 8, 16, 0.85);
  backdrop-filter: blur(8px);
  border-top: 1px solid #1e1e2e;
  z-index: 10;
}