/* 전역 스타일 - 칭다오 맥주 테마 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    background: 
        radial-gradient(circle at 20% 80%, rgba(218, 165, 32, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(34, 139, 34, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #228b22 0%, #006400 50%, #228b22 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(218, 165, 32, 0.03) 2px,
            rgba(218, 165, 32, 0.03) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(218, 165, 32, 0.03) 2px,
            rgba(218, 165, 32, 0.03) 4px
        );
    pointer-events: none;
    z-index: 1;
}

.container {
    max-width: 600px;
    width: 100%;
    background: #fffef7;
    border-radius: 0;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 2px #daa520,
        0 0 0 10px #228b22,
        0 0 0 12px #daa520;
    overflow: hidden;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

/* 헤더 - 맥주병 그라데이션 */
.header {
    background: 
        linear-gradient(135deg, rgba(34, 139, 34, 0.95) 0%, rgba(0, 100, 0, 0.95) 100%),
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="pattern" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="2" fill="%23daa520" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23pattern)"/></svg>');
    color: white;
    text-align: center;
    padding: 60px 30px 80px;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 50%, rgba(218, 165, 32, 0.3) 0%, transparent 30%),
        radial-gradient(circle at 70% 50%, rgba(218, 165, 32, 0.3) 0%, transparent 30%);
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* 맥주병 모양 랜턴 */
.lantern {
    position: absolute;
    top: 20px;
    width: 50px;
    height: 90px;
    background: 
        linear-gradient(135deg, rgba(139, 69, 19, 0.9) 0%, rgba(101, 67, 33, 0.9) 100%);
    border-radius: 5px;
    box-shadow: 
        0 0 0 3px #daa520,
        0 0 20px rgba(218, 165, 32, 0.6),
        inset 0 10px 20px rgba(255, 255, 255, 0.2);
    animation: swingLantern 3s ease-in-out infinite;
}

.lantern::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 15px;
    background: linear-gradient(135deg, #8b4513, #654321);
    border-radius: 5px 5px 0 0;
    box-shadow: 0 -2px 5px rgba(218, 165, 32, 0.5);
}

.lantern::after {
    content: '🍺';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.lantern-left {
    left: 30px;
}

.lantern-right {
    right: 30px;
    animation-delay: 1.5s;
}

.special-badge {
    display: inline-block;
    background: 
        linear-gradient(135deg, #daa520 0%, #f4e99b 50%, #daa520 100%);
    color: #006400;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 25px;
    border-radius: 25px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    box-shadow: 
        0 4px 15px rgba(218, 165, 32, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.6),
        inset 0 -2px 5px rgba(218, 165, 32, 0.5);
    border: 3px solid #daa520;
    position: relative;
    z-index: 1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 4px 15px rgba(218, 165, 32, 0.5),
            inset 0 2px 0 rgba(255, 255, 255, 0.6);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 6px 20px rgba(218, 165, 32, 0.7),
            inset 0 2px 0 rgba(255, 255, 255, 0.8);
    }
}

.header-decoration {
    font-family: 'Noto Serif SC', serif;
    font-size: 18px;
    letter-spacing: 10px;
    margin-bottom: 15px;
    opacity: 0.95;
    color: #fff5e1;
    position: relative;
    z-index: 1;
}

.main-title {
    font-family: 'Noto Serif SC', serif;
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: 16px;
    text-shadow: 
        4px 4px 8px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(218, 165, 32, 0.5);
    position: relative;
    z-index: 1;
}

.subtitle {
    font-size: 19px;
    font-weight: 400;
    opacity: 0.95;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
}

.wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 60px;
    background: #fffef7;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

/* 메인 콘텐츠 */
.main-content {
    padding: 40px 30px;
    position: relative;
}

/* 참여자 현황 섹션 */
.participants-section {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.participants-badge {
    display: inline-block;
    position: relative;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.2), rgba(34, 139, 34, 0.2));
    border: 3px solid #daa520;
    border-radius: 20px;
    padding: 30px 40px;
    box-shadow: 
        0 10px 40px rgba(218, 165, 32, 0.4),
        inset 0 0 30px rgba(218, 165, 32, 0.1);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 10px 40px rgba(218, 165, 32, 0.4),
            inset 0 0 30px rgba(218, 165, 32, 0.1),
            0 0 0 0 rgba(218, 165, 32, 0);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 
            0 15px 50px rgba(218, 165, 32, 0.6),
            inset 0 0 40px rgba(218, 165, 32, 0.2),
            0 0 0 10px rgba(218, 165, 32, 0.3),
            0 0 0 20px rgba(218, 165, 32, 0);
    }
}

