/* Shared styles for the Simmr landing pages (index.html, reddit.html). */

:root {
  --action: #DE5F38;       /* primary action */
  --action-700: #A44629;   /* link / text on light */
  --amber: #F09A41;        /* highlight */
  --ink: #2A1710;
  --muted: #6B5048;
  --cream: #FEF7F2;
  --card: #FFFFFF;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 50% -10%, #FBE8E0 0%, rgba(251,232,224,0) 60%),
    linear-gradient(180deg, var(--cream) 0%, #FFFFFF 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

main {
  flex: 1;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 48px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo {
  width: 112px;
  height: 112px;
  border-radius: 28px;
  box-shadow: 0 12px 32px rgba(222, 95, 56, 0.28);
  margin-bottom: 28px;
}

h1 {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.tagline {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 36px;
}

/* Google Play button */
.play-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  padding: 14px 26px 14px 22px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(42, 23, 16, 0.22);
  transition: transform .15s ease, box-shadow .15s ease;
}
.play-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(42, 23, 16, 0.3); }
.play-btn:active { transform: translateY(0); }
.play-btn svg { width: 26px; height: 26px; flex-shrink: 0; }
.play-btn .label { text-align: left; line-height: 1.15; }
.play-btn .label small { display: block; font-size: 0.7rem; opacity: 0.8; font-weight: 500; }
.play-btn .label strong { display: block; font-size: 1.15rem; font-weight: 700; }

/* Feature list */
.features {
  list-style: none;
  margin: 48px 0 8px;
  display: grid;
  gap: 16px;
  width: 100%;
  text-align: left;
}
.features li {
  background: var(--card);
  border: 1px solid #F3DED4;
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 2px 8px rgba(42, 23, 16, 0.04);
}
.features .emoji {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}
.features b { display: block; font-size: 1rem; margin-bottom: 2px; }
.features span { color: var(--muted); font-size: 0.92rem; }

footer {
  text-align: center;
  padding: 24px;
  color: var(--muted);
  font-size: 0.85rem;
}
footer a { color: var(--action-700); text-decoration: none; }
footer a:hover { text-decoration: underline; }

@media (max-width: 420px) {
  h1 { font-size: 2rem; }
  main { padding-top: 36px; }
}
