@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap');
/* CSS Reset & Variables */
:root {
    /* Colors */
    /* --primary: #007bff; */
    --primary: #ff5100;
    /* --primary-dark: #0963c7; */
    --primary-dark: #ca4300;
    --secondary: #6c757d;
    /* --success: #28a745; */
    --success: #0e0e0e;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
    --light: #f8f9fa;
    --dark: #343a40;
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f5;
    --bg-tertiary: #e9ecef;
    
    /* Text Colors */
    --text-primary: #212529;
    --text-secondary: #6c757d;
    --text-muted: #adb5bd;
    
    /* Accent Color */
    --accent-color: #181818;
    --accent-color-dark: #000000;

    /* Border & Shadow */
    --border-color: #dee2e6;
    --border-radius: 8px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-xxl: 1.5rem;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --bg-primary: #1a1a1a;
    --bg-secondary: #2d2d2d;
    --bg-tertiary: #404040;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #999999;
    --border-color: #404040;
}
/* Reset */
html{
    overflow-x: hidden;
    overflow-y: auto;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    /* line-height: 1.6; */
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: var(--transition);
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans KR', sans-serif;
    word-break: keep-all;
    /* vertical-align: middle; */
}
input:-webkit-autofill,
    input:-webkit-autofill:hover,
    input:-webkit-autofill:focus,
    input:-webkit-autofill:active {
	 	 transition: background-color 5000s ease-in-out 0s;
		 -webkit-transition: background-color 9999s ease-out;
    	 -webkit-box-shadow: 0 0 0px 1000px white inset !important;
   }
/* Typography */
/* h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-semibold);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
} */

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: var(--font-size-xxl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-base); }

/* p {
    margin-bottom: var(--spacing-xs);
    color: var(--text-secondary);
} */

a {
    /* color: var(--primary); */
    text-decoration: none;
    /* transition: var(--transition-fast); */
}

/* a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
} */

/* Lists */
ul, ol {
    margin-bottom: var(--spacing-md);
    /* padding-left: var(--spacing-xl); */
    list-style-position: inside; /* 마커를 안쪽으로 */
}

ul {
    list-style-type: disc;
}

ol {
    list-style-type: decimal;
}

li {
    margin-bottom: var(--spacing-xs);
    /* line-height: 1.6; */
    /* color: var(--text-secondary); */
}

li::marker {
    /* color: var(--primary); */
    font-weight: var(--font-weight-semibold);
}

/* 중첩 리스트 */
ul ul, ol ol, ul ol, ol ul {
    margin-top: var(--spacing-xs);
    margin-bottom: var(--spacing-xs);
    /* padding-left: var(--spacing-lg); */
}

ul ul {
    list-style-type: circle;
}

ul ul ul {
    list-style-type: square;
}

/* img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
} */

/* Layout */
/* .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
} */

/* =========================== *
/