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

:root {
    --primary-color: #0a0e1a;
    --secondary-color: #13182a;
    --accent-color: #ff4d6d;
    --gold-color: #ffd700;
    --text-light: #ffffff;
    --text-gray: #d0d4ff;
    --gradient-1: linear-gradient(135deg, #a855f7 0%, #6366f1 30%, #ec4899 70%, #f43f5e 100%);
    --gradient-2: linear-gradient(135deg, #ff6b9d 0%, #ff8c69 50%, #ffb347 100%);
    --gradient-moove: linear-gradient(135deg, #4f46e5 0%, #6366f1 30%, #8b5cf6 70%, #a855f7 100%);
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffb347 100%);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --border-color: rgba(255, 255, 255, 0.15);
    --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 30px rgba(168, 85, 247, 0.4), 0 0 60px rgba(236, 72, 153, 0.2);
    --shadow-glow-gold: 0 0 40px rgba(255, 215, 0, 0.5), 0 0 80px rgba(255, 179, 71, 0.3);
}

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.05), transparent 45%), var(--primary-color);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.7;
}

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

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

/* Snowflakes */
.snowflakes {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1000;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -10px;
    color: rgba(255, 255, 255, 0.9);
    animation: snowfall linear infinite;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.5);
    will-change: transform;
}

.snowflake.small {
    font-size: 14px;
    opacity: 0.6;
}

.snowflake.medium {
    font-size: 20px;
    opacity: 0.8;
}

.snowflake.large {
    font-size: 28px;
    opacity: 1;
}

@keyframes snowfall {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: translateX(var(--drift, 0px)) rotate(180deg);
    }
    100% {
        transform: translateY(100vh) translateX(var(--drift, 0px)) rotate(360deg);
        opacity: 0;
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    background: rgba(5, 7, 14, 0.75);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 999;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 1.3rem;
}

