/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #D4AF37;
    --dark-gold: #B8941E;
    --light-gold: #F4E4C1;
    --luxury-black: #1a1a1a;
    --luxury-gray: #2d2d2d;
    --text-light: #f5f5f5;
    --text-gray: #666;
    --bg-dark: #0a0a0a;
    --bg-overlay: rgba(10, 10, 10, 0.85);
}

body {
    font-family: 'Noto Serif KR', serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== 인트로 비디오 ===== */
.intro-video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-video-container.hidden {
    display: none;
}

#mainVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.skip-button {
    position: absolute;
    bottom: 50px;
    right: 50px;
    padding: 15px 30px;
    background: rgba(212, 175, 55, 0.9);
    color: var(--luxury-black);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.skip-button:hover {
    background: var(--primary-gold);
    transform: scale(1.1);
}

/* 클릭하여 음악 재생 안내 */
.click-to-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    z-index: 10001;
    transition: opacity 0.5s ease;
    cursor: pointer;
    display: none; /* 기본적으로 숨김 */
}

.click-icon {
    font-size: 60px;
    color: var(--primary-gold);
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.click-to-play-overlay p {
    font-size: 24px;
    color: var(--text-light);
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ===== 위그미 캐릭터 ===== */
.wigumi-character {
    margin: 40px 0;
    text-align: center;
}

.wigumi-avatar {
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.wigumi-head {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    border-radius: 50%;
    position: relative;
    margin: 0 auto 10px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.wigumi-eyes {
    display: flex;
    justify-content: space-around;
    padding: 25px 15px 0;
}

.eye {
    width: 12px;
    height: 12px;
    background: var(--luxury-black);
    border-radius: 50%;
    animation: blink 3s infinite;
}

@keyframes blink {
    0%, 90%, 100% { height: 12px; }
    95% { height: 2px; }
}

.wigumi-smile {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 15px;
    border: 3px solid var(--luxury-black);
    border-top: none;
    border-radius: 0 0 30px 30px;
}

.wigumi-body {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--light-gold), var(--primary-gold));
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.gold-coin {
    font-size: 28px;
    font-weight: bold;
    color: var(--luxury-black);
}

.wigumi-text {
    margin-top: 15px;
    font-size: 16px;
    color: var(--light-gold);
    font-weight: 500;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* 위그미 스토리텔러 */
.wigumi-storyteller {
    margin-top: 60px;
    text-align: center;
}

.wigumi-avatar-large .wigumi-head {
    width: 120px;
    height: 120px;
}

.wigumi-avatar-large .wigumi-eyes {
    padding: 35px 20px 0;
}

.wigumi-avatar-large .eye {
    width: 16px;
    height: 16px;
}

.wigumi-avatar-large .wigumi-smile {
    bottom: 30px;
    width: 40px;
    height: 20px;
}

.wigumi-avatar-large .wigumi-body {
    width: 90px;
    height: 90px;
}

.wigumi-avatar-large .gold-coin {
    font-size: 40px;
}

.speech-bubble {
    display: inline-block;
    margin-top: 30px;
    padding: 20px 40px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--primary-gold);
    border-radius: 30px;
    font-size: 18px;
    color: var(--text-light);
    position: relative;
}

.speech-bubble::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 15px solid transparent;
    border-bottom-color: var(--primary-gold);
}

/* ===== 금가루 캔버스 ===== */
#goldDustCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

/* ===== 음악 컨트롤 ===== */
.music-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    border: none;
    color: var(--luxury-black);
    font-size: 24px;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

.music-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6);
}

.music-toggle.playing {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ===== 헤더 ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(10, 10, 10, 0.98);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
    background: transparent;
    mix-blend-mode: lighten;
    filter: brightness(1.1);
}

