:root {
    --bg-dark: #0a0e17;
    --neon-mint: #00E5FF;
    --neon-cyan: #1DE9B6;
    --text-white: #FFFFFF;
    --text-gray: #a0aab2;
    --card-bg: rgba(255, 255, 255, 0.95);
    --border-glow: rgba(0, 229, 255, 0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Pretendard', sans-serif; }
html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}
body { background-color: var(--bg-dark); color: var(--text-white); -webkit-font-smoothing: antialiased; }

.page-wrapper {
    width: 100%;
    max-width: 600px; /* Mobile first / narrow event page style like the reference */
    margin: 0 auto;
    background: radial-gradient(circle at 50% 0%, #152030 0%, var(--bg-dark) 40%);
    position: relative;
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
}

.section { width: 100%; position: relative; overflow: hidden; padding: 60px 20px; display: flex; flex-direction: column; align-items: center; }
.container { width: 100%; position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; }

/* Glowing Elements */
.glow-text {
    font-family: 'Montserrat', sans-serif;
    color: var(--neon-mint);
    text-shadow: 0 0 10px var(--neon-mint), 0 0 20px var(--border-glow);
    font-weight: 900;
}

/* 1. Hero Section - Exact Match */
.hero-section { padding-top: 40px; padding-bottom: 50px; position: relative; background: linear-gradient(to bottom, #1a1a24 0%, transparent 100%); }
.bg-stars { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('https://www.transparenttextures.com/patterns/stardust.png'); opacity: 0.8; z-index: 1; mix-blend-mode: color-dodge; 
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%); mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.particles { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; pointer-events: none; overflow: hidden; 
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%); mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}
.particle { position: absolute; background-color: #fff; border-radius: 50%; animation: twinkle infinite ease-in-out; }
@keyframes twinkle { 0%, 100% { opacity: 0.2; } 50% { opacity: 1; box-shadow: 0 0 10px #fff; } }

.hero-top-bar { width: 100%; max-width: 500px; display: flex; justify-content: space-between; padding: 0 20px; position: relative; z-index: 3; margin-bottom: 20px; }
.all-day { font-size: 0.9rem; font-weight: 800; color: #fff; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.date-text { font-size: 0.9rem; font-weight: 800; color: var(--neon-cyan); }

.hero-container { position: relative; width: 100%; display: flex; flex-direction: column; align-items: center; z-index: 2; padding-top: 20px; }

/* Gold Ring Background */
.gold-ring {
    position: absolute; top: 15%; left: 50%; transform: translateX(-50%);
    width: 380px; height: 380px; border-radius: 50%;
    border: 2px solid rgba(230, 224, 204, 0.4);
    box-shadow: 0 0 20px rgba(230, 224, 204, 0.1), inset 0 0 20px rgba(230, 224, 204, 0.1);
    z-index: 0;
}

/* Title Group */
.title-group { position: relative; width: 100%; text-align: center; z-index: 3; margin-bottom: 20px; }
.crown-icon { position: absolute; top: -45px; left: 50%; transform: translateX(-50%); opacity: 0.8; }
.title-glow {
    font-family: 'VT323', monospace; /* Pixel font */
    font-size: 5.5rem; letter-spacing: -2px; line-height: 1;
    color: var(--neon-cyan);
    text-shadow: 3px 3px 0 #000, -1px -1px 0 #fff, 0 0 20px var(--neon-cyan);
    white-space: nowrap; transform: scaleY(1.2);
}

/* Character Wrap */
.hero-character-wrap { 
    position: relative; width: calc(100% + 40px); margin-left: -20px; margin-right: -20px; 
    display: flex; justify-content: center; z-index: 4; margin-top: -30px; 
}
.halo-pink {
    position: absolute; top: 0px; left: 50%; width: 180px; height: 45px;
    border: 5px solid #ff99cc; border-radius: 50%;
    transform: translateX(-50%) rotate(-5deg);
    box-shadow: 0 0 15px #ff99cc, inset 0 0 10px #ff99cc;
    animation: floatPink 3s ease-in-out infinite; z-index: 5;
}
.hero-char-img { width: 100%; max-width: none; margin: 0; display: block; z-index: 6; position: relative; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.6)); }

/* Moons Arc */
.moons-arc {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    width: 420px; height: 200px; border-bottom: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%; z-index: 5;
}
.moon { position: absolute; width: 16px; height: 16px; border-radius: 50%; background: #ccc; bottom: -8px; }
.m1 { left: 10%; background: radial-gradient(circle at left, #fff 50%, #333 50%); }
.m2 { left: 30%; background: radial-gradient(circle at left, #fff 70%, #333 30%); }
.m3 { left: 50%; transform: translateX(-50%); background: #fff; box-shadow: 0 0 10px #fff; }
.m4 { right: 30%; background: radial-gradient(circle at right, #fff 70%, #333 30%); }
.m5 { right: 10%; background: radial-gradient(circle at right, #fff 50%, #333 50%); }

/* Logo Group */
.logo-group { position: relative; z-index: 7; margin-top: -100px; display: flex; justify-content: center; align-items: center; width: 100%; height: 150px; }
.logo-orbit {
    position: absolute; width: 340px; height: 100px;
    border: 3px solid var(--neon-cyan); border-radius: 50%;
    transform: rotate(-8deg);
    box-shadow: 0 0 20px var(--neon-cyan), inset 0 0 10px var(--neon-cyan);
    z-index: 1;
}
.logo-text { 
    font-family: 'Montserrat', sans-serif; font-size: 5.5rem; font-weight: 900; 
    color: #fff; text-shadow: 0 10px 20px rgba(0,0,0,0.8), 0 0 30px var(--neon-cyan); 
    position: relative; z-index: 2; letter-spacing: -1px; 
}
.sparkle { position: absolute; top: 0; right: -20px; font-size: 1.5rem; color: #fff; text-shadow: 0 0 10px #fff; }

/* Subtitle Box */
.hero-subtitle { 
    margin-top: 10px; margin-bottom: 50px; padding: 12px 30px; z-index: 7;
    background: rgba(16, 40, 45, 0.8); border: 1px solid var(--neon-cyan);
    border-radius: 30px; font-size: 1.05rem; font-weight: 700; color: #fff;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.3); display: flex; align-items: center; gap: 10px;
}
.diamond { color: var(--neon-cyan); font-size: 0.8rem; }

/* 2. Intro Section */
.intro-section { padding-top: 80px; padding-bottom: 80px; }
.planet-bg {
    position: absolute; top: 30%; left: -50%; width: 200%; height: 800px;
    background: radial-gradient(ellipse at top, #112a32 0%, transparent 60%);
    border-top: 2px solid var(--neon-cyan);
    border-radius: 50%; box-shadow: 0 -20px 50px rgba(0, 229, 255, 0.2); z-index: 1;
}
.intro-titles { margin-bottom: -130px; z-index: 1; position: relative; }
.intro-titles h3 { font-size: 2.2rem; font-weight: 900; margin-bottom: 5px; color: var(--neon-cyan); letter-spacing: -1px; text-shadow: 0 0 20px rgba(0,229,255,0.4); }
.intro-titles h2 { font-size: 4rem; font-weight: 900; line-height: 1.15; color: #fff; text-shadow: 0 15px 30px rgba(0,0,0,0.9); letter-spacing: -2px; margin: 0; }

.intro-graphics { position: relative; width: 100%; display: flex; justify-content: center; align-items: center; margin-top: 0; z-index: 2; pointer-events: none; }
.intro-char-main { width: 85%; max-width: 420px; z-index: 2; filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8)); margin-bottom: -40px; }

.floating-box {
    position: absolute; background: rgba(10, 14, 23, 0.8); border: 1px solid var(--neon-cyan);
    padding: 8px 16px; border-radius: 8px; color: var(--neon-cyan); font-weight: 700; font-size: 0.9rem;
    backdrop-filter: blur(5px); z-index: 3; box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}
.fb-1 { top: 20%; left: 10%; animation: float2 4s ease-in-out infinite; }
.fb-2 { bottom: 30%; right: 5%; animation: float2 3.5s ease-in-out infinite reverse; }

/* 3. Schedule Section */
.schedule-section { padding: 60px 20px; }
.section-header { margin-bottom: 30px; }
.all-day-title-wrap { position: relative; display: inline-block; margin-bottom: 40px; }
.star-sparkle { position: absolute; top: -25px; left: 50%; transform: translateX(-50%); font-size: 1.5rem; color: #fff; text-shadow: 0 0 10px #fff; }
.sub-kor { position: absolute; top: -10px; right: 0; font-size: 0.75rem; font-weight: 800; color: #fff; }
.english-title { font-family: 'Montserrat', sans-serif; font-size: 4rem; font-weight: 900; color: #fff; text-shadow: 0 0 20px rgba(127, 255, 212, 0.6); margin: 0; line-height: 1; letter-spacing: -1px; }
.section-desc { font-size: 1.15rem; color: #e0e0e0; font-weight: 600; line-height: 1.6; }

.table-wrapper { width: 100%; max-width: 600px; margin: 0 auto; }
.table-legend { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; font-size: 0.9rem; color: #fff; font-weight: 800; justify-content: flex-start; }
.legend-title { font-size: 1.1rem; }
.simple-status { font-weight: 500; font-size: 0.9rem; color: #fff; }
.price-info { display: flex; align-items: center; gap: 6px; color: #ccc; font-weight: 600; margin-left: auto; font-size: 0.85rem; }

.table-container-box { border: 2px solid #7fffd4; border-radius: 8px; overflow: hidden; background: #111; }
.schedule-table { width: 100%; border-collapse: collapse; }
.schedule-table th { background: #7fffd4; color: #000; padding: 12px 5px; font-weight: 900; border-right: 1px solid rgba(0,0,0,0.15); font-size: 0.9rem; }
.schedule-table th:last-child { border-right: none; }
.schedule-table td { padding: 15px 5px; text-align: center; border-right: 1px solid rgba(255,255,255,0.15); border-bottom: 1px solid rgba(255,255,255,0.15); color: #fff; font-size: 0.85rem; }
.schedule-table td:last-child { border-right: none; }
.schedule-table tr:last-child td { border-bottom: none; }
.schedule-table td strong { display: block; font-weight: 800; margin-bottom: 4px; font-size: 0.95rem; }
.schedule-table td span { color: #aaa; font-size: 0.75rem; }
.schedule-table td.highlight { color: var(--neon-cyan); font-weight: 700; background: rgba(0, 229, 255, 0.05); }


/* Animations */
@keyframes floatPink { 0% { transform: translateX(-50%) rotate(-5deg) translateY(0px); } 50% { transform: translateX(-50%) rotate(-5deg) translateY(-10px); } 100% { transform: translateX(-50%) rotate(-5deg) translateY(0px); } }
@keyframes float2 { 0% { transform: translateY(0px); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0px); } }

