/* --- CSS 변수 및 초기화 --- */
:root {
    --bg-color: #000000; /* 깊은 블랙 */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --accent-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%); /* 세련된 퍼플 그라데이션 */
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1); /* 부드러운 애니메이션 */
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-family);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* 스크롤 방지 */
    -webkit-font-smoothing: antialiased; /* 폰트 매끄럽게 */
}

/* --- 메인 컨텐츠 영역 --- */
.container {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInReveal 1.2s forwards; /* 등장 애니메이션 */
    animation-delay: 0.2s;
}

/* 고급스러운 그라데이션 텍스트 */
.hero-title {
    font-size: 4rem; /* 매우 큰 서체 */
    font-weight: 800;
    letter-spacing: -0.05em; /* 자간을 좁혀 세련미 강조 */
    background: var(--accent-gradient);
    -webkit-background-clip: text; /* 텍스트에만 그라데이션 적용 */
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 3rem;
}

/* 고급스러운 버튼 디자인 (유리 효과) */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px; /* 완전 둥근 버튼 */
    background: rgba(255, 255, 255, 0.05); /* 반투명 배경 */
    backdrop-filter: blur(10px); /* 유리 블러 효과 */
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* 버튼 호버 효과 */
.cta-button:hover {
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px); /* 위로 살짝 이동 */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* --- 등장 애니메이션 정의 --- */
@keyframes fadeInReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- 반응형 디자인 (모바일) --- */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
}
