/* DinkSpy Legal Pages — Shared Styles */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a14;
  --card: #13131f;
  --card2: #1a1a2e;
  --green: #c7de21;
  --green-dim: rgba(199,222,33,0.1);
  --green-border: rgba(199,222,33,0.3);
  --text: #ffffff;
  --muted: #999;
  --subtle: #444;
  --body: #ccc;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(199,222,33,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199,222,33,0.015) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

.legal-container {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.legal-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 48px;
}

.legal-nav a {
  color: var(--green);
  text-decoration: none;
  font-size: 14px;
}

.legal-nav img { width: 28px; height: 28px; }

.legal-nav span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--text);
}

.legal-badge {
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}

.legal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 6vw, 52px);
  letter-spacing: 3px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.legal-title span { color: var(--green); }

.legal-preamble {
  font-size: 15px;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1.8;
}

.legal-effective {
  font-size: 12px;
  color: #666;
  margin-bottom: 40px;
}

.legal-section {
  margin-bottom: 36px;
}

.legal-section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--green);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(199,222,33,0.15);
}

.legal-section p {
  color: var(--body);
  font-size: 15px;
  margin-bottom: 12px;
  line-height: 1.8;
}

.legal-section ul {
  list-style: none;
  margin-bottom: 12px;
}

.legal-section ul li {
  color: var(--body);
  font-size: 15px;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
}

.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.legal-footer {
  text-align: center;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid #1a1a2e;
  font-size: 12px;
  color: #444;
}

.legal-footer a {
  color: var(--green);
  text-decoration: none;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 16px;
}

.legal-links a {
  color: var(--muted);
  font-size: 12px;
  text-decoration: none;
}

.legal-links a:hover { color: var(--green); }