.badge-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #daa520, #228b22, #daa520, #228b22);
    background-size: 400% 400%;
    border-radius: 20px;
    opacity: 0.6;
    z-index: -1;
    animation: gradientRotate 3s ease infinite;
    filter: blur(8px);
}

@keyframes gradientRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.participants-icon {
    font-size: 48px;
    margin-bottom: 15px;
    animation: iconBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 5px 10px rgba(218, 165, 32, 0.5));
}

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

.participants-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.participants-label {
    font-family: 'Georgia', serif;
    font-size: 14px;
    font-style: italic;
    color: #666;
    letter-spacing: 1px;
    margin: 0;
}

.participants-count {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin: 10px 0;
}

.count-number {
    font-family: 'Georgia', serif;
    font-size: 56px;
    font-weight: 900;
    color: #228b22;
    text-shadow: 
        3px 3px 6px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(34, 139, 34, 0.5);
    line-height: 1;
    animation: numberGlow 2s ease-in-out infinite;
}

@keyframes numberGlow {
    0%, 100% {
        text-shadow: 
            3px 3px 6px rgba(0, 0, 0, 0.3),
            0 0 15px rgba(34, 139, 34, 0.4);
    }
    50% {
        text-shadow: 
            3px 3px 6px rgba(0, 0, 0, 0.3),
            0 0 30px rgba(34, 139, 34, 0.8),
            0 0 40px rgba(218, 165, 32, 0.5);
    }
}

.count-text {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #006400;
    letter-spacing: 1px;
}

.participants-avatars {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.avatar {
    font-size: 32px;
    animation: avatarPop 1.5s ease-in-out infinite;
    filter: drop-shadow(0 3px 8px rgba(218, 165, 32, 0.4));
}

.avatar:nth-child(1) {
    animation-delay: 0s;
}

.avatar:nth-child(2) {
    animation-delay: 0.3s;
}

.avatar:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes avatarPop {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
    }
    50% { 
        transform: scale(1.2) rotate(10deg);
    }
}

.badge-sparkle {
    position: absolute;
    color: #daa520;
    font-size: 20px;
    animation: sparkleTwinkle 2s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(218, 165, 32, 0.8);
}

.sparkle-1 {
    top: 10px;
    left: 10px;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 10px;
    right: 10px;
    animation-delay: 0.7s;
}

.sparkle-3 {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.4s;
}

@keyframes sparkleTwinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.5) rotate(180deg);
    }
}

/* 중국 스탬프 스타일 - 맥주색 */
.chinese-stamp {
    display: inline-block;
    font-family: 'Noto Serif SC', serif;
    font-size: 20px;
    font-weight: 900;
    color: #228b22;
    border: 4px solid #228b22;
    padding: 12px 24px;
    border-radius: 8px;
    letter-spacing: 10px;
    margin-bottom: 25px;
    background: white;
    box-shadow: 
        4px 4px 0 rgba(34, 139, 34, 0.2),
        inset 0 0 10px rgba(218, 165, 32, 0.1);
    transform: rotate(-2deg);
}

.stamp-small {
    font-size: 18px;
    padding: 10px 20px;
    letter-spacing: 8px;
}

/* 도시 섹션 */
.city-section {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 4px double #daa520;
    position: relative;
}

.city-section::after {
    content: '🍺';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #fffef7;
    font-size: 28px;
    padding: 0 10px;
}

.city-name {
    font-family: 'Noto Serif SC', serif;
    font-size: 96px;
    font-weight: 900;
    color: #228b22;
    margin-bottom: 15px;
    letter-spacing: 20px;
    text-shadow: 
        5px 5px 0 rgba(218, 165, 32, 0.4),
        0 0 30px rgba(34, 139, 34, 0.3);
}

.city-name-eng {
    font-family: 'Noto Serif SC', serif;
    font-size: 34px;
    color: #006400;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: 14px;
}

.city-description {
    font-size: 16px;
    color: #555;
    line-height: 2;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

/* 도시 특징 섹션 */
.city-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
    text-align: left;
}

