/* Main Page Styles - Dark Mode */
.sk-main {
    padding-top: 10px;
    background: transparent !important;
    /* Ensure no background blocks stars */
}

/* Hero Wrapper for Animated Border */
.sk-hero-wrap {
    margin: 20px 20px 40px 20px;
    /* Top, Right, Bottom, Left margins */
    position: relative;
    border-radius: 22px;
    /* Slightly larger than inner 20px */
    padding: 2px;
    /* Border thickness */
    /* background: #1e1e1e; */
    background: rgba(30, 30, 30, 0.4);
    backdrop-filter: blur(10px);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Shooting Star Animation Layer */
.sk-hero-wrap::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg,
            transparent 0deg,
            transparent 90deg,
            #ffffff 130deg,
            /* White Star Tail */
            transparent 170deg,
            transparent 360deg);
    animation: rotateBorder 3s linear infinite;
    z-index: 0;
}

/* Inner overlay to mask the center (creating the border effect) */
.sk-hero-wrap::after {
    content: '';
    position: absolute;
    inset: 2px;
    /* Matches padding */
    /* background: #1e1e1e; */
    background: rgba(30, 30, 30, 0.85);
    /* Slightly darker inner for contrast */
    border-radius: 20px;
    z-index: 0;
}

@keyframes rotateBorder {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Hero Slider Section (Inner content) */
.sk-hero {
    margin: 0;
    /* Handled by wrapper */
    border-radius: 20px;
    /* Inner radius matching after pseudo */
    height: 280px;
    /* background: transparent; Let wrapper background show through if needed, but here we cover it */
    position: relative;
    z-index: 1;
    /* Sit on top of ::after mask */
    overflow: hidden;
}

/* Swiper Slider Customization */
.swiper-wrapper {
    height: 100% !important;
}

.swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

.swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Pagination Customization - Premium Timer Style */
.swiper-pagination {
    bottom: 25px !important;
    /* Slightly raised */
    z-index: 10;
    display: flex;
    justify-content: center;
    gap: 8px;
    /* Spacing between dots */
}

.swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: #fff !important;
    opacity: 0.3 !important;
    /* Inactive: very subtle */
    transition: all 0.3s ease;
    border-radius: 4px;
    /* Soft square/circle hybrid */
    margin: 0 !important;
    /* Reset swiper default margin */
}

/* Active State: Timer Bar */
.swiper-pagination-bullet-active {
    width: 36px;
    /* Expand to pill */
    opacity: 1 !important;
    background: rgba(255, 255, 255, 0.2) !important;
    /* Translucent track */
    position: relative;
    overflow: hidden;
    /* Clip the progress bar */
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    /* Subtle outer glow */
}

/* Progress Animation Bar */
.swiper-pagination-bullet-active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* Full width, scaling handled by transform */
    background: #fff;
    /* Solid white progress */
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    /* Inner light glow */
    border-radius: 4px;
    transform-origin: left;
    /* Grow from left */
    transform: scaleX(0);
    will-change: transform;
    /* Hardware Acceleration */
    animation: slideProgress 4s linear forwards;
    /* Matches autoplay delay exactly */
}

@keyframes slideProgress {
    0% {
        transform: scaleX(0);
    }

    100% {
        transform: scaleX(1);
    }
}

.slide-content {
    position: relative;
    z-index: 2;
}

