/* css/styles.css */
:root {
  --bg-primary: #07111f;
  --bg-secondary: #0d1d31;
  --bg-card: #112a44;
  --text-primary: #edf8ff;
  --text-secondary: #9bb8cd;
  --accent-primary: #5dd6ff;
  --accent-hover: #9ae8ff;
  --border-color: rgba(142, 213, 255, 0.2);
}

/* Common styles shared between pages */
body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Montserrat', sans-serif;
  min-height: 100vh;
}

/* ... other shared styles ... */