.logo-text {
    font-family: 'Pretendard', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background-image: linear-gradient(120deg, #b8860b, #ffd700 30%, #fff4c2 45%, #d4a017 60%, #ffd700 85%, #b8860b);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: 0 0 12px rgba(255, 222, 173, 0.35), 0 0 25px rgba(255, 193, 7, 0.25);
    animation: logo-glitter 5s ease-in-out infinite;
}

@keyframes logo-glitter {
    0%, 100% {
        background-position: 0% center;
        text-shadow: 0 0 12px rgba(255, 222, 173, 0.35), 0 0 25px rgba(255, 193, 7, 0.25);
    }
    50% {
        background-position: 100% center;
        text-shadow: 0 0 18px rgba(255, 242, 204, 0.45), 0 0 35px rgba(255, 215, 128, 0.35);
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    justify-content: flex-end;
}

.lang-dropdown {
    position: relative;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    color: var(--text-light);
}

.lang-current:hover {
    border-color: var(--gold-color);
    background: rgba(255, 215, 0, 0.1);
}

.lang-current .lang-flag {
    font-size: 1rem;
}

.lang-current .lang-code {
    font-weight: 600;
}

.lang-current .lang-arrow {
    font-size: 0.7rem;
    opacity: 0.6;
    transition: transform 0.3s ease;
}

.lang-dropdown.open .lang-arrow {
    transform: rotate(180deg);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 140px;
    background: rgba(20, 20, 30, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 0.5rem;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.lang-dropdown.open .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-gray);
    transition: all 0.2s ease;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.lang-option.active {
    background: rgba(255, 215, 0, 0.15);
    color: var(--gold-color);
}

.lang-option .lang-flag {
    font-size: 1.1rem;
}

.nav-cta {
    padding: 0.65rem 1.4rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.nav-cta:hover {
    border-color: rgba(255, 215, 0, 0.6);
    color: var(--gold-color);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 0.3rem;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-light);
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-menu a {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-gray);
    position: relative;
}

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

.nav-menu a:hover {
    color: var(--text-light);
}

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

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 140px 0 80px;
    background:
        linear-gradient(180deg, rgba(3, 6, 16, 0.8), rgba(5, 9, 22, 0.95)),
        radial-gradient(circle at 20% 20%, rgba(168, 85, 247, 0.25), transparent 50%),
        radial-gradient(circle at 80% 0, rgba(236, 72, 153, 0.2), transparent 40%),
        radial-gradient(circle at 50% 100%, rgba(99, 102, 241, 0.15), transparent 50%),
        url('../images/hangang_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-decoration {
    position: absolute;
    inset: 0;
    z-index: 0;
}

#island-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    mix-blend-mode: screen;
    opacity: 0.6;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 320px;
    height: 320px;
    top: 15%;
    left: 10%;
    background: var(--gradient-1);
}

.shape-2 {
    width: 220px;
    height: 220px;
    bottom: 10%;
    right: 15%;
    background: var(--gradient-2);
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 55%;
    right: 5%;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(40px, -20px) rotate(160deg);
    }
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 4rem;
    padding: 0 2rem;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.hero-main {
    padding-bottom: 2rem;
}

.hero-main .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.hero-title {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-weight: 900;
    letter-spacing: -0.02em;
    font-size: clamp(2.2rem, 3.5vw, 3.8rem);
    line-height: 1.2;
    margin: 1rem 0;
}

.title-line {
    display: block;
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-gray);
    margin-bottom: 0.3rem;
}

.title-main {
    display: block;
    font-family: 'Pretendard', sans-serif;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
    animation: shimmer 3s ease-in-out infinite;
    background-size: 200% auto;
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

.hero-subtitle {
    color: var(--text-gray);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.hero-meta {
    display: grid;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.meta-label {
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
}

.hero-meta strong {
    font-size: 1rem;
    color: var(--text-light);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

/* Hero Story Wrapper */
.hero-story-wrapper {
    position: relative;
    z-index: 2;
    margin-top: 4rem;
    padding-top: 2.5rem;
}


.story-content {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 2rem;
    text-align: center;
}

.story-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold-color);
    margin-bottom: 1.5rem;
    letter-spacing: 0.03em;
}

.story-checklist {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.checklist-item:hover {
    background: rgba(255, 215, 0, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.checklist-icon {
    font-size: 1.1rem;
}

.checklist-text {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

.story-description {
    color: var(--text-gray);
    line-height: 2;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.story-description p {
    margin: 0.3rem 0;
}

.story-highlights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem 1.5rem;
    margin-bottom: 1.5rem;
}

.story-highlights span {
    font-size: 0.9rem;
    color: var(--text-gray);
    padding: 0.3rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.story-highlights span:hover {
    color: var(--text-light);
    border-bottom-color: rgba(255, 215, 0, 0.5);
}

.story-cta {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0;
    margin-bottom: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.story-cta strong {
    color: var(--gold-color);
}

@media (max-width: 768px) {
    /* Schedule Tabs 모바일 */
    .schedule-tabs {
        flex-direction: column;
        gap: 0.8rem;
    }

    .schedule-tab {
        flex-direction: row;
        justify-content: flex-start;
        gap: 1rem;
        padding: 1rem 1.2rem;
        min-width: unset;
        width: 100%;
    }

    .schedule-tab .tab-icon {
        font-size: 1.5rem;
    }

    .schedule-tab .tab-label {
        font-size: 0.95rem;
    }

    .schedule-tab .tab-date {
        margin-left: auto;
    }

    .hero-story-wrapper {
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .story-title {
        font-size: 1.2rem;
    }

    .story-checklist {
        flex-direction: column;
        align-items: center;
        gap: 0.7rem;
    }

    .checklist-item {
        width: 100%;
        max-width: 220px;
        justify-content: center;
    }

    .story-description {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .story-highlights {
        flex-direction: column;
        gap: 0.5rem;
    }

    .story-highlights span {
        font-size: 0.85rem;
    }

    .story-cta {
        font-size: 1rem;
    }
}

.btn {
    padding: 0.95rem 2.4rem;
    border-radius: 999px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary {
    background: var(--gradient-2);
    color: var(--text-light);
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.4), 0 0 30px rgba(255, 107, 157, 0.2);
    position: relative;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 999px;
    padding: 2px;
    background: var(--gradient-2);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-light);
}

.btn:hover {
    transform: translateY(-3px);
}

.hero-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-visual {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: var(--shadow-soft), 0 40px 80px rgba(10, 12, 24, 0.6), inset 0 0 40px rgba(255, 255, 255, 0.15);
    flex: 1;
    min-height: 300px;
    background: rgba(0, 0, 0, 0.15);
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.15) contrast(1.08) brightness(1.05);
    transform: scale(1.02);
}

.hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(10, 14, 36, 0.05), rgba(10, 14, 36, 0.45));
}

.hero-visual::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 30px;
    padding: 1px;
    background: linear-gradient(130deg, rgba(255, 255, 255, 0.2), rgba(168, 85, 247, 0.6), rgba(236, 72, 153, 0.6));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.7;
}

.hero-visual-badge {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    padding: 0.8rem 1.6rem;
    border-radius: 20px;
    background: rgba(10, 14, 36, 0.7);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    text-align: center;
}

.hero-visual-badge span {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-gray);
    margin-bottom: 0.4rem;
}

.hero-visual-badge strong {
    font-size: 1rem;
}

.hero-info-box {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    border: none;
    padding: 2rem;
    box-shadow: var(--shadow-soft), 0 30px 60px rgba(8, 10, 22, 0.7);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-info-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft), var(--shadow-glow), 0 40px 90px rgba(168, 85, 247, 0.35);
}

.info-label {
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 0.75rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.countdown {
    display: grid;
    grid-template-columns: repeat(4, minmax(60px, 1fr));
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.count-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    text-align: center;
    padding: 1rem 0.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.count-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.count-item:hover::before {
    opacity: 0.15;
}

.count-item:hover {
    transform: translateY(-3px);
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2);
}

.count-number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

.count-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    letter-spacing: 0.1em;
}

/* Section Base */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-weight: 800;
    letter-spacing: -0.01em;
    font-size: clamp(2.4rem, 3vw, 3.6rem);
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    text-align: center;
}

.section-lead {
    max-width: 820px;
    margin: 0 auto 3rem;
    text-align: center;
    color: var(--text-gray);
}

.section-head {
    text-align: center;
    margin-bottom: 3rem;
}

.section-head span {
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 0.8rem;
    color: var(--text-gray);
}

/* About */
.about {
    background: var(--secondary-color);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.about-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(168, 85, 247, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    border-radius: 24px;
}

.about-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), var(--shadow-glow);
}

.about-card:hover::before {
    opacity: 0.1;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    color: var(--gold-color);
    margin-bottom: 0.8rem;
}

.about-card p {
    color: var(--text-gray);
}

.info-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.info-list div {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 18px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

.info-list span {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-gray);
    margin-bottom: 0.4rem;
}

/* Events */
.events {
    background: radial-gradient(circle at top, rgba(90, 94, 255, 0.15), transparent 50%), var(--primary-color);
}

/* Schedule Tabs */
.schedule-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.schedule-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.schedule-tab:hover {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.schedule-tab.active {
    border-color: var(--gold-color);
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
}

.schedule-tab .tab-icon {
    font-size: 1.8rem;
}

.schedule-tab .tab-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.schedule-tab.active .tab-label {
    color: var(--gold-color);
}

.schedule-tab .tab-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
}

.schedule-tab.active .tab-date {
    color: rgba(255, 215, 0, 0.7);
}

/* Schedule Content */
.schedule-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.schedule-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.events-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 2rem;
    align-items: stretch;
}

.timeline-date {
    border-radius: 24px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.timeline-date span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-gray);
}

