/* Reset + base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #000;       /* black background */
  color: #fff;            /* white text */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Shared container */
.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  text-align: center;
}

/* Narrow container for legal pages */
.container.narrow {
  align-items: stretch;
  justify-content: flex-start;
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* Landing Page Styles */
/* Mockup image */
.mockup {
    height: 80vh;          /* fill 80% of screen height */
    width: auto;           /* keep aspect ratio */
    display: block;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(255,255,255,0.05);
    object-fit: contain;
  }
  

.store-btn img {
  width: 160px;
  height: auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.store-btn img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Footer */
footer {
  text-align: center;
  font-size: 0.85rem;
  color: #aaa;
  padding: 1rem 0 2rem;
}

footer a {
  color: #aaa;
  text-decoration: none;
}

footer a[aria-current="page"] {
  color: #fff;
}

footer a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Legal Page Typography */
.legal {
  line-height: 1.6;
}

.legal h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.legal h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}

.legal h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 0.25rem;
}

.legal p {
  margin: 0.75rem 0;
}

.legal ul {
  margin: 0.5rem 0 0.75rem 1.25rem;
}

.legal li {
  margin: 0.35rem 0;
}

.muted {
  color: #aaa;
  font-size: 0.95rem;
}

.legal a {
  color: #e5e5e5;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal .disclaimer {
  font-size: 0.9rem;
  color: #aaa;
  margin-top: 1.5rem;
  border-top: 1px solid #222;
  padding-top: 1rem;
}

/* Responsive tweaks */
@media (max-width: 480px) {
  .store-btn img {
    width: 140px;
  }
  footer {
    font-size: 0.8rem;
  }
  .legal h1 {
    font-size: 1.75rem;
  }
}