.feature-item {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1), rgba(34, 139, 34, 0.05));
    border: 2px solid rgba(218, 165, 32, 0.3);
    border-radius: 15px;
    padding: 25px 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(218, 165, 32, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.3);
    border-color: rgba(218, 165, 32, 0.6);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 8px rgba(218, 165, 32, 0.3));
    animation: featureIconFloat 3s ease-in-out infinite;
}

.feature-item:nth-child(1) .feature-icon { animation-delay: 0s; }
.feature-item:nth-child(2) .feature-icon { animation-delay: 0.5s; }
.feature-item:nth-child(3) .feature-icon { animation-delay: 1s; }
.feature-item:nth-child(4) .feature-icon { animation-delay: 1.5s; }
.feature-item:nth-child(5) .feature-icon { animation-delay: 2s; }
.feature-item:nth-child(6) .feature-icon { animation-delay: 2.5s; }

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

.feature-title {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #228b22;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.feature-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
    margin: 0;
}

/* 날짜 섹션 - 맥주 그라데이션 */
.date-section {
    margin-bottom: 40px;
    text-align: center;
}

.date-card {
    background: 
        linear-gradient(135deg, #228b22 0%, #006400 100%);
    border-radius: 0;
    padding: 40px 30px;
    color: white;
    box-shadow: 
        0 10px 30px rgba(34, 139, 34, 0.4),
        inset 0 0 0 5px #daa520,
        inset 0 0 30px rgba(218, 165, 32, 0.2);
    position: relative;
    margin-top: 20px;
}

.date-card::before,
.date-card::after {
    content: '🍻';
    position: absolute;
    font-size: 36px;
    text-shadow: 0 0 10px rgba(218, 165, 32, 0.8);
}

.date-card::before {
    top: 15px;
    left: 20px;
}

.date-card::after {
    bottom: 15px;
    right: 20px;
}

.date-content {
    position: relative;
    z-index: 1;
}

.date-label {
    font-size: 15px;
    opacity: 0.95;
    margin-bottom: 12px;
    font-weight: 300;
    letter-spacing: 2px;
}

.date-main {
    font-family: 'Noto Serif SC', serif;
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: 8px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.date-duration {
    font-size: 17px;
    opacity: 0.95;
    font-weight: 300;
    letter-spacing: 1px;
}

/* 맥주 축제 안내 */
.labor-day-notice {
    background: linear-gradient(135deg, #fffef7 0%, #f4e99b 100%);
    border: 3px solid #daa520;
    border-radius: 12px;
    padding: 25px;
    margin-top: 20px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(218, 165, 32, 0.3);
}

.notice-badge {
    display: inline-block;
    background: linear-gradient(135deg, #daa520, #228b22);
    color: white;
    font-weight: 700;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    box-shadow: 0 3px 10px rgba(34, 139, 34, 0.3);
}

.labor-notice-text {
    font-size: 14px;
    color: #555;
    line-height: 2;
    letter-spacing: 0.3px;
}

.labor-notice-text strong {
    color: #228b22;
    font-weight: 700;
}

/* 전문 가이드 섹션 */
.guide-section {
    margin-bottom: 40px;
    text-align: center;
}

.guide-card {
    background: linear-gradient(135deg, #fffef7 0%, #f4e99b 100%);
    border: 4px solid #daa520;
    border-radius: 20px;
    padding: 40px 35px;
    position: relative;
    box-shadow: 
        0 15px 50px rgba(218, 165, 32, 0.4),
        inset 0 0 40px rgba(218, 165, 32, 0.1);
    margin-top: 20px;
    overflow: hidden;
}

.guide-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.1) 0%, transparent 70%);
    animation: rotateGlow 10s linear infinite;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.guide-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #228b22, #006400);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(34, 139, 34, 0.4);
    position: relative;
    z-index: 1;
}

.badge-star {
    font-size: 16px;
    animation: starRotate 3s ease-in-out infinite;
}

.badge-star:first-child {
    animation-delay: 0s;
}

.badge-star:last-child {
    animation-delay: 1.5s;
}

@keyframes starRotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
}

.guide-avatar {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.avatar-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #daa520, #228b22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 
        0 10px 30px rgba(218, 165, 32, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    animation: avatarPulse 3s ease-in-out infinite;
}

@keyframes avatarPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 10px 30px rgba(218, 165, 32, 0.4),
            inset 0 0 20px rgba(255, 255, 255, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 15px 40px rgba(218, 165, 32, 0.6),
            inset 0 0 30px rgba(255, 255, 255, 0.3);
    }
}

.avatar-icon {
    font-size: 60px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3));
}

