* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #f8f7ff;
  background: #0b0a12;
  min-height: 100vh;
}

.background {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("images/background_1.jpg");
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at top, rgba(26, 18, 54, 0.45) 0%, rgba(12, 10, 22, 0.6) 55%, rgba(8, 7, 14, 0.7) 100%);
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 56px 8vw 32px;
  gap: 48px;
}

.hero {
  width: 100%;
  max-width: 900px;
  text-align: center;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.brand-mark {
  font-family: "Oleo Script", "Segoe Script", cursive;
  font-size: clamp(56px, 10vw, 96px);
  font-weight: 700;
  letter-spacing: 0;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.brand-tagline {
  font-family: "Oleo Script", "Segoe Script", cursive;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
}

.hero-copy {
  margin-top: 24px;
  font-size: clamp(16px, 2.1vw, 20px);
  line-height: 1.6;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  color: #d8d5e8;
}

.cta {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-label {
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #f5f3ff;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  font-weight: 600;
  color: #f8f7ff;
}

.store-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.details {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 960px;
}

.card {
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 18px;
}

.card p {
  margin: 0;
  color: #d6d4e5;
  line-height: 1.5;
}

.footer {
  width: 100%;
  color: #a8a4be;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 720px) {
  .page {
    padding: 40px 6vw 28px;
  }

  .store-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