.header.scrolled .logo {
    height: 50px;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav a {
    color: var(--text-light);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav a:hover {
    color: var(--primary-gold);
}

.nav a:hover::after {
    width: 100%;
}

/* 블로그 버튼 */
.nav .blog-btn {
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    animation: pulse-gold 2s infinite;
}

.nav .blog-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.nav .blog-btn::after {
    display: none;
}

@keyframes pulse-gold {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(212, 175, 55, 0.6);
    }
}

/* ===== 히어로 섹션 ===== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.8), rgba(26, 26, 26, 0.7)),
        url('https://images.unsplash.com/photo-1515562141207-7a88fb7ce338?w=1920') center/cover;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 10, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.hero-title {
    font-size: 80px;
    font-weight: 700;
    color: var(--primary-gold);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 28px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-catchphrase {
    margin-bottom: 50px;
}

.hero-catchphrase p {
    font-size: 20px;
    color: var(--light-gold);
    margin: 10px 0;
}

.catchphrase-sub {
    font-size: 16px;
    color: var(--text-gray);
    font-style: italic;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    color: var(--luxury-black);
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-gold);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--primary-gold);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 30px; }
}

/* ===== Section Styles ===== */
section {
    padding: 120px 0;
    position: relative;
}

.section-title {
    font-size: 48px;
    text-align: center;
    color: var(--primary-gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.title-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 60px;
}

/* ===== 갤러리 섹션 ===== */
.gallery-section {
    background: var(--luxury-black);
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
}

.filter-btn {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    font-size: 16px;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-gold);
    color: var(--luxury-black);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.5s ease;
}

.gallery-item.hidden {
    display: none;
}

.item-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-item:hover .item-image img {
    transform: scale(1.15);
}

.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95), transparent);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.gallery-item:hover .item-overlay {
    transform: translateY(0);
}

.item-overlay h3 {
    font-size: 24px;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.item-overlay p {
    font-size: 14px;
    color: var(--text-light);
}

/* 갤러리 특수 효과 */
.gallery-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(212, 175, 55, 0.1) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    transition: all 0.8s ease;
    opacity: 0;
}

.gallery-item:hover::before {
    opacity: 1;
    animation: shine 1.5s ease-in-out;
}

@keyframes shine {
    0% { left: -50%; }
    100% { left: 150%; }
}

/* 페이지네이션 */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.page-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-btn:hover,
.page-btn.active {
    background: var(--primary-gold);
    color: var(--luxury-black);
    transform: scale(1.1);
}

/* ===== GOLD CINEMA 섹션 ===== */
.gold-cinema-section {
    background: var(--luxury-gray);
    padding: 120px 0;
}

.cinema-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.cinema-item {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 20px;
    transition: all 0.3s ease;
}

.cinema-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.3);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 비율 */
    overflow: hidden;
    border-radius: 15px;
    background: #000;
    margin-bottom: 20px;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cinema-item h3 {
    font-size: 24px;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.cinema-item p {
    font-size: 16px;
    color: var(--text-gray);
}

/* ===== 금시세 섹션 ===== */
.gold-price-section {
    background: linear-gradient(135deg, var(--luxury-gray), var(--luxury-black));
}

/* 네이버 금시세 버튼 */
.gold-price-button-container {
    max-width: 900px;
    margin: 0 auto 50px;
}

.naver-gold-price-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 50px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border: 3px solid var(--primary-gold);
    border-radius: 25px;
    transition: all 0.4s ease;
    cursor: pointer;
    text-decoration: none;
}

.naver-gold-price-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
}

.btn-icon {
    font-size: 64px;
    color: var(--primary-gold);
    margin-right: 30px;
    animation: pulse 2s infinite;
}

.btn-content {
    flex: 1;
    text-align: left;
}

.btn-content h3 {
    font-size: 36px;
    color: var(--primary-gold);
    margin-bottom: 10px;
    font-weight: 700;
}

.btn-content p {
    font-size: 18px;
    color: var(--text-light);
}

.btn-arrow {
    font-size: 48px;
    color: var(--primary-gold);
    margin-left: 30px;
    transition: transform 0.3s ease;
}

.naver-gold-price-btn:hover .btn-arrow {
    transform: translateX(10px);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* 가격 카드 스타일 제거됨 - 네이버 링크로 대체 */

.price-notice {
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid var(--primary-gold);
    padding: 20px 30px;
    border-radius: 10px;
}

.price-notice p {
    font-size: 14px;
    color: var(--text-light);
    margin: 8px 0;
}

.price-notice i {
    color: var(--primary-gold);
    margin-right: 10px;
}

/* ===== 금 이야기 섹션 ===== */
.gold-story-section {
    background: var(--luxury-black);
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.story-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.02));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.2);
}

.story-icon {
    font-size: 48px;
    color: var(--primary-gold);
    margin-bottom: 20px;
    text-align: center;
}

.story-card h3 {
    font-size: 28px;
    color: var(--primary-gold);
    margin-bottom: 20px;
    text-align: center;
}

