/* Global theme tokens for NRG Design */
:root {
  --primary-color: #f2c100;
  --secondary-color: #272727;

  --background-light: #272727;
  --background-dark: #272727;
  --surface-color: #303030;
  --surface-strong: #383838;
  --text-light: #ffffff;
  --text-dark: #999999;
  --text-muted: #777777;
  --border-color: rgba(255, 255, 255, 0.08);

  --navbar-height: 92px;
  --navbar-height-shrink: 74px;
  --radius-pill: 999px;
  --radius-card: 18px;

  --container-max: 1220px;
  --ease-standard: cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: 0.22s var(--ease-standard);
  --transition-medium: 0.4s var(--ease-standard);

  --shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.08);
  --shadow-strong: 0 16px 48px rgba(0, 0, 0, 0.18);

  --font-main: 'Didact Gothic', sans-serif;
  --font-heading: 'Oswald', sans-serif;
}

body.dark-theme {
  --background-light: #666666;
  --background-dark: #555555;
  --surface-color: #717171;
  --surface-strong: #7c7c7c;
  --text-light: #ffffff;
  --text-dark: #f5f5f5;
  --text-muted: #e0e0e0;
  --border-color: rgba(255, 255, 255, 0.18);
  --shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.35);
  --shadow-strong: 0 16px 48px rgba(0, 0, 0, 0.55);
}