/* Global Typography - Poster Style */
body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-weight: 900;
    letter-spacing: 2px;
}

.site-content--container, .content--content{
    max-width: 100%;
}
/* Custom KPOP Christmas Styles */
.kpop-main-container {
    background: linear-gradient(135deg, #1a0033 0%, #0d1b2a 50%, #1b263b 100%);
    position: relative;
    overflow: hidden;
    padding: 0 0 60px 0; /* Add bottom padding for fixed banner */
}

/* Urgency banner - Fixed at bottom */
.urgency-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(45deg, #c41e3a, #c9ac8c);
    display: block;
    color: #ffffff;
    text-align: center;
    padding: 12px 20px;
    font-weight: bold;
    font-size: 1rem;
    animation: pulse 2s infinite;
    border-top: 3px solid #ffffff;
    z-index: 1000;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.3);
    line-height: 1.5;
    text-decoration: none;
}

.urgency-banner .fa {
    margin: 0 8px;
    font-size: 1.1rem;
    vertical-align: middle;
}
.urgency-banner:hover {
    background: linear-gradient(45deg, #c9ac8c, #c41e3a);
    color: #ffffff;
    text-decoration: none;
}

/* Hide mobile break and mobile icon on desktop */
.mobile-break {
    display: none;
}
.mobile-icon-end {
    display: none;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

/* Countdown timer */
.countdown-timer {
    background: none;
    color: #c9ac8c;
    padding: 20px 0;
    text-align: center;
    margin: 30px 0;
    font-weight: bold;
}

.timer-display {
    font-size: 1.5rem;
    margin: 10px 0;
}

/* Circular background pattern */
.kpop-main-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(255,255,255,0.1) 2px, transparent 2px),
        radial-gradient(circle at 90% 90%, rgba(255,255,255,0.1) 2px, transparent 2px),
        radial-gradient(circle at 30% 70%, rgba(255,255,255,0.05) 1px, transparent 1px),
        radial-gradient(circle at 70% 30%, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px, 40px 40px, 50px 50px;
    opacity: 0.4;
    z-index: 1;
}

.kpop-content {
    position: relative;
    padding-top: 200px;
    z-index: 2;
}

/* Hero Banner */
.kpop-hero-banner {
    border: 4px solid #c9ac8c;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    padding: 0px 30px 440px;
    margin-bottom: 0;
}

/* Canvas background */
.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Date & Location Header (poster style) */
.event-info-header {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 50px;
    z-index: 2;
    gap: 20px;
}

.event-date,
.event-location {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #ffffff;
}

.event-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.event-text {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(255, 255, 255, 0.5);
    line-height: 1.2;
}

/* Snowflakes animation */
.snowflake {
    position: absolute;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    animation: fall linear infinite;
    pointer-events: none;
}

@keyframes fall {
    0% { top: -10%; opacity: 1; }
    100% { top: 100%; opacity: 0.3; }
}

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

/* Showtime logo section */
.showtime-logo-section {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 40px 20px;
    margin: 0 auto;
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 5;
}

/* K-pop trio image - positioned at bottom */
.trio-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    pointer-events: none;
}

.trio-image {
    max-width: 700px;
    width: 80%;
    margin: 0 auto;
    display: block;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

/* Stage floor effect */
.stage-floor {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(139, 92, 246, 0.3) 30%,
        rgba(236, 72, 153, 0.4) 70%,
        rgba(236, 72, 153, 0.6) 100%
    );
    z-index: 1;
}

/* Stage edge glow */
.stage-edge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(
        90deg,
        rgba(236, 72, 153, 0.8),
        rgba(168, 85, 247, 0.8),
        rgba(34, 211, 238, 0.8),
        rgba(236, 72, 153, 0.8)
    );
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.8);
    z-index: 3;
}

