* {
  box-sizing: border-box;
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #000000 0%, #1a1a1a 35%, #3a3a3a 70%, #5a5a5a 100%);
  color: #f5f5f5;
}

.page {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 4rem);
}

.hero {
  width: min(100%, 1100px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 4vw, 3rem);
  text-align: center;
}

.logo {
  width: min(92vw, 900px);
  height: auto;
  display: block;
  object-fit: contain;
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 9vw, 7rem);
  line-height: 0.95;
  letter-spacing: clamp(0.08em, 1vw, 0.18em);
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.8),
    0 0 12px rgba(212, 175, 55, 0.35);
}

@media (max-width: 600px) {
  .page {
    padding: 1.25rem;
  }

  .hero {
    gap: 1.5rem;
  }

  .logo {
    width: 96vw;
  }

  h1 {
    font-size: clamp(2.2rem, 14vw, 4rem);
    letter-spacing: 0.08em;
  }
}

@media (orientation: landscape) and (max-height: 520px) {
  .hero {
    gap: 1rem;
  }

  .logo {
    max-height: 58vh;
    width: auto;
    max-width: 90vw;
  }

  h1 {
    font-size: clamp(2rem, 8vh, 4rem);
  }
}
