/* Copied from frontend/src/css/styles.css - generated for public pages */
/* === THEME COLORS & FONTS === */
:root {
  --primary: #ffc95f;         /* Golden Peach */
  --accent: #1a1a1a;          /* Deep Charcoal */
  --secondary: #6e6e8a;       /* Muted Purple/Slate */
  --highlight: #7fffd4;       /* Soft Aqua Accent */
  --bg-gradient: linear-gradient(135deg, #1a1a1a 0%, #6e6e8a 100%);
  --text-main: #fff;
  --text-muted: #e5e5e5;
  --radius: 2.5vw;
  --transition: cubic-bezier(.77,0,.18,1);
  --shadow-glow: 0 0 32px #ffc95f88, 0 2px 24px #0008;
  --shadow-card: 0 8px 32px 0 rgba(31,38,135,0.13);
  --glass-bg: rgba(255,255,255,0.08);
  --glass-border: rgba(255,201,95,0.18);
  --nav-bg: rgba(20, 20, 30, 0.72);
  --nav-bg-scrolled: rgba(20, 20, 30, 0.95);
  --gold: #ffc95f;
  --nav-link: #fff;
  --nav-link-active: #ffc95f;
  --nav-blur: blur(16px);
  --nav-height: 72px;
}
body {
  font-family: 'Space Grotesk', 'Inter', Arial, sans-serif;
  background: var(--bg-gradient);
  color: var(--text-main);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}
/* ...remaining file omitted for brevity... */