/* Christmas trees on sides */
.christmas-tree-left,
.christmas-tree-right {
    position: absolute;
    bottom: 100px;
    z-index: 2;
    pointer-events: none;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.christmas-tree-left {
    left: 2%;
    height: 40%;
    max-height: 400px;
}

.christmas-tree-right {
    right: 2%;
    height: 40%;
    max-height: 400px;
    transform: scaleX(-1);
}

.showtime-logo {
    margin: 0 auto 30px;
    width: 250px;
    max-width: 100%;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
}

.showtime-logo img {
    width: 100%;
    height: 100%;
}

.showtime-subtitle {
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.presents-text {
    display: none;
}

.main-title-box {
    margin-top: 20px;
    margin-bottom: 40px;
}

.main-title-kpop {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 8px;
    line-height: 1;
    color: #ffffff;
    text-shadow: 
        0 0 20px rgba(236, 72, 153, 0.7),
        0 0 40px rgba(236, 72, 153, 0.5),
        0 0 60px rgba(236, 72, 153, 0.3);
    border: 5px solid #ec4899;
    box-shadow: 
        0 0 15px rgba(236, 72, 153, 0.5),
        0 0 30px rgba(236, 72, 153, 0.3),
        inset 0 0 15px rgba(236, 72, 153, 0.2);
    display: inline-block;
    padding: 15px 50px;
    margin-bottom: 0;
    background: rgba(236, 72, 153, 0.1);
    font-family: 'Impact', 'Arial Black', sans-serif;
    text-transform: uppercase;
}

.main-title-christmas {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 10px;
    line-height: 1.2;
    margin-top: -5px;
    color: #ffffff;
    text-shadow: 
        2px 2px 0px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 255, 255, 0.8),
        0 0 40px rgba(255, 255, 255, 0.5);
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
}
#FloatingIcons{
    display: none !important;
}
/* Content sections */
.content-section {
    background: none;
    padding: 0px 30px;
    height: 100%;
    color: #ffffff;
    line-height: 1.6;
    position: relative;
    z-index: 10;
}

.days-banner {
    background: none;
    color: #ffffff;
    text-align: left;
    padding: 0;
    margin-bottom: 30px;
}

