/* CSS 리셋 - 모든 브라우저에서 일관된 스타일을 위해 */

/* CSS 변수 정의 */
:root {
    --wealth-gold: #D4AF37;      /* 메인 골드 - 부자운 */
    --bright-gold: #FFD700;      /* 강조 골드 - 재물운 */
    --dark-blue: #1E3A8A;        /* 안정 블루 - 신뢰감 */
    --navy-bg: #0F172A;          /* 배경 네이비 - 깊이감 */
    --white-text: #F8FAFC;       /* 텍스트 화이트 - 깔끔함 */
    --gray-text: #94A3B8;        /* 보조 텍스트 */
    --light-gray: #E2E8F0;       /* 연한 그레이 */
    --border-color: #334155;     /* 테두리 색상 */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: #333;
}

body {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #f8f9fa;
}

/* 링크 스타일 리셋 */
a {
    text-decoration: none;
    color: inherit;
}

/* 리스트 스타일 리셋 */
ul, ol {
    list-style: none;
}

/* 이미지 스타일 */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 버튼 스타일 리셋 */
button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* 입력 필드 스타일 리셋 */
input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* 테이블 스타일 리셋 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* 포커스 스타일 */
:focus {
    outline: 2px solid var(--wealth-gold);
    outline-offset: 2px;
}

/* 스크롤바 스타일 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* 기본 컨테이너 스타일 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* 기본 버튼 스타일 */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--wealth-gold) 0%, var(--bright-gold) 100%);
    color: var(--navy-bg);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    font-weight: bold;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--dark-blue);
    border: 2px solid var(--dark-blue);
}

.btn-secondary:hover {
    background: var(--dark-blue);
    color: var(--white-text);
    transform: translateY(-2px);
} 