/* 글로벌 설정 및 다크/라이트 모드 변수 */
:root {
    /* 기본 (Light Mode) */
    --bg-color: #ffffff;
    --text-color: #222222;
    --primary-color: #ff4d6d;
    /* 스트로베리 톤 포인트 색상 */
    --border-color: #e0e0e0;
    --card-bg: #f8f9fa;
    --hover-bg: #f1f3f5;
}

[data-theme="dark"] {
    /* 다크 모드 (Dark Mode) */
    --bg-color: #121212;
    --text-color: #e0e0e0;
    --primary-color: #ff758f;
    --border-color: #333333;
    --card-bg: #1e1e1e;
    --hover-bg: #2a2a2a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    transition: background-color 0.3s ease, color 0.3s ease;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}