/* Light Theme Disabled - Dark Theme Only Application */

/* This file is intentionally left minimal as the application now uses only the dark golden theme */

[data-theme="light"] {
  /* Redirect all light theme to dark theme */
  --color-bg: #000000;
  --color-surface: #0a0a0a;
  --color-surface-elevated: #141414;
  --color-text: #ffffff;
  --color-text-muted: #a8a8a8;
  --color-accent: #d4af37;
  --color-accent-hover: #f4d03f;
  --color-gold: #d4af37;
  --color-gold-light: #f4d03f;
  --color-gold-dark: #b8941f;
  --color-gold-bright: #ffd700;
  --color-success: #34c759;
  --color-error: #ff3b30;
}

/* Force dark theme for all light theme selectors */
[data-theme="light"] body {
  background: #000000;
  color: #ffffff;
}

[data-theme="light"] body::before {
  background: radial-gradient(ellipse at top, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
}

/* All light theme elements use dark theme styling */
[data-theme="light"] * {
  /* Inherit dark theme */
}
