/* Explain: Theme tokens, including colors, shadows, and fonts, with updated colors. - */
:root {
    --primary-color: #FFFFFF;
    --primary-hover: #F8FAFC;
    --secondary-color: #FFCC00;
    --accent-color: #FFCC00;
    --sand-color: rgba(255, 204, 0, 0.15);
    --background-color: #0A1B3F;
    --surface-color: #112A5E;
    --text-color: #F1F5F9;
    --text-muted: #CBD5E1;
    --border-color: rgba(255, 255, 255, 0.15);
    --cloud-color: #1E3A8A;
    --ink-color: #FFFFFF;
    --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.25);
    --shadow-card: 0 18px 44px rgba(0, 0, 0, 0.2);
    --radius-large: 32px;
    --radius-medium: 22px;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}