:root {
  --surface: #ffffff;
  --text: #1a1a1a;
  --muted: #6b7280;
  --border: #e5e7eb;
  --radius: 14px;
  --maxw: 940px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --surface: #0b0f14;
    --text: #e5e7eb;
    --muted: #9ca3af;
    --border: #1f2937;
  }
}

.cookies {
  padding: clamp(32px, 4vw, 64px) 16px;
  height: 100vh;
  background: linear-gradient(180deg, rgba(0,0,0,0.02), transparent);
}

.cookies-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(16px, 2.5vw, 28px);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  line-height: 1.7;
  font-size: clamp(16px, 1.9vw, 18px);
}

.cookies-inner p {
  margin: 0;
  color: var(--text);
}
