/* Explain: Theme tokens defining colors and typography for an elegant online novel platform. */
:root {
    --stark-white: #FFFFFF;
    --deep-black: #0F172A;
    
    --primary-color: #4F46E5;
    --primary-hover: #4338CA;
    --secondary-color: #1E1B4B;
    --accent-color: #F59E0B;
    --background-color: #F8FAFC;
    --surface-color: #FFFFFF;
    --text-color: #334155;
    --text-muted: #64748B;
    --border-color: #E2E8F0;
    --warning-color: #DC2626;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}
