/* Anti-Lag Pro / AC mods micro-site */
:root {
  --bg: #0a0c10;
  --bg-card: #12151c;
  --border: #252a36;
  --text: #e8eaef;
  --muted: #8b92a5;
  --accent: #ff3d2e;
  --accent-dim: #c42e24;
  --glow: rgba(255, 61, 46, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* subtle track texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, var(--glow), transparent 50%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 40px,
      rgba(255, 255, 255, 0.02) 40px,
      rgba(255, 255, 255, 0.02) 41px
    );
  pointer-events: none;
  z-index: 0;
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

.brand {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

h1 {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 5vw, 2.35rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

h1 span {
  color: var(--accent);
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 0 2rem;
  max-width: 36ch;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem 1.35rem;
  margin-bottom: 1.25rem;
}

.card h2 {
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.card p + p {
  margin-top: 0.65rem;
}

.card a:not(.btn) {
  color: var(--accent);
  text-decoration: none;
}

.card a:not(.btn):hover {
  text-decoration: underline;
}

.qa-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.qa-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.qa-item:first-child {
  padding-top: 0;
}

.qa-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.qa-q {
  font-family: "Syne", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  color: var(--text);
}

.qa-a {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.card .qa-actions {
  margin-top: 1rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  box-shadow: 0 4px 24px var(--glow);
}

.btn-primary:hover {
  background: var(--accent-dim);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

.footer-note {
  margin-top: 2.5rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-note a {
  color: var(--accent);
  text-decoration: none;
}

.footer-note a:hover {
  text-decoration: underline;
}

/* Terms page */
.terms-wrap {
  max-width: 800px;
}

.terms-wrap h1 {
  font-size: 1.5rem;
}

.terms-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.terms-wrap section {
  margin-bottom: 1.75rem;
}

.terms-wrap h2 {
  font-family: "Syne", sans-serif;
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
  color: var(--accent);
}

.terms-wrap p,
.terms-wrap li {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 0.5rem;
}

.terms-wrap ul {
  margin: 0.35rem 0 0.75rem 1.1rem;
  padding: 0;
}

.terms-wrap li {
  margin-bottom: 0.35rem;
}

.back {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
}

.back:hover {
  color: var(--accent);
}
