/* Bingo Theme Design Tokens */
:root {
    /* Colors - Classic Bingo Ball Colors */
    --color-hero-start: #d41459;
    /* Bingo Red/Pink Gradient Start */
    --color-hero-end: #911042;
    /* Deep Bingo Red Gradient End */

    --color-primary: #fbbf24;
    /* Bingo Yellow Button Start */
    --color-primary-dark: #f59e0b;
    /* Golden Yellow Button End */

    --color-body-bg: #fef3c7;
    /* Light Cream/Yellow Background */
    --color-text: #1a1a2e;
    /* Dark Navy Text */
    --color-cyan: #3b82f6;
    /* Bingo Blue Detail Color */
    --color-text-light: #64748b;
    /* Muted Text */
    --color-white: #ffffff;

    --color-dark-bg: #7c2d12;
    /* Deep Brown/Red Footer Background */
    --color-border: #fed7aa;

    --color-warning: #f97316;
    /* Orange for stars/attention */
    --color-danger: #dc2626;
    /* Red for wishlist/errors */
    --color-danger-bg: #fff0f0;

    /* Bingo Ball Colors */
    --bingo-red: #ef4444;
    --bingo-blue: #3b82f6;
    --bingo-green: #22c55e;
    --bingo-yellow: #fbbf24;
    --bingo-purple: #a855f7;

    /* Typography */
    --font-main: 'Poppins', sans-serif;

    /* Spacing & Layout */
    --container-width: 1200px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;

    /* Transitions */
    --transition-fast: 0.2s ease;
}