:root {
  /* Brand */
  --color-gold: #d4af37;
  --color-dark-gray: #4a4a4a;
  --color-silver: #c0c0c0;

  /* UI */
  --color-bg: #0f0f10;
  --color-surface: #171717;
  --color-surface-light: #202020;

  --color-text: #f5f5f5;
  --color-text-muted: #a1a1aa;

  --color-border: rgba(255, 255, 255, 0.08);

  /* Typography */
  --font-primary: "Inter", "Montserrat", "Helvetica", sans-serif;

  /* Layout */
  --container-width: 1200px;
  --container-padding: 24px;

  /* Radius */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  /* Effects */
  --shadow-gold: 0 20px 80px rgba(212, 175, 55, 0.18);

  /* Transition */
  --transition-base: 180ms ease;
}