:root {
  /* Dark Casino Theme — matched to Figma */
  --accent-gold: #d4af37;
  --accent-gold-light: #ffd700;
  --accent-neon-green: #00ff88;
  --accent-red: #ff4444;
  --color-aws-orange: #FF9900;

  --color-bg-primary: #1a1a1a;
  --color-bg-secondary: #2d2d2d;
  --color-bg-darkest: #111111;
  --glass-overlay: rgba(255,255,255,0.1);
  --glass-border: rgba(255,255,255,0.1);

  --color-text-white: #ffffff;
  --color-text-primary: #ffffff;
  --color-text-secondary: rgba(255,255,255,0.7);
  --color-text-muted: rgba(255,255,255,0.5);
  --color-text-dim: rgba(255,255,255,0.3);

  --color-border: rgba(255,255,255,0.1);
  --color-border-hover: rgba(255,255,255,0.2);

  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 72px;
  --space-xxl: 120px;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 4px 16px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 20px rgba(212,175,55,0.3);
  --shadow-glow: 0 0 30px rgba(212,175,55,0.15);

  --transition-fast: all 150ms ease-out;
  --transition-normal: all 300ms ease;
  --transition-smooth: all 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-primary);
  background: var(--color-bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

a { color: var(--accent-gold); text-decoration: none; transition: var(--transition-fast); }
a:hover { color: var(--accent-gold-light); }

img { max-width: 100%; height: auto; }

h1, h2, h3, h4, h5 { font-family: var(--font-display); color: var(--color-text-white); line-height: 1.1; }
h1 { font-size: clamp(48px, 7.5vw, 80px); font-weight: 900; letter-spacing: -0.02em; }
h2 { font-size: clamp(32px, 3.75vw, 48px); font-weight: 700; letter-spacing: -0.01em; line-height: 1.2; }
h3 { font-size: clamp(24px, 2.5vw, 32px); font-weight: 600; line-height: 1.3; }
h4 { font-size: 24px; font-weight: 500; line-height: 1.4; }
h5 { font-size: 18px; font-weight: 600; }
p { font-size: 18px; line-height: 1.6; }

@media (max-width: 768px) {
  .container { padding: 0 20px; }
}
