/* Explain: Theme design tokens with updated colors for hot pink and black. - */
:root {
    /* High-contrast hot pink and black palette */
    --primary-color: #ff1493; /* Hot pink */
    --primary-hover: #d11077; /* Darker hot pink for hover states */
    --secondary-color: #000000; /* Black replacing blush */
    --accent-color: #ff69b4;
    
    --background-color: #ffffff;
    --surface-color: #fafafa;
    --text-color: #2d3748;
    --text-muted: #4a5568;
    --border-color: #e2e8f0;
    
    /* Sophisticated typography pairing */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}