:root {
  /* Colors */
  --bg-primary: #0a1628;
  --bg-secondary: #121f36;
  --bg-card: #1a2a44;
  --bg-card-hover: #223352;
  --teal: #00d4aa;
  --teal-dim: #00a888;
  --gold: #ffc857;
  --gold-dim: #d4a83a;
  --red: #ff6b6b;
  --red-dim: #cc5555;
  --green: #4ecdc4;
  --green-bright: #00ff88;
  --text-primary: #f0f0f0;
  --text-secondary: #9aadbe;
  --text-muted: #7a8ea0;
  --white: #ffffff;
  --black: #000000;
  --hongbao-red: #de2910;
  --hongbao-gold: #ffd700;

  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;

  /* Layout */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --tap-target: 48px;
  --max-width: 560px;
  --header-height: 56px;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-glow-teal: 0 0 20px rgba(0, 212, 170, 0.3);
  --shadow-glow-gold: 0 0 20px rgba(255, 200, 87, 0.3);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;
}
