:root {
  /* Colors (Official Onixx Brand Manual) */
  --primary-color: #146EB3;     /* Medium Slate Blue */
  --primary-light: #3193DE;     /* Bright Sky Blue */
  --primary-dark: #00026E;      /* Deep Navy Blue */
  
  --secondary-color: #FA836B;   /* Coral / Salmon */
  --secondary-light: #A167C3;   /* Purple / Amethyst */
  
  --bg-dark: #02031a;           /* Custom Premium Dark Navy */
  --bg-dark-card: #0d0f36;      /* Deep Navy Card */
  --bg-light: #f4f6fc;          /* Light Blue-ish Gray */
  --bg-white: #ffffff;
  
  --text-dark: #00026E;         /* Deep Navy text for contrast */
  --text-muted: #475569;        /* Slate text for secondary */
  --text-light: #f1f5f9;
  
  --border-color: #e2e8f0;
  --card-shadow: 0 10px 30px -15px rgba(0, 2, 110, 0.08);
  --card-shadow-hover: 0 20px 40px -15px rgba(20, 110, 179, 0.2);
  
  /* Fonts */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout Transitions & Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Container sizes */
  --container-width: 1200px;
}
