/* ========================================
   Premium Base - CSS 변수 및 리셋
   ======================================== */

:root {
    --sidebar-width: 240px;
    --header-height: 64px;
    --primary: #1a1a2e;
    --primary-light: #16213e;
    --accent: #e94560;
    --accent-glow: rgba(233, 69, 96, 0.3);
    --gold: #d4af37;
    --gold-light: #f4e4ba;
    --bg-main: #f0f2f5;
    --bg-card: #ffffff;
    --bg-header: rgba(255,255,255,0.95);
    --text-primary: #1a1a2e;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --border: #e5e7eb;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
}

[data-theme="dark"] {
    --bg-main: #0d0d14;
    --bg-card: #1a1a2e;
    --bg-header: rgba(26,26,46,0.95);
    --text-primary: #f0f0f5;
    --text-secondary: #a0a0b0;
    --text-light: #6b6b80;
    --border: #2a2a40;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    background: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
    transition: background 0.3s, color 0.3s;
}