.story-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
    text-align: justify;
}

/* 가격 히스토리 섹션 제거됨 */

/* ===== 매장 소개 섹션 ===== */
.about-section {
    background: var(--luxury-black);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.info-card {
    background: rgba(212, 175, 55, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--primary-gold);
    transform: translateX(10px);
}

.info-card h3 {
    font-size: 20px;
    color: var(--primary-gold);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.features-title {
    font-size: 32px;
    color: var(--primary-gold);
    margin-bottom: 30px;
    text-align: center;
}

.feature-item {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(212, 175, 55, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.feature-icon {
    font-size: 48px;
    color: var(--primary-gold);
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 24px;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.feature-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

/* 지도 */
.map-container {
    margin-top: 60px;
}

.map-container h3 {
    font-size: 32px;
    color: var(--primary-gold);
    text-align: center;
    margin-bottom: 30px;
}

.map-wrapper {
    border: 3px solid var(--primary-gold);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(212, 175, 55, 0.2);
}

/* ===== 푸터 ===== */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 20px;
}

.footer-logo p {
    font-size: 16px;
    color: var(--text-gray);
}

.footer-info h4 {
    font-size: 22px;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.footer-info p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-info i {
    color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 8px 0;
}

/* ===== 애니메이션 ===== */
[data-aos] {
    opacity: 0;
    transition: all 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* ===== 반응형 디자인 ===== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 60px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 36px;
        flex-direction: column;
    }
    
    .title-line {
        width: 60px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .price-board {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    section {
        padding: 80px 0;
    }
    
    .click-icon {
        font-size: 40px;
        margin-bottom: 15px;
    }
    
    .click-to-play-overlay p {
        font-size: 16px;
        padding: 0 20px;
        text-align: center;
    }
    
    .skip-button {
        bottom: 30px;
        right: 30px;
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* ===== 공지사항 섹션 ===== */
.notices-section {
    background: var(--bg-dark);
    padding: 120px 0;
}

.notice-controls {
    text-align: right;
    margin-bottom: 30px;
}

.write-notice-btn {
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    color: var(--luxury-black);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

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

.notices-list {
    background: var(--luxury-gray);
    border-radius: 10px;
    overflow: hidden;
}

.notice-item {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.notice-item:hover {
    background: rgba(212, 175, 55, 0.05);
}

.notice-item:last-child {
    border-bottom: none;
}

.notice-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.notice-item-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-light);
}

.notice-item-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--text-gray);
}

.notice-item-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.notice-empty {
    padding: 60px;
    text-align: center;
    color: var(--text-gray);
}

/* 공지사항 모달 */
.notice-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
}

.notice-modal.active {
    display: flex;
}

.modal-content {
    background: var(--luxury-gray);
    width: 90%;
    max-width: 800px;
    border-radius: 15px;
    overflow: hidden;
    margin: 20px;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.modal-header {
    background: linear-gradient(135deg, var(--luxury-black), var(--luxury-gray));
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--primary-gold);
}

.modal-header h3 {
    color: var(--text-light);
    font-size: 24px;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-gold);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-light);
    font-weight: 500;
}

.form-group input[type="text"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: var(--luxury-black);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.form-group input[type="file"] {
    width: 100%;
    padding: 10px;
    background: var(--luxury-black);
    border: 1px dashed rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: var(--text-light);
    cursor: pointer;
}

.file-info {
    font-size: 12px;
    color: var(--text-gray);
    margin-top: 5px;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

.btn-submit,
.btn-cancel,
.btn-edit,
.btn-delete {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    color: var(--luxury-black);
}

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

.btn-cancel {
    background: var(--text-gray);
    color: var(--text-light);
}

.btn-cancel:hover {
    background: #888;
}

.btn-edit {
    background: #4CAF50;
    color: white;
}

.btn-edit:hover {
    background: #45a049;
}

.btn-delete {
    background: #f44336;
    color: white;
}

.btn-delete:hover {
    background: #da190b;
}

.notice-detail-meta {
    display: flex;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 20px;
    color: var(--text-gray);
    font-size: 14px;
}

.notice-detail-content {
    color: var(--text-light);
    line-height: 1.8;
    white-space: pre-wrap;
    min-height: 200px;
}

.notice-detail-file {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.notice-detail-file a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--luxury-black);
    border-radius: 8px;
    color: var(--primary-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.notice-detail-file a:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}