/* Explain: Theme tokens for a dark mode interface with yellow accents. - */
:root {
    --primary-color: #FFD700;
    --primary-hover: #FACC15;
    --secondary-color: #FEF08A;
    --accent-color: #FFC107;
    --sand-color: #222222;
    --background-color: #000000;
    --surface-color: #111111;
    --text-color: #F9FAFB;
    --text-muted: #9CA3AF;
    --border-color: #333333;
    --cloud-color: #1A1A1A;
    --ink-color: #FFFFFF;
    --shadow-soft: 0 24px 80px rgba(255, 215, 0, 0.05);
    --shadow-card: 0 18px 44px rgba(0, 0, 0, 0.5);
    --radius-large: 32px;
    --radius-medium: 22px;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Nunito Sans', Arial, sans-serif;
}