.days-banner h2 {
    margin: 0 0 20px 0;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-align: center;
    color: #ffffff;
    font-family: 'Lato', sans-serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.days-banner p {
    margin: 15px 0 0 0;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    text-align: center;
    letter-spacing: 2px;
    font-style: italic;
}

.musical-intro {
    background: rgba(201, 172, 140, 0.08);
    border: 1px solid rgba(201, 172, 140, 0.3);
    border-radius: 4px;
    padding: 25px 30px;
    margin: 0 0 30px 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.musical-intro-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c9ac8c;
    margin: 0 0 10px 0;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

.musical-intro-songs {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.6;
    font-style: italic;
}

.whats-included-title {
    color: #c9ac8c;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: left;
    background: none;
    padding: 0;
    margin: 60px 0 40px 0;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 6px;
    font-family: 'Lato', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(201, 172, 140, 0.3);
    padding-bottom: 15px;
}

.included-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.included-list li {
    margin-bottom: 20px;
    padding-left: 0;
    position: relative;
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.included-list li::before {
    content: none;
}

.limited-spaces {
    background: rgba(201, 172, 140, 0.08);
    color: #ffffff;
    text-align: center;
    padding: 30px 40px;
    font-weight: 400;
    border: 1px solid rgba(201, 172, 140, 0.3);
    border-radius: 4px;
    margin: 30px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.limited-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    letter-spacing: 3px;
    line-height: 1.4;
    text-transform: uppercase;
    font-weight: 900;
    font-family: 'Lato', sans-serif;
    color: #c9ac8c;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.reserve-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: none;
    margin: 0;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

.book-now-btn {
    background: #c9ac8c;
    color: #1a0033;
    padding: 16px 48px;
    border-radius: 0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #c9ac8c;
    display: inline-block;
    position: relative;
    font-family: 'Lato', sans-serif;
    overflow: hidden;
}

.book-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.book-now-btn:hover {
    background: transparent;
    color: #c9ac8c;
    border-color: #c9ac8c;
}

.book-now-btn:hover::before {
    left: 100%;
}

.book-now-btn:active {
    transform: scale(0.98);
}

/* Benefits boxes */
/* Benefits Grid Layout */
.benefits-grid {
    display: block;
    margin-top: 30px;
}

.benefit-box {
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    padding: 30px 25px;
    font-weight: 400;
    text-align: left;
    font-size: 1rem;
    line-height: 1.8;
    border-left: 2px solid rgba(201, 172, 140, 0.4);
    border-radius: 0;
    transition: all 0.3s ease;
    box-shadow: none;
    text-shadow: none;
    position: relative;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.benefit-box:hover {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: #c9ac8c;
    padding-left: 30px;
}

.benefit-icon {
    display: block !important;
    font-size: 1.5rem;
    flex-shrink: 0;
    opacity: 0.8;
    line-height: 1;
    padding-top: 3px;
}

.benefit-text {
    font-size: 1rem;
    line-height: 1.8;
    flex: 1;
}



@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Sidebar sections - refined and clean */
.sidebar-section {
    margin-bottom: 40px;
    color: #ffffff;
    position: relative;
    z-index: 10;
}

.date-box {
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    padding: 35px 30px;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 0;
    border: 1px solid rgba(201, 172, 140, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.date-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
    letter-spacing: 4px;
    color: #c9ac8c;
    text-transform: uppercase;
    font-family: 'Lato', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.date-time {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
}

.date-time i {
    color: #c9ac8c;
    margin-right: 10px;
    opacity: 0.8;
}

.date-location {
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.5px;
}

.date-location i {
    color: #c9ac8c;
    margin-right: 10px;
    opacity: 0.8;
}

.pricing-box {
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    padding: 35px 30px;
    border-radius: 0;
    text-align: left;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(201, 172, 140, 0.2);
}

.pricing-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #c9ac8c;
    text-align: center;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: 'Lato', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(201, 172, 140, 0.3);
    padding-bottom: 15px;
}

.price-main {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #c9ac8c;
    text-align: center;
    background: rgba(201, 172, 140, 0.08);
    padding: 20px;
    border-radius: 0;
    border: 1px solid rgba(201, 172, 140, 0.3);
    box-shadow: none;
    text-shadow: none;
    font-family: 'Lato', sans-serif;
    letter-spacing: 2px;
}

.price-main span:first-child {
    display: inline-block;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    margin-right: 15px;
}

.price-old {
    text-decoration: line-through;
    opacity: 0.6;
    font-size: 1.2rem;
    margin-right: 15px;
}

.price-single small {
    opacity: 0.7;
    font-size: 0.85rem;
    font-style: italic;
}

.date-location-address {
    font-size: 0.95rem;
    opacity: 0.9;
}

.main-content-grid {
    margin-bottom: 30px;
    margin-top: 70px;
    position: relative;
    z-index: 10;
}

.text-center p {
    margin-top: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.benefits-section {
    margin-bottom: 30px;
}

.price-single {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    line-height: 1.8;
    letter-spacing: 0.5px;
}

.sibling-rates {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 400;
    line-height: 1.6;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0;
    border-top: 1px solid rgba(201, 172, 140, 0.2);
    border-bottom: 1px solid rgba(201, 172, 140, 0.2);
    letter-spacing: 0.5px;
}

.price-warning {
    background: rgba(201, 172, 140, 0.1);
    color: #c9ac8c;
    padding: 15px;
    border-radius: 0;
    font-size: 0.95rem;
    border: 1px solid rgba(201, 172, 140, 0.3);
    margin-top: 25px;
    text-align: center;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.price-warning .fa {
    margin-right: 8px;
    font-size: 1rem;
}

.social-box {
    background: none;
    padding: 0;
    text-align: center;
}

.social-title {
    color: #c9ac8c;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Lato', sans-serif;
}

.social-link {
    display: block;
    margin-bottom: 12px;
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #c9ac8c;
}

.social-follow {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-top: 15px;
    font-style: italic;
    letter-spacing: 0.5px;
}

.instagram { color: rgba(255, 255, 255, 0.9); }
.tiktok { color: rgba(255, 255, 255, 0.9); }

.social-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 15px;
}

/* Responsive adjustments */
@media screen and (max-width: 640px) {
    .kpop-content{
        padding-top: 100px;
    }
    /* Urgency banner - better mobile text handling */
    .urgency-banner {
        font-size: 0.85rem;
        padding: 12px 10px;
        letter-spacing: 0.3px;
        line-height: 1.5;
        word-spacing: 2px;
        border-top-width: 2px;
    }
    .urgency-banner .fa {
        font-size: 1rem;
        margin: 0 5px;
        display: inline-block;
        vertical-align: middle;
    }
    
    /* Show mobile break and mobile icon, hide only desktop end icon */
    .mobile-break {
        display: inline !important;
    }
    .urgency-banner .desktop-icon-end {
        display: none !important;
    }
    .urgency-banner .mobile-icon-end {
        display: inline-block !important;
    }
    
    /* Hero banner - improved mobile spacing */
    .kpop-hero-banner {
        padding: 70px 15px 230px !important;
        margin-bottom: 0 !important;
        border-width: 2px;
        border-radius: 8px;
    }
    
    /* Main titles - more compact on mobile */
    .showtime-title { 
        font-size: 2rem; 
    }
    .main-title-kpop { 
        font-size: 2.2rem; 
        letter-spacing: 3px;
        padding: 10px 25px;
        border-width: 3px;
        margin-bottom: 15px;
    }
    .main-title-christmas { 
        font-size: 1.6rem; 
        letter-spacing: 3px;
        margin-bottom: 20px;
    }
    
    /* Logo - smaller for mobile */
    .showtime-logo {
        width: 140px;
        margin-bottom: 20px;
    }
    .showtime-logo-section {
        padding: 15px;
    }
    
    /* Event header - stack vertically */
    .event-info-header {
        top: 15px;
        padding: 0 15px;
        gap: 12px;
    }
    .event-icon {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }
    .event-text {
        font-size: 0.9rem;
        letter-spacing: 1px;
        line-height: 1.3;
    }
    
    /* Trio and stage - adjust for mobile */
    .trio-image {
        width: 95%;
        max-width: 500px;
    }
    .stage-floor {
        height: 80px;
    }
    .stage-edge {
        height: 5px;
    }
    
    /* Christmas trees - smaller on mobile */
    .christmas-tree-left,
    .christmas-tree-right {
        height: 25%;
        max-height: 200px;
        bottom: 80px;
    }
    .christmas-tree-left {
        left: 1%;
    }
    .christmas-tree-right {
        right: 1%;
    }
    
    /* Content section - adjust top spacing */
    .grid-x.grid-padding-x {
        margin-top: 30px !important;
    }
    
    /* Content padding */
    .content-section {
        padding: 0 15px;
    }
    
            /* Days banner - mobile friendly */
            .days-banner {
                margin-bottom: 25px;
                padding: 0 10px;
            }
            .days-banner h2 {
                font-size: 2rem;
                letter-spacing: 1.5px;
                margin-bottom: 12px;
            }
            .days-banner p {
                font-size: 0.95rem;
                letter-spacing: 1px;
            }
            
            /* Musical intro - mobile */
            .musical-intro {
                padding: 18px 15px;
                margin: 0 0 20px 0;
            }
            .musical-intro-title {
                font-size: 1.2rem;
                letter-spacing: 1.5px;
                margin-bottom: 8px;
            }
            .musical-intro-songs {
                font-size: 0.9rem;
                letter-spacing: 0.5px;
            }
    
    /* Limited spaces - more compact */
    .limited-spaces {
        padding: 20px 20px;
        margin: 20px 0;
    }
    .limited-title {
        font-size: 1.3rem;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }
    .reserve-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Book now button - better mobile sizing */
    .book-now-btn { 
        font-size: 1.1rem; 
        padding: 16px 32px;
        letter-spacing: 1.5px;
        width: 100%;
        max-width: 100%;
        display: block;
    }
    
    /* Button confirmation text */
    .text-center p {
        font-size: 0.75rem !important;
        line-height: 1.5 !important;
        margin-top: 8px !important;
        padding: 0 10px;
    }
    .text-center p .fa {
        font-size: 0.7rem;
    }
    
    /* Benefits grid - stack on mobile */
    .whats-included-title {
        font-size: 1.4rem;
        letter-spacing: 2px;
        margin: 30px 0 20px 0;
        padding-bottom: 10px;
    }
    .benefits-grid {
        display: block;
        margin-top: 15px;
    }
    .benefit-box {
        padding: 20px 15px;
        font-size: 0.9rem;
        margin-bottom: 15px;
        border-left-width: 3px;
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }
    .benefit-box:hover {
        padding-left: 15px;
    }
    .benefit-icon {
        font-size: 2rem;
        margin-right: 0;
        margin-bottom: 0;
        flex-shrink: 0;
        line-height: 1;
        padding-top: 2px;
    }
    .benefit-text {
        font-size: 1rem;
        line-height: 1.6;
        flex: 1;
    }
    
    /* Sidebar sections - mobile optimization */
    .sidebar-section {
        margin-bottom: 30px;
    }
    
    /* Date box */
    .date-title { 
        font-size: 1.3rem;
        letter-spacing: 1.5px;
        margin-bottom: 15px;
    }
    .date-box {
        padding: 18px 15px;
    }
    .date-time,
    .date-location {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .date-time .fa,
    .date-location .fa {
        margin-right: 8px;
    }
    
    /* Pricing box */
    .pricing-box {
        padding: 20px 15px;
    }
    .pricing-title {
        font-size: 1.4rem;
        letter-spacing: 1.5px;
        margin-bottom: 15px;
    }
    .price-main {
        font-size: 1.4rem;
        padding: 15px;
        margin-bottom: 15px;
    }
    .price-main span:first-child {
        font-size: 1rem;
        margin-right: 10px;
    }
    .price-single {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    .sibling-rates {
        font-size: 0.9rem;
        padding: 12px;
        margin-bottom: 15px;
    }
    .price-warning {
        font-size: 0.85rem;
        padding: 12px;
        letter-spacing: 0.3px;
    }
    .price-warning .fa {
        margin-right: 6px;
        font-size: 0.9rem;
    }
    
    /* Social box */
    .social-box {
        padding: 0;
    }
    .social-link {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    .social-link .fa {
        margin-right: 8px;
    }
    .social-follow {
        font-size: 0.8rem;
        margin-top: 12px;
    }
    
    /* Bottom padding for fixed banner */
    .kpop-main-container {
        padding-bottom: 70px;
    }
}

/* Extra small screens (iPhone SE, etc) */
@media screen and (max-width: 375px) {
    .urgency-banner {
        font-size: 0.85rem;
        padding: 10px 8px;
        line-height: 1.4;
        letter-spacing: 0.2px;
    }
    .urgency-banner .fa {
        font-size: 0.85rem;
        margin: 0 4px;
    }
    .main-title-kpop {
        font-size: 1.8rem;
        padding: 8px 20px;
        letter-spacing: 2px;
    }
    .main-title-christmas {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }
    .event-text {
        font-size: 0.75rem;
    }
            .days-banner h2 {
                font-size: 1.4rem;
            }
            .musical-intro {
                padding: 15px 12px;
                margin: 0 0 18px 0;
            }
            .musical-intro-title {
                font-size: 1.1rem;
                letter-spacing: 1px;
                margin-bottom: 6px;
            }
            .musical-intro-songs {
                font-size: 0.85rem;
                letter-spacing: 0.3px;
            }
            .limited-title {
                font-size: 1.1rem;
            }
    .book-now-btn {
        font-size: 1rem;
        padding: 14px 28px;
    }
    .whats-included-title {
        font-size: 1.2rem;
        letter-spacing: 1.5px;
        margin: 25px 0 15px 0;
    }
    .benefit-box {
        padding: 16px 12px;
        gap: 10px;
        margin-bottom: 12px;
    }
    .benefit-icon {
        font-size: 1.6rem;
    }
    .benefit-text {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    .christmas-tree-left,
    .christmas-tree-right {
        height: 20%;
        max-height: 150px;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 641px) and (max-width: 1024px) {
    /* Hero banner */
    .kpop-hero-banner {
        padding: 80px 40px 100px !important;
    }
    
    /* Titles */
    .main-title-kpop {
        font-size: 3.5rem;
        padding: 15px 40px;
    }
    .main-title-christmas {
        font-size: 2.8rem;
    }
    
    /* Event header */
    .event-info-header {
        padding: 0 40px;
    }
    
    /* Benefits */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .benefit-box {
        padding: 22px;
    }
    
    /* Content sections */
    .content-section {
        padding: 0 25px;
    }
    
    /* Sidebar */
    .date-box,
    .pricing-box {
        padding: 25px 20px;
    }
    
    /* Button */
    .book-now-btn {
        font-size: 1.4rem;
        padding: 20px 45px;
    }
    
    /* Christmas trees */
    .christmas-tree-left,
    .christmas-tree-right {
        height: 35%;
        max-height: 300px;
    }
}

/* Large tablets/small desktops */
@media screen and (min-width: 1025px) and (max-width: 1280px) {
    .kpop-hero-banner {
        padding: 90px 50px 110px !important;
    }
    .main-title-kpop {
        font-size: 4.5rem;
    }
    .main-title-christmas {
        font-size: 3.5rem;
    }
}