.avatar-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(218, 165, 32, 0.4), transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.guide-name {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.guide-chinese {
    font-family: 'Noto Serif SC', serif;
    font-size: 32px;
    font-weight: 900;
    color: #228b22;
    letter-spacing: 4px;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(34, 139, 34, 0.3);
}

.guide-pinyin {
    font-family: 'Georgia', serif;
    font-size: 20px;
    font-weight: 600;
    color: #daa520;
    font-style: italic;
    letter-spacing: 2px;
}

.guide-title {
    font-size: 16px;
    color: #006400;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.guide-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    max-width: 400px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
}

.guide-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.6);
    padding: 12px 18px;
    border-radius: 10px;
    border-left: 4px solid #228b22;
    transition: all 0.3s ease;
    animation: featureSlideIn 0.6s ease-out backwards;
}

.guide-feature:nth-child(1) { animation-delay: 0.1s; }
.guide-feature:nth-child(2) { animation-delay: 0.2s; }
.guide-feature:nth-child(3) { animation-delay: 0.3s; }
.guide-feature:nth-child(4) { animation-delay: 0.4s; }

@keyframes featureSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.guide-feature:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 5px 15px rgba(34, 139, 34, 0.2);
}

.feature-badge {
    width: 24px;
    height: 24px;
    background: #228b22;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.guide-feature span:last-child {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    line-height: 1.5;
}

.guide-quote {
    position: relative;
    background: rgba(34, 139, 34, 0.1);
    border: 2px solid rgba(34, 139, 34, 0.3);
    border-radius: 15px;
    padding: 25px 30px;
    margin-top: 30px;
    z-index: 1;
}

.quote-icon {
    font-size: 48px;
    color: #daa520;
    font-family: 'Georgia', serif;
    line-height: 1;
    opacity: 0.5;
}

.quote-icon.closing {
    position: absolute;
    bottom: 5px;
    right: 20px;
}

.quote-text {
    font-size: 15px;
    color: #006400;
    line-height: 1.8;
    font-style: italic;
    margin: -20px 0 0 0;
    letter-spacing: 0.5px;
}

/* 준비물 섹션 */
.preparation-section {
    margin-bottom: 40px;
    text-align: center;
}

.preparation-card {
    background: linear-gradient(135deg, #fffef7 0%, #f4e99b 100%);
    border: 5px solid #daa520;
    border-radius: 0;
    padding: 35px 25px;
    position: relative;
    box-shadow: 
        0 8px 20px rgba(218, 165, 32, 0.3),
        inset 0 0 20px rgba(218, 165, 32, 0.1);
    margin-top: 20px;
}

.preparation-card::before,
.preparation-card::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid #daa520;
}

.preparation-card::before {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.preparation-card::after {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

.prep-title {
    font-family: 'Noto Serif SC', serif;
    font-size: 26px;
    font-weight: 700;
    color: #006400;
    margin-bottom: 30px;
    letter-spacing: 5px;
}

.prep-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.prep-item {
    flex: 1;
    max-width: 150px;
}

.prep-icon {
    display: block;
    font-size: 56px;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 8px rgba(34, 139, 34, 0.2));
}

.prep-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

.prep-item strong {
    font-size: 24px;
    color: #228b22;
    font-weight: 700;
}

.prep-item.fun {
    position: relative;
    overflow: visible;
}

.fun-icon {
    position: relative;
    animation: moneyShake 0.5s ease-in-out infinite;
}

@keyframes moneyShake {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

.fun-items {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 10px 0 5px 0;
}

.fun-emoji {
    font-size: 28px;
    animation: funPop 1.5s ease-in-out infinite;
    filter: drop-shadow(0 3px 8px rgba(218, 165, 32, 0.3));
}

.fun-emoji:nth-child(1) {
    animation-delay: 0s;
}

.fun-emoji:nth-child(2) {
    animation-delay: 0.3s;
}

.fun-emoji:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes funPop {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.2) rotate(10deg);
    }
}

