:root {
  --bg: #0A0A0F;
  --accent: #DC143C;
  --text: rgba(255, 255, 255, 0.6);
  --text-muted: rgba(255, 255, 255, 0.3);
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: 'Courier New', Courier, monospace;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(to bottom, rgba(220, 20, 60, 0.07) 1px, transparent 1px) 0 15vh / 100% 100% no-repeat,
    linear-gradient(to bottom, rgba(220, 20, 60, 0.07) 1px, transparent 1px) 0 30vh / 100% 100% no-repeat,
    linear-gradient(to bottom, rgba(220, 20, 60, 0.07) 1px, transparent 1px) 0 55vh / 100% 100% no-repeat,
    linear-gradient(to bottom, rgba(220, 20, 60, 0.07) 1px, transparent 1px) 0 70vh / 100% 100% no-repeat,
    linear-gradient(to bottom, rgba(220, 20, 60, 0.07) 1px, transparent 1px) 0 85vh / 100% 100% no-repeat,
    linear-gradient(to right, rgba(220, 20, 60, 0.07) 1px, transparent 1px) 20vw 0 / 100% 100% no-repeat,
    linear-gradient(to right, rgba(220, 20, 60, 0.07) 1px, transparent 1px) 50vw 0 / 100% 100% no-repeat,
    linear-gradient(to right, rgba(220, 20, 60, 0.07) 1px, transparent 1px) 80vw 0 / 100% 100% no-repeat;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
  gap: 24px;
}

.hero .icon {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  margin-bottom: -16px;
}

.hero .title {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: 8px;
  color: var(--accent);
  text-transform: uppercase;
}

.hero .tagline {
  max-width: 400px;
  line-height: 1.6;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.hero-image {
  max-width: 480px;
  width: 100%;
  height: auto;
}

.hero .subtitle {
  font-size: 0.875rem;
  color: var(--text);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.store-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.store-buttons a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.store-buttons img {
  height: 48px;
  width: auto;
}

.store-buttons .play-badge img {
  height: 70px;
  margin: -11px 0;
}

.footer-links {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 2px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent);
}

.legal-page {
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 20px;
  position: relative;
  z-index: 1;
}

.legal-page h1 {
  color: var(--accent);
  font-size: 1.5rem;
  letter-spacing: 6px;
  text-align: center;
  margin-bottom: 40px;
}

.legal-page h1 a {
  color: inherit;
  text-decoration: none;
}

.legal-page h2 {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.legal-page p,
.legal-page li {
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.legal-page ul {
  padding-left: 1.25rem;
}

.legal-page a {
  color: var(--accent);
  text-decoration: none;
}

.legal-footer {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(220, 20, 60, 0.1);
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 2px;
}

.legal-footer a {
  color: var(--text-muted);
  text-decoration: none;
}

.legal-footer a:hover {
  color: var(--accent);
}
