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

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #e8e8e8;
  background-color: #0a0c10;
  background-image: linear-gradient(rgba(6,8,14,0.70), rgba(6,8,14,0.82)), url('/images/ToS%20bg.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  min-height: 100vh;
}

.topbar {
  width: 100%;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8,10,16,0.85);
  border-bottom: 1px solid rgba(196,215,255,0.12);
}

.topbar-brand {
  font-size: 15px;
  font-weight: 800;
  color: #e8e8e8;
  text-decoration: none;
}

.topbar-back {
  font-size: 12px;
  font-weight: 700;
  color: #c4d7ff;
  text-decoration: none;
  padding: 6px 14px;
  border: 1px solid rgba(196,215,255,0.22);
  border-radius: 8px;
}

.topbar-back:hover { background: rgba(196,215,255,0.07); }

.wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 20px 72px;
}

.kicker {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: #f6c945;
  margin-bottom: 10px;
}

.page-title {
  font-size: 34px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.page-meta {
  font-size: 12px;
  color: #7a8499;
  margin-bottom: 30px;
}

.card {
  background-color: rgba(12,15,24,0.92);
  border: 1px solid rgba(196,215,255,0.20);
  border-radius: 18px;
  padding: 36px 40px;
  box-shadow:
    0 0 30px rgba(100,150,255,0.18),
    0 0 80px rgba(100,150,255,0.08),
    0 20px 60px rgba(0,0,0,0.65);
}

.card-intro {
  font-size: 13px;
  color: #7a8499;
  line-height: 1.7;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(196,215,255,0.08);
}

.card h2 {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #c4d7ff;
  margin-top: 28px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(196,215,255,0.09);
}

.card h2:first-of-type { margin-top: 0; }
.card p { font-size: 14px; color: #c0c8d8; line-height: 1.75; }
.card ul { margin: 6px 0 0 20px; }
.card ul li { font-size: 14px; color: #c0c8d8; line-height: 1.75; margin-bottom: 7px; }

.footer-links {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(196,215,255,0.09);
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 13px;
  font-weight: 700;
  color: #c4d7ff;
  text-decoration: none;
  opacity: 0.7;
}

.footer-links a:hover { opacity: 1; text-decoration: underline; }

@media (max-width: 680px) {
  .wrap { padding: 28px 14px 56px; }
  .card { padding: 22px 18px; }
  .page-title { font-size: 26px; }
}