.prep-item.fun p strong {
    color: #ff6b6b;
    font-size: 26px;
    animation: textBounce 2s ease-in-out infinite;
}

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

.prep-divider {
    font-size: 36px;
    color: #daa520;
    font-weight: 900;
}

/* 제공 섹션 (심플) */
.provided-section {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px dashed rgba(218, 165, 32, 0.3);
}

.provided-items {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.provided-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-icon {
    font-size: 48px;
    opacity: 0.6;
    filter: grayscale(0.3);
    transition: all 0.3s ease;
}

.provided-item:hover .item-icon {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.2);
}

.item-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #228b22, #006400);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 3px 10px rgba(34, 139, 34, 0.4);
}

/* 참가 섹션 */
.join-section {
    margin-bottom: 20px;
    text-align: center;
}

.join-card {
    background: white;
    border: 5px solid #228b22;
    border-radius: 0;
    padding: 35px 30px;
    box-shadow: 
        10px 10px 0 rgba(34, 139, 34, 0.15),
        inset 0 0 30px rgba(218, 165, 32, 0.05);
    margin-top: 20px;
    position: relative;
}

.join-card::before {
    content: '🍺';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #fffef7;
    font-size: 32px;
    padding: 0 15px;
}

.join-title {
    font-family: 'Noto Serif SC', serif;
    font-size: 28px;
    font-weight: 700;
    color: #006400;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.join-description {
    font-size: 16px;
    color: #555;
    line-height: 2;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.kakao-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fee500;
    color: #3c1e1e;
    padding: 18px 35px;
    border-radius: 0;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        5px 5px 0 rgba(34, 139, 34, 0.25),
        0 5px 15px rgba(254, 229, 0, 0.3);
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    border: 2px solid #daa520;
}

.kakao-button:hover {
    transform: translate(-3px, -3px);
    box-shadow: 
        8px 8px 0 rgba(34, 139, 34, 0.35),
        0 8px 20px rgba(254, 229, 0, 0.4);
}

.kakao-button i {
    font-size: 20px;
}

.join-note {
    font-size: 14px;
    color: #777;
    line-height: 1.8;
    margin-top: 15px;
    letter-spacing: 0.3px;
}

.notice-box {
    background: #f0fff0;
    border: 3px solid #228b22;
    border-radius: 8px;
    padding: 20px;
    margin-top: 25px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.notice-icon {
    font-size: 24px;
    margin: 0;
    flex-shrink: 0;
}

.notice-text {
    font-size: 13px;
    color: #555;
    line-height: 1.8;
    margin: 0;
    letter-spacing: 0.3px;
    text-align: left;
}

.notice-text strong {
    color: #228b22;
    font-size: 15px;
    font-weight: 700;
}

/* 푸터 */
.footer {
    background: 
        linear-gradient(135deg, #228b22 0%, #006400 100%);
    padding: 50px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(218, 165, 32, 0.05) 10px,
            rgba(218, 165, 32, 0.05) 20px
        );
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(218, 165, 32, 0.15) 2px, transparent 2px);
    background-size: 30px 30px;
}

/* 오거나이저 섹션 */
.organizer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    animation: organizerFadeIn 1.5s ease-out;
}

@keyframes organizerFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.organizer-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #daa520, transparent);
    animation: lineGlow 2s ease-in-out infinite;
}

@keyframes lineGlow {
    0%, 100% {
        opacity: 0.5;
        box-shadow: 0 0 5px rgba(218, 165, 32, 0.3);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 15px rgba(218, 165, 32, 0.8);
    }
}

.organizer-text {
    font-family: 'Georgia', serif;
    font-size: 13px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    text-transform: lowercase;
}

.organizer-name {
    font-family: 'Georgia', serif;
    font-size: 22px;
    font-weight: 700;
    color: #daa520;
    letter-spacing: 2px;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(218, 165, 32, 0.6);
    animation: namePulse 3s ease-in-out infinite;
    position: relative;
}

@keyframes namePulse {
    0%, 100% {
        text-shadow: 
            2px 2px 4px rgba(0, 0, 0, 0.5),
            0 0 15px rgba(218, 165, 32, 0.5);
    }
    50% {
        text-shadow: 
            2px 2px 4px rgba(0, 0, 0, 0.5),
            0 0 30px rgba(218, 165, 32, 0.9),
            0 0 40px rgba(218, 165, 32, 0.6);
    }
}

