:root {
  --ink: #12100e;
  --body: #2a2724;
  --muted: #6b645d;
  --line: #e6e1da;
  --line-soft: #f0ece6;
  --bg: #ffffff;
  --accent: #1f6f4a;
  --radius: 14px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--body);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page {
  max-width: 780px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}

h1 {
  color: var(--ink);
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: -0.022em;
  margin: 0 0 32px;
}

h2 {
  color: var(--ink);
  font-size: clamp(24px, 3.4vw, 31px);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.018em;
  margin: 44px 0 16px;
}

h3 {
  color: var(--ink);
  font-size: clamp(19px, 2.6vw, 22px);
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.012em;
  margin: 32px 0 12px;
}

p { margin: 0 0 20px; }

strong { color: var(--ink); font-weight: 700; }

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 40px 0;
}

ol {
  margin: 0 0 22px;
  padding-left: 22px;
}

ol li {
  margin-bottom: 8px;
  padding-left: 4px;
}

ol li::marker { color: var(--muted); font-weight: 600; }

.banner {
  margin: 0 0 32px;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  line-height: 0;
  background: var(--line-soft);
}

.banner img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.play-btn {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: inline-block;
  padding: 14px 42px;
  border-radius: 999px;
  background: #ffcc2f;
  color: #171310;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.play-btn:hover {
  background: #ffd955;
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
}

.play-btn:active { transform: translateY(0); }

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 0 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  line-height: 1.5;
}

thead th {
  background: #faf8f5;
  color: var(--ink);
  font-weight: 700;
  text-align: left;
  padding: 13px 18px;
  white-space: nowrap;
  border-bottom: 1px solid var(--line);
}

tbody td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}

tbody tr:last-child td { border-bottom: 0; }

tbody tr:nth-child(even) { background: #fcfbf9; }

table.kv td:first-child {
  color: var(--ink);
  font-weight: 600;
  width: 34%;
  white-space: nowrap;
}

.faq-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--line-soft);
}

.faq-item:last-child { border-bottom: 0; }

.faq-item h3 { margin: 0 0 8px; }

.faq-item p { margin: 0; }

@media (max-width: 640px) {
  body { font-size: 17px; }
  .page { padding: 36px 18px 72px; }
  table { font-size: 15px; }
  thead th, tbody td { padding: 11px 14px; }
  table.kv td:first-child { white-space: normal; }
  .play-btn { right: 14px; bottom: 14px; padding: 11px 30px; font-size: 16px; }
}
