* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: radial-gradient(circle at center top, #1a1a1a 0%, #000000 70%);
  font-family: "Segoe UI", Arial, sans-serif;
  text-align: center;
  padding: 40px 20px;
}

.logo {
  max-width: 320px;
  width: 70vw;
  height: auto;
  margin-bottom: 48px;
  filter: drop-shadow(0 4px 20px rgba(255, 255, 255, 0.08));
}

.mensaje {
  color: #f5f5f5;
  font-size: clamp(1.3rem, 4vw, 2.2rem);
  font-weight: 600;
  line-height: 1.5;
  max-width: 700px;
}

.mensaje .destacado {
  display: block;
  color: #e63946;
  font-size: clamp(1.1rem, 3.2vw, 1.6rem);
  font-weight: 700;
  margin-top: 12px;
  letter-spacing: 1px;
}