.organizer-name::before {
    content: '✦';
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    color: #daa520;
    font-size: 16px;
    animation: starTwinkle 2s ease-in-out infinite;
}

.organizer-name::after {
    content: '✦';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    color: #daa520;
    font-size: 16px;
    animation: starTwinkle 2s ease-in-out infinite 1s;
}

@keyframes starTwinkle {
    0%, 100% {
        opacity: 0.5;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.3);
    }
}

.footer-text {
    font-family: 'Noto Serif SC', serif;
    font-size: 32px;
    color: #daa520;
    font-weight: 900;
    position: relative;
    z-index: 1;
    letter-spacing: 12px;
    text-shadow: 
        3px 3px 6px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(218, 165, 32, 0.5);
    margin-bottom: 35px;
}

/* 도시 링크 - 화려한 애니메이션 효과 */
.city-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    position: relative;
    z-index: 1;
    padding: 20px 35px;
    transition: all 0.4s ease;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.2), rgba(34, 139, 34, 0.3));
    border-radius: 50px;
    border: 2px solid rgba(218, 165, 32, 0.5);
    box-shadow: 
        0 5px 20px rgba(218, 165, 32, 0.3),
        inset 0 0 20px rgba(218, 165, 32, 0.1);
    animation: linkPulse 2s ease-in-out infinite;
    cursor: pointer;
}

@keyframes linkPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 5px 20px rgba(218, 165, 32, 0.3),
            inset 0 0 20px rgba(218, 165, 32, 0.1),
            0 0 0 0 rgba(218, 165, 32, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 
            0 8px 30px rgba(218, 165, 32, 0.5),
            inset 0 0 25px rgba(218, 165, 32, 0.2),
            0 0 0 8px rgba(218, 165, 32, 0.2),
            0 0 0 16px rgba(218, 165, 32, 0);
    }
}

.city-link::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #daa520, #228b22, #daa520);
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
    0% {
        background: linear-gradient(0deg, #daa520, #228b22, #daa520);
    }
    50% {
        background: linear-gradient(180deg, #daa520, #228b22, #daa520);
    }
    100% {
        background: linear-gradient(360deg, #daa520, #228b22, #daa520);
    }
}

.city-link:hover {
    color: rgba(255, 255, 255, 1);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(218, 165, 32, 0.6),
        inset 0 0 30px rgba(218, 165, 32, 0.3),
        0 0 0 5px rgba(218, 165, 32, 0.3);
    animation: none;
}

.city-link:hover::before {
    opacity: 1;
}

.link-arrow {
    font-size: 28px;
    font-weight: bold;
    color: #daa520;
    animation: arrowBounce 1s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(218, 165, 32, 0.8);
}

@keyframes arrowBounce {
    0%, 100% { 
        transform: translateX(0);
    }
    50% { 
        transform: translateX(10px);
    }
}

.city-link:hover .link-arrow {
    animation: arrowShake 0.5s ease infinite;
}

@keyframes arrowShake {
    0%, 100% { 
        transform: translateX(0) rotate(0deg);
    }
    25% { 
        transform: translateX(5px) rotate(10deg);
    }
    75% { 
        transform: translateX(5px) rotate(-10deg);
    }
}

.link-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: left;
}

.link-chinese {
    font-family: 'Noto Serif SC', serif;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 3px;
    color: #daa520;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(218, 165, 32, 0.6);
    animation: textGlow 2s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 
            2px 2px 4px rgba(0, 0, 0, 0.5),
            0 0 10px rgba(218, 165, 32, 0.4);
    }
    50% {
        text-shadow: 
            2px 2px 4px rgba(0, 0, 0, 0.5),
            0 0 20px rgba(218, 165, 32, 0.8),
            0 0 30px rgba(218, 165, 32, 0.6);
    }
}

.link-korean {
    font-size: 12px;
    opacity: 0.85;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
}

