@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&family=Inter:wght@400;500;600;700&display=swap");

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

:root {
  color-scheme: light;
  font-family: "Inter", "SF Pro Display", "Segoe UI", system-ui, sans-serif;
  line-height: 1.5;
  background: #0064FA;
  color: #0b1020;
}

body {
  font-family: "Inter", "SF Pro Display", "Segoe UI", system-ui, sans-serif;
  background: #0064FA;
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "DM Serif Text", Georgia, "Times New Roman", serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.brand img {
  height: 40px;
}

.landing {
  color: #f9fbff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #0064FA;
  position: relative;
  overflow: hidden;
}

.landing::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 100, 250, 0.85), rgba(0, 100, 250, 0.85)),
    url("./assets/background.png") top center / cover no-repeat;
  transform: scaleY(-1);
  z-index: 0;
}

.landing > * {
  position: relative;
  z-index: 1;
}

.landing-header {
  padding: 32px 6vw 12px;
}

.landing-header img {
  height: 46px;
}

.landing-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 12px 6vw 24px;
}

.hero-visual img {
  width: min(520px, 85vw);
  filter: drop-shadow(0 20px 60px rgba(4, 18, 53, 0.5));
}

h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1.1;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.cta-button {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  background: #0b0f17;
  color: #f9fbff;
  padding: 10px 20px;
  border-radius: 10px;
  min-width: 170px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.cta-label {
  font-size: 0.7rem;
  opacity: 0.75;
  letter-spacing: 0.02em;
}

.cta-store {
  font-size: 0.95rem;
  font-weight: 600;
}

.landing-footer {
  width: 100%;
  padding: 18px 6vw 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.footer-divider {
  opacity: 0.7;
}

.copyright {
  opacity: 0.85;
}

.legal-page {
  background: #0064FA;
  color: #f9fbff;
  min-height: 100vh;
  padding: 32px 6vw 64px;
  position: relative;
  overflow-x: hidden;
}

.legal-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 100, 250, 0.85), rgba(0, 100, 250, 0.85)),
    url("./assets/background.png") top center / cover no-repeat;
  transform: scaleY(-1);
  z-index: 0;
}

.legal-page > * {
  position: relative;
  z-index: 1;
}

.legal-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  margin-bottom: 24px;
}

.legal-brand img {
  height: 40px;
}

.legal-icon {
  width: 128px;
  height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.legal-icon img {
  width: 190%;
  height: 190%;
  max-width: none;
}

.legal-page h1 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.legal-updated {
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0.9;
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 0.98rem;
  color: rgba(249, 251, 255, 0.9);
  line-height: 1.7;
}

.legal-content h2 {
  margin-top: 12px;
  font-size: 1.1rem;
  color: #ffffff;
}

.legal-content ul {
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

@media (max-width: 720px) {
  .landing-header img {
    height: 40px;
  }
}