.slide-title {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.slide-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Menu Grid */
.sk-grid-menu {
    padding: 0 20px;
    margin-bottom: 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 0 5px;
}

.section-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.section-header .more {
    font-size: 12px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Twinkle Star Animation for Slider - High Def Cosmic Dust */
.sk-twinkle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Layer 1: Dense, tiny, sharp stars (30+ points) */
    background-image:
        radial-gradient(1px 1px at 5% 12%, #fff, transparent),
        radial-gradient(1px 1px at 15% 75%, #fff, transparent),
        radial-gradient(1.5px 1.5px at 25% 10%, #fff, transparent),
        radial-gradient(1px 1px at 32% 45%, #fff, transparent),
        radial-gradient(1px 1px at 8% 88%, #fff, transparent),
        radial-gradient(0.8px 0.8px at 45% 22%, #fff, transparent),
        radial-gradient(1px 1px at 55% 85%, #fff, transparent),
        radial-gradient(1.2px 1.2px at 62% 15%, #fff, transparent),
        radial-gradient(1px 1px at 75% 65%, #fff, transparent),
        radial-gradient(1px 1px at 85% 25%, #fff, transparent),
        radial-gradient(1.5px 1.5px at 92% 82%, #fff, transparent),
        radial-gradient(0.8px 0.8px at 12% 55%, #fff, transparent),
        radial-gradient(1px 1px at 38% 92%, #fff, transparent),
        radial-gradient(1px 1px at 68% 5%, #fff, transparent),
        radial-gradient(1px 1px at 95% 45%, #fff, transparent),
        radial-gradient(1px 1px at 22% 35%, #fff, transparent),
        radial-gradient(1px 1px at 50% 50%, #fff, transparent),
        radial-gradient(0.8px 0.8px at 72% 38%, #fff, transparent);
    background-size: 900px 900px;
    /* Large non-repeating area */
    opacity: 0;
    z-index: 2;
    pointer-events: none;
    animation: twinkleAnim 3.5s ease-in-out infinite alternate;
}

/* Layer 2: Offset timing, even more accumulation */
.sk-twinkle-overlay.layer2 {
    background-image:
        radial-gradient(1px 1px at 3% 5%, #fff, transparent),
        radial-gradient(1.2px 1.2px at 97% 95%, #fff, transparent),
        radial-gradient(0.8px 0.8px at 42% 12%, #fff, transparent),
        radial-gradient(1px 1px at 12% 82%, #fff, transparent),
        radial-gradient(1px 1px at 65% 32%, #fff, transparent),
        radial-gradient(1.5px 1.5px at 82% 8%, #fff, transparent),
        radial-gradient(1px 1px at 28% 68%, #fff, transparent),
        radial-gradient(1px 1px at 58% 75%, #fff, transparent),
        radial-gradient(0.8px 0.8px at 92% 42%, #fff, transparent),
        radial-gradient(1px 1px at 7% 42%, #fff, transparent),
        radial-gradient(1px 1px at 35% 25%, #fff, transparent),
        radial-gradient(1.2px 1.2px at 75% 95%, #fff, transparent),
        radial-gradient(1px 1px at 52% 58%, #fff, transparent),
        radial-gradient(1px 1px at 88% 52%, #fff, transparent),
        radial-gradient(0.8px 0.8px at 18% 18%, #fff, transparent),
        radial-gradient(1px 1px at 68% 88%, #fff, transparent);
    background-size: 700px 700px;
    animation: twinkleAnim 5s ease-in-out infinite alternate-reverse;
}

@keyframes twinkleAnim {
    0% {
        opacity: 0.1;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@400;700;900&display=swap');

/* Menu Grid Section */
.sk-grid-menu {
    padding: 0 20px;
    margin-bottom: 50px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 5px;
}

.section-header h3 {
    font-family: 'Noto Serif KR', serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(to right, #000000, #000000);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 2x2 Grid Layout */
.menu-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

/* Grid Card Styling */
.grid-card {
    position: relative;
    aspect-ratio: 1 / 1.1;
    /* Slightly taller than square for elegance */
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.grid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7), 0 0 15px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Background Image with Zoom Effect */
.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    z-index: 0;
}

.grid-card:hover .card-bg {
    transform: scale(1.1);
}

/* Content Overlay */
.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 10%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    z-index: 2;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

/* Tags */
.card-tag {
    display: inline-block;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-family: 'Noto Sans KR', sans-serif;
    /* Clean premium sans */
}

/* Badge Variants */
.card-tag.tag-red {
    background: rgba(255, 50, 50, 0.25);
    border-color: rgba(255, 80, 80, 0.5);
    color: #fff;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.2);
}

.card-tag.tag-purple {
    background: rgba(124, 77, 255, 0.25);
    border-color: rgba(150, 100, 255, 0.5);
    color: #fff;
    box-shadow: 0 0 10px rgba(120, 50, 255, 0.2);
}

.card-tag.lock {
    background: rgba(100, 100, 100, 0.3);
    border-color: rgba(150, 150, 150, 0.3);
    color: #aaa;
}

/* Typography */
.card-title {
    font-family: 'Noto Serif KR', serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.card-desc {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 13px;
    color: #ccc;
    margin: 0;
    line-height: 1.4;
    font-weight: 400;
    opacity: 0.8;
}

/* Shine Effect */
.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-25deg);
    z-index: 3;
    transition: 0.5s;
    pointer-events: none;
}

.grid-card:hover .card-shine {
    left: 150%;
    transition: 0.6s ease-in-out;
}

/* Disabled State */
.grid-card.disabled {
    cursor: default;
}

.grid-card.disabled:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.1);
}

/* Banner */
.sk-banner {
    margin: 0 20px 40px;
    background: rgba(42, 42, 42, 0.7);
    backdrop-filter: blur(5px);
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #333;
}

.sk-banner .highlight {
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
}

.sk-banner .sub {
    color: #666;
    font-size: 13px;
}

/* Styles from previous file truncated for brevity but included completely on write */
/* =========================================
   Sub Page Premium Styles
   ========================================= */

/* Hero Section */
.sub-hero {
    position: relative;
    height: 320px;
    /* Tall header */
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    margin: 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(18, 18, 18, 0.8) 90%, #121212 100%);
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 5;
    margin-top: -20px;
}

.hero-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 50, 50, 0.2);
    border: 1px solid rgba(255, 50, 50, 0.4);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 12px;
    backdrop-filter: blur(5px);
    letter-spacing: 1px;
}

.hero-text h1 {
    font-family: 'Noto Serif KR', serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 10px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.hero-text p {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

/* Content Area */
.sub-content {
    position: relative;
    z-index: 5;
    padding: 0 20px;
    margin-top: -30px;
    /* Overlap effect */
}

/* Glass Card */
/* Glass Card -> Now White Card */
.glass-card {
    background: #ffffff;
    /* Opaque White */
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Light Border */
    border-radius: 24px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Soft Shadow */
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}



.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    /* Light Separator */
    padding-bottom: 15px;
}

.card-header i {
    font-size: 22px;
    color: #FF5A5A;
    /* Default Red Accent */
    margin-right: 12px;
}

.card-header h3 {
    font-family: 'Noto Serif KR', serif;
    font-size: 19px;
    font-weight: 700;
    color: #111;
    /* Dark Title */
    margin: 0;
}

.card-body {
    font-size: 15px;
    color: #444;
    /* Dark Text */
    line-height: 1.7;
    word-break: keep-all;
}

.card-body strong {
    color: #000;
    /* Black Emphasis */
    font-weight: 700;
    background: rgba(255, 215, 0, 0.15);
    /* Soft Gold Highlight */
    padding: 0 4px;
    border-radius: 4px;
}

/* Premium Check List */
.premium-check-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.premium-check-list li {
    display: flex;
    align-items: center;
    background: #f9f9f9;
    /* Light Item Background */
    padding: 15px;
    border-radius: 16px;
    border: 1px solid #eee;
}

.premium-check-list .icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 90, 90, 0.1);
    color: #FF5A5A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.premium-check-list .text {
    display: flex;
    flex-direction: column;
}

.premium-check-list .text strong {
    color: #222;
    /* Dark Heading */
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 3px;
}

.premium-check-list .text span {
    color: #888;
    font-size: 12px;
}

.premium-check-list .text span {
    color: #888;
    font-size: 12px;
}

/* Detail Images */
.detail-img-container {
    margin-top: 20px;
    /* Full Bleed: Counteract parent padding */
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);

    display: flex;
    flex-direction: column;
    gap: 0;
    /* Seamless vertical stacking for sliced images */
}

.detail-img-container img {
    width: 100%;
    display: block;
    border-radius: 0;
    /* Square edges for full bleed */
    box-shadow: none;
    margin-bottom: 0;
}

/* Placeholder for existing styles I'm obliterating */
.detail-header,
.detail-title,
.detail-subtitle,
.content-box,
.check-list,
.img-placeholder {
    display: none !important;
    /* Force hide old styles just in case structure lingers */
}