.link-icon {
    font-size: 36px;
    animation: iconSpin 4s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

@keyframes iconSpin {
    0%, 100% { 
        transform: rotate(0deg) scale(1);
    }
    25% { 
        transform: rotate(-20deg) scale(1.1);
    }
    50% { 
        transform: rotate(0deg) scale(1.2);
    }
    75% { 
        transform: rotate(20deg) scale(1.1);
    }
}

.city-link:hover .link-icon {
    animation: iconJump 0.6s ease infinite;
}

@keyframes iconJump {
    0%, 100% { 
        transform: translateY(0) scale(1);
    }
    50% { 
        transform: translateY(-10px) scale(1.3) rotate(360deg);
    }
}

/* 배경 장식 */
.bg-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* 맥주 거품 */
.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    animation: floatBubble 20s linear infinite;
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 100px;
}

.cloud-1 {
    width: 120px;
    height: 40px;
    top: 15%;
    left: -120px;
    animation-duration: 25s;
}

.cloud-1::before {
    width: 60px;
    height: 60px;
    top: -30px;
    left: 20px;
}

.cloud-1::after {
    width: 80px;
    height: 50px;
    top: -20px;
    right: 20px;
}

.cloud-2 {
    width: 100px;
    height: 35px;
    top: 50%;
    right: -100px;
    animation-duration: 30s;
    animation-delay: 7s;
}

.cloud-2::before {
    width: 50px;
    height: 50px;
    top: -25px;
    left: 15px;
}

.cloud-2::after {
    width: 70px;
    height: 45px;
    top: -18px;
    right: 15px;
}

.cloud-3 {
    width: 90px;
    height: 30px;
    bottom: 20%;
    left: -90px;
    animation-duration: 28s;
    animation-delay: 14s;
}

.cloud-3::before {
    width: 45px;
    height: 45px;
    top: -22px;
    left: 12px;
}

.cloud-3::after {
    width: 60px;
    height: 40px;
    top: -16px;
    right: 12px;
}

/* 황금 용 */
.dragon {
    position: absolute;
    font-size: 120px;
    filter: 
        drop-shadow(0 0 30px rgba(218, 165, 32, 1))
        drop-shadow(0 0 60px rgba(218, 165, 32, 0.8))
        drop-shadow(0 5px 20px rgba(218, 165, 32, 0.6));
    animation: flyDragon 18s linear infinite;
    z-index: 1;
    opacity: 0.95;
}

.dragon-1 {
    top: 10%;
    left: -150px;
    animation-duration: 20s;
}

.dragon-2 {
    bottom: 15%;
    right: -150px;
    animation-duration: 24s;
    animation-delay: 10s;
    transform: scaleX(-1);
}

