/* ============================================================
   CHOOBIN - Liquid Glass Theme 2026
   Black & White Monochrome Design System
   Main theme: BLACK background | Secondary (buttons): WHITE
   ============================================================ */

:root {
    /* Core Liquid Glass Palette */
    --glass-bg: rgba(20, 20, 20, 0.8);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    --glass-blur: blur(16px);

    /* Primary Colors (White = buttons/secondary) */
    --primary: #ffffff;
    --primary-dark: #cccccc;
    --primary-light: #dddddd;
    --primary-glow: rgba(255, 255, 255, 0.15);

    /* Accent Colors */
    --accent: #e0e0e0;
    --accent-dark: #ffffff;
    --warning: #fdcb6e;
    --warning-dark: #e17055;
    --danger: #e74c3c;
    --success: #27ae60;
    --info: #95a5a6;

    /* Admin Gold */
    --admin-gold: #d4af37;
    --admin-gold-light: #f0d060;
    --admin-glow: rgba(212, 175, 55, 0.25);

    /* Text */
    --text-primary: #f2f2f2;
    --text-secondary: #b0b0b0;
    --text-muted: #707070;
    --text-inverse: #000000;

    /* Backgrounds (Black) */
    --bg-primary: #000000;
    --bg-secondary: #111111;
    --bg-tertiary: #1f1f1f;
    --bg-chat: #0a0a0a;

    /* Chat Bubbles */
    --bubble-sent: #ffffff;
    --bubble-received: #1c1c1c;
    --bubble-sent-text: #000000;
    --bubble-received-text: #f2f2f2;

    /* Sizes */
    --sidebar-width: 380px;
    --nav-height: 68px;
    --header-height: 56px;
    --story-height: 90px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s ease;
    --transition-slow: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Energy Saving */
[data-energy="true"] {
    --glass-blur: blur(4px);
    --glass-shadow: none;
    transition: all 0.3s ease;
}
