* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  color: #111;
  background: #d8d8d8 url("images/fondo.jpg") center / cover no-repeat fixed;
}

.page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 14px;
}

.card {
  width: min(92vw, 520px);
  min-height: calc(100svh - 28px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(12px, 2.6svh, 28px) 18px;
  background: rgba(235, 235, 235, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.logo {
  width: clamp(70px, 12svh, 116px);
  height: auto;
  margin-bottom: clamp(6px, 1.4svh, 12px);
}

h1 {
  margin: 0;
  color: #b3202e;
  font-size: clamp(28px, 5svh, 46px);
  line-height: 0.98;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.volume {
  margin: clamp(10px, 2svh, 18px) 0 0;
  color: #333;
  font-size: clamp(14px, 2.2svh, 18px);
  letter-spacing: 0.04em;
}

h2 {
  margin: clamp(4px, 1svh, 8px) 0 0;
  font-size: clamp(27px, 5svh, 48px);
  line-height: 1;
  letter-spacing: 0.02em;
}

.choose {
  margin: clamp(8px, 1.8svh, 14px) 0 clamp(8px, 1.7svh, 14px);
  font-size: clamp(14px, 2.1svh, 18px);
}

.links {
  width: 100%;
  display: grid;
  gap: clamp(7px, 1.5svh, 12px);
}

.links a {
  display: block;
  width: 100%;
  padding: clamp(11px, 2.2svh, 17px) 16px;
  color: #fff;
  background: #111;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(15px, 2.4svh, 20px);
  letter-spacing: 0.04em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  transition: background 0.2s ease, transform 0.2s ease;
}

.links a:hover,
.links a:focus-visible {
  background: #b3202e;
  transform: translateY(-2px);
}

.separator {
  width: min(72%, 360px);
  height: 1px;
  margin: clamp(14px, 2.6svh, 22px) 0 clamp(8px, 1.6svh, 14px);
  background: rgba(0,0,0,0.25);
}

.vol-two {
  margin-top: 0;
}

h3 {
  margin: clamp(4px, 1svh, 8px) 0 0;
  font-size: clamp(22px, 4.2svh, 40px);
  line-height: 1;
  letter-spacing: 0.02em;
}

.coming {
  margin: clamp(6px, 1.4svh, 12px) 0 0;
  color: #b3202e;
  font-weight: 700;
  font-size: clamp(13px, 2svh, 17px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-height: 700px) {
  .card {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .separator {
    margin-top: 10px;
    margin-bottom: 8px;
  }
}

@media (max-width: 380px) {
  .page {
    padding: 8px;
  }
  .card {
    width: 100%;
    min-height: calc(100svh - 16px);
    padding-left: 12px;
    padding-right: 12px;
  }
}