.timeline-content {
    border-radius: 24px;
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.timeline-content:hover {
    transform: translateX(10px);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: var(--shadow-soft), var(--shadow-glow);
}

.timeline-content:hover::before {
    opacity: 0.08;
}

.timeline-content h3 {
    color: var(--gold-color);
    margin-bottom: 0.8rem;
}

.timeline-content p {
    color: var(--text-gray);
}

/* Reasons */
.reasons {
    background: var(--secondary-color);
}

.reasons-layout {
    display: grid;
    grid-template-columns: minmax(280px, 360px) 1fr;
    gap: 2rem;
}

.reasons-visual {
    border-radius: 32px;
    min-height: 420px;
    position: relative;
    overflow: hidden;
}

.reasons-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 14, 36, 0.2), rgba(10, 14, 36, 0.8));
}

.reasons-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reasons-tabs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.reason-tab {
    text-align: left;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    padding: 1.5rem;
    border: 1px solid transparent;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.reason-tab span {
    display: block;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-bottom: 0.6rem;
}

.reason-tab strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0.4rem;
}

.reason-tab.active,
.reason-tab:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

/* Tickets */
.tickets {
    background: var(--primary-color);
}

.ticket-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.ticket-single {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.ticket-card-unified {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    border: 1px dashed rgba(255, 255, 255, 0.35);
    border-radius: 32px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    display: flex;
    overflow: visible;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), border 0.3s ease;
}

