/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0d1117;
  --bg-card:   #161b22;
  --border:    #30363d;
  --accent:    #2ea043;
  --accent-hover: #3fb950;
  --text:      #e6edf3;
  --text-muted:#8b949e;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); text-decoration: underline; }

/* ===== Layout ===== */
.container { max-width: 860px; margin: 0 auto; padding: 0 24px; }

/* ===== Nav ===== */
nav {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky; top: 0;
  background: var(--bg);
  z-index: 100;
}
nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-brand { font-size: 1.3rem; font-weight: 700; color: var(--text); letter-spacing: 1px; }
.nav-links { display: flex; gap: 24px; }
.nav-links a { color: var(--text-muted); font-size: 0.95rem; }
.nav-links a:hover { color: var(--text); text-decoration: none; }

/* ===== Hero ===== */
.hero {
  text-align: center;
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
}
.hero h1 { font-size: 3rem; font-weight: 800; letter-spacing: 2px; margin-bottom: 16px; }
.hero h1 span { color: var(--accent); }
.hero p { font-size: 1.2rem; color: var(--text-muted); max-width: 560px; margin: 0 auto 36px; }

.btn-store {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1rem; font-weight: 600;
  transition: background 0.2s;
}
.btn-store:hover { background: var(--accent-hover); color: #fff; text-decoration: none; }
.btn-store svg { flex-shrink: 0; }

.platform-note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== Features ===== */
.features { padding: 60px 0; border-bottom: 1px solid var(--border); }
.features h2 { font-size: 1.6rem; margin-bottom: 32px; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
}
.card-icon { font-size: 1.8rem; margin-bottom: 12px; }
.card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.card p { font-size: 0.9rem; color: var(--text-muted); }

/* ===== About ===== */
.about { padding: 60px 0; border-bottom: 1px solid var(--border); }
.about h2 { font-size: 1.6rem; margin-bottom: 16px; }
.about p { color: var(--text-muted); margin-bottom: 12px; }

/* ===== Disclaimer ===== */
.disclaimer { padding: 60px 0; border-bottom: 1px solid var(--border); }
.disclaimer h2 { font-size: 1.6rem; margin-bottom: 20px; }
.disclaimer-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--text-muted);
  border-radius: 8px;
  padding: 24px 28px;
}
.disclaimer-box p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; }
.disclaimer-box p:last-child { margin-bottom: 0; }
.disclaimer-box strong { color: var(--text); font-weight: 600; }

/* ===== Footer ===== */
footer {
  padding: 32px 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}
footer a { color: var(--text-muted); }
footer a:hover { color: var(--text); }
footer .footer-links { margin-bottom: 8px; display: flex; justify-content: center; gap: 20px; }

/* ===== Privacy Policy Page ===== */
.policy-content { padding: 60px 0; }
.policy-content h1 { font-size: 2rem; margin-bottom: 8px; }
.policy-content .updated { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 40px; }
.policy-content h2 { font-size: 1.2rem; margin: 32px 0 12px; color: var(--text); }
.policy-content p, .policy-content li { color: var(--text-muted); margin-bottom: 10px; }
.policy-content ul { padding-left: 20px; }
.policy-content a { color: var(--accent); }

/* ===== Responsive ===== */
@media (max-width: 600px) {
  .hero h1 { font-size: 2.2rem; }
  .nav-links { gap: 16px; }
}