/* 애니메이션 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes swingLantern {
    0%, 100% {
        transform: rotate(-8deg);
    }
    50% {
        transform: rotate(8deg);
    }
}

@keyframes floatBubble {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(calc(100vw + 200px)) translateY(-100px);
    }
}

@keyframes flyDragon {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg) scale(1);
        filter: 
            drop-shadow(0 0 30px rgba(218, 165, 32, 1))
            drop-shadow(0 0 60px rgba(218, 165, 32, 0.8));
    }
    15% {
        transform: translateX(15vw) translateY(-50px) rotate(8deg) scale(1.1);
        filter: 
            drop-shadow(0 0 40px rgba(218, 165, 32, 1))
            drop-shadow(0 0 80px rgba(218, 165, 32, 0.9));
    }
    30% {
        transform: translateX(30vw) translateY(-30px) rotate(-5deg) scale(1.05);
    }
    45% {
        transform: translateX(45vw) translateY(-60px) rotate(10deg) scale(1.15);
        filter: 
            drop-shadow(0 0 50px rgba(218, 165, 32, 1))
            drop-shadow(0 0 100px rgba(218, 165, 32, 1));
    }
    60% {
        transform: translateX(60vw) translateY(-20px) rotate(-8deg) scale(1);
    }
    75% {
        transform: translateX(75vw) translateY(-45px) rotate(6deg) scale(1.08);
        filter: 
            drop-shadow(0 0 40px rgba(218, 165, 32, 1))
            drop-shadow(0 0 80px rgba(218, 165, 32, 0.9));
    }
    90% {
        transform: translateX(90vw) translateY(-25px) rotate(-3deg) scale(1.02);
    }
    100% {
        transform: translateX(calc(100vw + 200px)) translateY(0) rotate(0deg) scale(1);
        filter: 
            drop-shadow(0 0 30px rgba(218, 165, 32, 1))
            drop-shadow(0 0 60px rgba(218, 165, 32, 0.8));
    }
}

/* 반응형 디자인 */
@media (max-width: 600px) {
    .container {
        box-shadow: 
            0 15px 50px rgba(0, 0, 0, 0.4),
            0 0 0 2px #daa520,
            0 0 0 8px #228b22,
            0 0 0 10px #daa520;
    }

    .header {
        padding: 50px 20px 70px;
    }

    .city-link {
        flex-direction: column;
        gap: 10px;
        padding: 18px 25px;
    }

    .link-arrow {
        font-size: 24px;
    }

    .link-text {
        align-items: center;
        text-align: center;
    }

    .link-chinese {
        font-size: 18px;
    }

    .link-icon {
        font-size: 32px;
    }

    .organizer {
        flex-direction: column;
        gap: 10px;
    }

    .organizer-line {
        width: 40px;
    }

    .organizer-text {
        font-size: 11px;
    }

    .organizer-name {
        font-size: 18px;
    }

    .organizer-name::before,
    .organizer-name::after {
        display: none;
    }

    .participants-badge {
        padding: 25px 30px;
    }

    .participants-icon {
        font-size: 40px;
    }

    .count-number {
        font-size: 48px;
    }

    .count-text {
        font-size: 16px;
    }

    .avatar {
        font-size: 28px;
    }

    .badge-sparkle {
        font-size: 16px;
    }

    .lantern {
        width: 40px;
        height: 70px;
    }

    .lantern::after {
        font-size: 24px;
    }

    .lantern-left {
        left: 15px;
    }

    .lantern-right {
        right: 15px;
    }

    .main-title {
        font-size: 48px;
        letter-spacing: 10px;
    }

    .subtitle {
        font-size: 16px;
    }

    .city-name {
        font-size: 72px;
        letter-spacing: 14px;
    }

    .city-name-eng {
        font-size: 26px;
        letter-spacing: 10px;
    }

    .city-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-item {
        padding: 20px 18px;
    }

    .feature-icon {
        font-size: 40px;
    }

    .feature-title {
        font-size: 15px;
    }

    .feature-desc {
        font-size: 12px;
    }

    .guide-card {
        padding: 30px 25px;
    }

    .avatar-circle {
        width: 100px;
        height: 100px;
    }

    .avatar-icon {
        font-size: 50px;
    }

    .avatar-glow {
        width: 120px;
        height: 120px;
    }

    .guide-chinese {
        font-size: 28px;
        letter-spacing: 3px;
    }

    .guide-pinyin {
        font-size: 18px;
    }

    .guide-title {
        font-size: 15px;
    }

    .guide-features {
        max-width: 100%;
    }

    .guide-feature {
        padding: 10px 15px;
    }

    .guide-feature span:last-child {
        font-size: 13px;
    }

    .guide-quote {
        padding: 20px 20px;
    }

    .quote-icon {
        font-size: 36px;
    }

    .quote-text {
        font-size: 14px;
    }

    .main-content {
        padding: 30px 20px;
    }

    .date-main {
        font-size: 32px;
        letter-spacing: 6px;
    }

    .prep-items {
        flex-direction: column;
        gap: 20px;
    }

    .prep-divider {
        transform: rotate(90deg);
    }

    .fun-items {
        gap: 6px;
        margin: 8px 0 4px 0;
    }

    .fun-emoji {
        font-size: 24px;
    }

    .prep-item.fun p strong {
        font-size: 24px;
    }

    .provided-section {
        margin-top: 25px;
        padding-top: 20px;
    }

    .provided-items {
        gap: 35px;
    }

    .item-icon {
        font-size: 42px;
    }

    .item-badge {
        width: 22px;
        height: 22px;
        font-size: 12px;
        top: -6px;
        right: -6px;
    }

    .join-card {
        padding: 30px 20px;
    }

    .kakao-button {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
    }

    .dragon {
        font-size: 80px;
    }

    .labor-day-notice {
        padding: 20px;
    }

    .notice-badge {
        font-size: 13px;
        padding: 6px 14px;
    }

    .labor-notice-text {
        font-size: 13px;
    }
}

@media (max-width: 400px) {
    body {
        padding: 10px;
    }

    .city-name {
        font-size: 60px;
    }

    .date-card {
        padding: 30px 20px;
    }

    .prep-title {
        font-size: 22px;
    }

    .join-title {
        font-size: 24px;
    }

    .dragon {
        font-size: 60px;
    }
}