.ticket-card-unified::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -18px;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.ticket-card-unified::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -18px;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.ticket-card-unified:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 215, 0, 0.4);
}

.ticket-content {
    flex: 2;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ticket-divider {
    position: relative;
    width: 1px;
    background: transparent;
    margin: 2.5rem 0;
    flex-shrink: 0;
}

.ticket-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.3) 0,
        rgba(255, 255, 255, 0.3) 8px,
        transparent 8px,
        transparent 16px
    );
}

.ticket-pricing {
    flex: 1;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    min-width: 200px;
}

.price-item {
    text-align: center;
}

.price-label {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-gray);
    margin-bottom: 0.8rem;
}

.ticket-card-unified .ticket-header {
    text-align: left;
}

.ticket-card-unified .ticket-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.ticket-card-unified .ticket-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.ticket-card-unified .ticket-benefits {
    list-style: none;
    color: var(--text-gray);
    line-height: 1.8;
    padding-left: 0;
    margin: 0;
}

.ticket-card-unified .ticket-benefits li::before {
    content: '✦';
    margin-right: 0.5rem;
    color: var(--gold-color);
}

.ticket-card-unified .ticket-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
}

.ticket-card-unified .ticket-price sup {
    font-size: 0.9rem;
    margin-right: 0.2rem;
}

.ticket-card {
    position: relative;
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    border: 1px dashed rgba(255, 255, 255, 0.35);
    border-radius: 32px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow: visible;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), border 0.3s ease;
}

.ticket-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -18px;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.35);
}

.ticket-card::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -18px;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.35);
}

.ticket-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 215, 0, 0.4);
}

.ticket-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.ticket-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
}

.ticket-desc {
    color: var(--text-gray);
    margin: 0;
}

.ticket-tag {
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-gray);
}

.ticket-card .ticket-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.ticket-card .ticket-tag::before,
.ticket-card .ticket-tag::after {
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.35);
}

.ticket-price {
    font-size: 2.5rem;
    font-weight: 700;
}

.ticket-price sup {
    font-size: 1rem;
    margin-right: 0.3rem;
}

.ticket-card ul {
    list-style: none;
    color: var(--text-gray);
    line-height: 1.8;
    padding-left: 0;
}

.ticket-card ul li::before {
    content: '✦';
    margin-right: 0.5rem;
    color: var(--gold-color);
}

.timeline-list {
    margin: 0.5rem 0 0;
    padding-left: 1rem;
    color: var(--text-gray);
}

.timeline-list li {
    list-style: disc;
    margin-bottom: 0.3rem;
}

.ticket-card .btn {
    align-self: flex-start;
}
}

.ticket-note {
    margin: 2rem auto 0;
    max-width: 640px;
    color: var(--text-gray);
    text-align: center;
}

.ticket-actions {
    margin: 2rem 0 0;
    text-align: center;
}

.ticket-actions .btn {
    min-width: 260px;
}

/* Experience Section */
.experience {
    padding: 6rem 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(196, 30, 58, 0.06) 0%, transparent 50%),
        var(--primary-color);
    position: relative;
    overflow: hidden;
}


.experience-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.experience-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.experience-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(255, 215, 0, 0.1);
}

