/*
Theme Name: 1Lotto Minimal
Theme URI: https://1lotto.co.kr/
Author: 1Lotto
Description: Minimal landing page for 1Lotto app.
Version: 1.0.0
Text Domain: onelotto-minimal
*/

:root {
  color-scheme: light;
  --ink: #101418;
  --muted: #4f5964;
  --line: #edf0f3;
  --gold: #d89b13;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #ffffff;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif;
}

body {
  min-height: 100vh;
}

.onelotto-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.onelotto-hero {
  width: min(760px, 100%);
  text-align: center;
}

.onelotto-mark {
  width: 46px;
  height: 4px;
  margin: 0 auto 28px;
  border-radius: 999px;
  background: var(--gold);
}

.onelotto-title {
  margin: 0;
  font-size: clamp(42px, 8vw, 82px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.onelotto-subtitle {
  margin: 24px 0 0;
  font-size: clamp(20px, 4vw, 32px);
  line-height: 1.32;
  font-weight: 800;
}

.onelotto-copy {
  margin: 22px auto 0;
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(16px, 2.4vw, 20px);
  line-height: 1.7;
  font-weight: 500;
  word-break: keep-all;
}

.onelotto-store-links {
  display: none;
  margin-top: 34px;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 520px) {
  .onelotto-page {
    align-items: flex-start;
    padding-top: 26vh;
  }
}