.experience-image {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.experience-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.experience-card:hover .experience-image img {
    transform: scale(1.08);
}


.experience-info {
    padding: 1.5rem;
    text-align: center;
}

.experience-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold-color);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.experience-info p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .experience {
        padding: 4rem 0;
    }
    
    .experience-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .experience-info h3 {
        font-size: 1rem;
    }
    
    .experience-info p {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .experience-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
        margin: 3rem auto 0;
    }
    
    .experience-card {
        border-radius: 20px;
    }
    
    
    .experience-info {
        padding: 1.2rem;
    }
    
    .experience-info h3 {
        font-size: 1.1rem;
    }
    
    .experience-info p {
        font-size: 0.85rem;
    }
}

/* Gifts Section */
.gifts {
    padding: 5rem 0;
    background: var(--primary-color);
    position: relative;
}


.gifts-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.gift-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gift-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.gift-item img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1024px) {
    .gifts-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .gifts {
        padding: 4rem 0;
    }
    
    .gifts-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .gift-item {
        border-radius: 12px;
    }
}

/* Partners */
.partners {
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
    padding-bottom: 4rem;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.partners-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* 양쪽 페이드 효과 */
.partners-marquee::before,
.partners-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.partners-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.partners-marquee::after {
    right: 0;
    background: linear-gradient(-90deg, var(--primary-color), transparent);
}

.marquee-row {
    display: flex;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.marquee-row:last-child {
    margin-bottom: 0;
}

.marquee-track {
    display: flex;
    gap: 1.5rem;
    animation: marquee-scroll 40s linear infinite;
}

.marquee-left .marquee-track {
    animation-name: marquee-scroll-left;
}

.marquee-right .marquee-track {
    animation-name: marquee-scroll-right;
}

@keyframes marquee-scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-scroll-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.partner-item {
    flex-shrink: 0;
    background: transparent;
    border-radius: 12px;
    padding: 0;
    border: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.partner-item:hover {
    transform: translateY(-5px);
}

.partner-item img {
    display: block;
    height: 200px;
    width: auto;
    filter: brightness(0.85) grayscale(0.2);
    transition: all 0.3s ease;
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
}

.partner-item:hover img {
    filter: brightness(1) grayscale(0);
    transform: scale(1.05);
}

/* 드래그 가능 표시 */
.marquee-row {
    cursor: grab;
    user-select: none;
    -webkit-user-drag: none;
}

.marquee-row:active {
    cursor: grabbing;
}

.marquee-row.dragging {
    cursor: grabbing;
}

.marquee-row.dragging .marquee-track {
    animation-play-state: paused !important;
}

/* 세 번째 줄 - 기본적으로 숨김 (PC) */
.marquee-row-mobile {
    display: none;
}

@media (max-width: 768px) {
    /* 모바일: 세 번째 줄 표시 */
    .marquee-row-mobile {
        display: flex;
    }

    .partner-item img {
        height: 140px;
    }

    .marquee-track {
        gap: 1rem;
        animation-duration: 20s; /* 더 빠르게 */
    }

    .marquee-row {
        margin-bottom: 1rem;
    }

    .partners-marquee::before,
    .partners-marquee::after {
        width: 60px;
    }
}

@media (max-width: 480px) {
    .partner-item img {
        height: 120px;
    }

    .marquee-track {
        gap: 0.8rem;
        animation-duration: 15s; /* 모바일에서 더 빠르게 */
    }

    .partners-marquee::before,
    .partners-marquee::after {
        width: 40px;
    }
}

/* Contact */
.contact {
    background: var(--secondary-color);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.brand-story {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    color: var(--text-gray);
}

.brand-story p + p {
    margin-top: 1.3rem;
}

.brand-story-logo {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.brand-story-logo img {
    max-width: 320px;
    width: 100%;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.brand-story-logo img:hover {
    opacity: 1;
}

.contact-cta {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.contact-cta h3 {
    font-size: 1.4rem;
    color: var(--text-light);
    margin: 0;
}

.contact-cta small {
    color: var(--text-gray);
}

.cta-label {
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-gray);
    margin: 0;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.cta-actions .btn {
    flex: 1;
    min-width: 180px;
    justify-content: center;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.contact-card {
    border-radius: 20px;
    padding: 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), var(--shadow-glow);
}

.contact-card h3 {
    color: var(--gold-color);
    margin-bottom: 0.6rem;
}

/* Footer */
.footer {
    background: #080b16;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top,
.footer-bottom {
    text-align: center;
    color: var(--text-gray);
}

.footer-brand {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.footer-brand-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.footer-brand-logos a {
    display: inline-flex;
}

.footer-brand-logos img {
    width: 180px;
    max-width: none;
    opacity: 0.9;
}

.footer-brand p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.footer-brand .powered {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-top: 0.4rem;
}

.footer-bottom a {
    color: var(--gold-color);
}

/* Powered by Moove */
.powered-by {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin: 1.5rem 0;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.powered-by:hover {
    border-color: rgba(0, 200, 180, 0.4);
    box-shadow: 0 0 20px rgba(0, 200, 180, 0.15);
}

.powered-by span {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-gray);
}

.powered-by a {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.powered-by img {
    height: 32px;
    width: auto;
    filter: brightness(0.95);
    transition: all 0.3s ease;
}

.powered-by:hover img {
    filter: brightness(1.1);
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-meta {
        justify-items: start;
        text-align: left;
    }

    .hero-meta div {
        text-align: left;
    }

    .hero-side {
        align-items: center;
    }

    .hero-info-box {
        width: 100%;
        max-width: 420px;
    }

    .reasons-layout {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .logo {
        gap: 0.35rem;
    }

    .logo-text {
        font-size: 1rem;
        letter-spacing: 0.08em;
    }
}

@media (max-width: 420px) {
    .logo {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo-text {
        font-size: 0.9rem;
        letter-spacing: 0.05em;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 1rem;
        background: rgba(5, 7, 14, 0.95);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0 1.5rem;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform-origin: top;
        transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    }

    .nav-links.open {
        max-height: 80vh;
        opacity: 1;
        padding: 1.5rem;
        overflow-y: auto;
    }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        width: 100%;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
    }

    /* 모바일 언어 드롭다운 */
    .lang-dropdown {
        width: 100%;
        margin-top: 0.5rem;
    }

    .lang-current {
        width: 100%;
        justify-content: center;
    }

    .lang-menu {
        position: relative;
        top: 0;
        margin-top: 0.5rem;
        width: 100%;
        transform: none;
        background: rgba(255, 255, 255, 0.05);
    }

    .lang-dropdown.open .lang-menu {
        transform: none;
    }

    .hero {
        padding-top: 120px;
    }

    .countdown {
        grid-template-columns: repeat(2, minmax(80px, 1fr));
    }

    .about-grid,
    .ticket-grid {
        grid-template-columns: 1fr;
    }

    .ticket-card-unified {
        flex-direction: column;
        max-width: 100%;
    }

    .ticket-content {
        padding: 2rem 1.5rem;
    }

    .ticket-divider {
        width: calc(100% - 3rem);
        height: 1px;
        margin: 0 auto;
        align-self: center;
    }

    .ticket-divider::before {
        width: 100%;
        height: 1px;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        background: repeating-linear-gradient(
            to right,
            rgba(255, 255, 255, 0.3) 0,
            rgba(255, 255, 255, 0.3) 8px,
            transparent 8px,
            transparent 16px
        );
    }

    .ticket-pricing {
        padding: 2rem 1.5rem;
        flex-direction: row;
        justify-content: space-around;
        gap: 1.5rem;
        min-width: auto;
    }

    .ticket-card-unified::before,
    .ticket-card-unified::after {
        display: none;
    }
}

@media (max-width: 600px) {
    .ticket-content {
        padding: 1.5rem 1.25rem;
    }

    .ticket-pricing {
        padding: 1.5rem 1.25rem;
        flex-direction: column;
        gap: 1.5rem;
    }

    .ticket-card-unified .ticket-price {
        font-size: 1.75rem;
    }

    .ticket-divider {
        width: calc(100% - 2.5rem);
    }
}

