/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    /* background-color: #1a1a1a; */
    /* background-color: #030066; */
    background-color: #202020;
    color: #ffffff;
    line-height: 1.6;
}
.content-banner-bottom{
    display: flex;
    flex-wrap: wrap;
    margin-top: 3rem;
    gap: 1rem;
}
.content-banner-bottom img{
    width: calc(50% - 0.5rem);
    aspect-ratio: 100 / 15;
    object-fit: cover;
    margin-bottom: 0;
    cursor: pointer;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-banner-bottom img:hover{
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

.related-articles-section {
    margin-top: 4rem;
    padding-bottom: 1rem;
}

.related-articles-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
}

.related-articles-swiper {
    position: relative;
    overflow: hidden;
    padding-bottom: 3rem;
}

.related-article-card {
    background: rgba(30, 30, 30, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.related-article-image {
    display: block;
    overflow: hidden;
}

.related-article-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 320 / 220;
    object-fit: cover;
    display: block;
}

.related-article-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-article-headline {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    color: #ffffff;
}

.related-article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.article-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.6rem;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-tag:hover {
    background: rgba(251, 176, 59, 0.2);
    border-color: rgba(251, 176, 59, 0.45);
    color: #ffffff;
}

.related-articles-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: -1.5rem;
}

.related-articles-nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.related-articles-nav .nav-icon {
    font-size: 1rem;
    line-height: 1;
}

.related-articles-nav:hover {
    border-color: rgba(251, 176, 59, 0.6);
    background: rgba(251, 176, 59, 0.25);
    color: #fff;
    transform: translateY(-2px);
}

.related-articles-nav.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.related-articles-pagination {
    bottom: 0 !important;
}

.related-articles-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.related-articles-pagination .swiper-pagination-bullet-active {
    background: #FBB03B;
}
.content-banner .banner-image{
    margin-bottom: 0;
    max-height: unset;
}
input[type="email"],
input[type="tel"]{
    margin-bottom: 0;
}
.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.banner-image {
    width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

.banner-controls {
    position: absolute;
    top: 1rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dont-show-today {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
    font-size: 0.8rem;
    cursor: pointer;
    user-select: none;
}

.dont-show-today input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 16px;
    height: 16px;
    border: 2px solid #ccc;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.dont-show-today input[type="checkbox"]:checked + .checkmark {
    background: #FBB03B;
    border-color: #FBB03B;
}

.dont-show-today input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.banner-close {
    background: none;
    border: none;
    color: #ccc;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.banner-close:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

/* Header Styles */
.header {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

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

.logo {
    font-weight: bold;
    width: 200px;
    cursor: pointer;

}
.logo img{ 
    width: 100%;
    object-fit: contain;
    display: block;
}

.logo-red {
    color: #FBB03B;
}

.logo-white {
    color: #ffffff;
}

.logo-image {
    height: 40px;
    width: auto;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
    position: relative;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link[href="#"] {
    position: relative;
}

.nav-link:hover {
    color: #FBB03B;
}

.search-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    font-size: inherit;
    font-family: inherit;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

.search-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.search-icon {
    width: 16px;
    height: 16px;
    color: currentColor;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang {
    color: #ccc;
    font-size: 0.9rem;
}

.user-icons {
    display: flex;
    gap: 0.5rem;
    position: relative;
}

.user-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.user-icon svg {
    width: 18px;
    height: 18px;
}

.user-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* Language Selector Styles */
.language-selector {
    position: relative;
}

.language-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.language-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.globe-icon {
    width: 18px;
    height: 18px;
    color: #ffffff;
}

.current-lang {
    font-weight: 500;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #333;
    border: 1px solid #555;
    border-radius: 4px;
    min-width: 80px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    padding: 0.75rem 1rem;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 0.9rem;
    text-align: center;
}

.language-option:hover {
    background-color: #444;
}

.language-option:first-child {
    border-radius: 4px 4px 0 0;
}

.language-option:last-child {
    border-radius: 0 0 4px 4px;
}

/* User Dropdown Styles */
.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #333;
    border: 1px solid #555;
    border-radius: 4px;
    min-width: 100px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.user-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 0.75rem 1rem;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 0.9rem;
    text-align: center;
}

.dropdown-item:hover {
    background-color: #444;
}

/* Biz Dropdown Styles */
.biz-dropdown {
    position: absolute;
    top: 100%;
    left: calc(50% - 50px);
    background-color: #333;
    border: 1px solid #555;
    border-radius: 4px;
    min-width: 100px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;

}

.biz-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.biz-dropdown-item {
    padding: 0.75rem 1rem;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 0.9rem;
}

.biz-dropdown-item:hover {
    background-color: #444;
}

.dropdown-item:first-child {
    border-radius: 4px 4px 0 0;
}

.dropdown-item:last-child {
    border-radius: 0 0 4px 4px;
}

/* Search Dropdown Styles */
.search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-top: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.search-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 모바일에서 search-dropdown을 하단에 표시 */
@media (max-width: 1024px) {
    .search-dropdown {
        position: fixed;
        top: auto;
        bottom: unset; /* bottom_header 높이만큼 위로 */
        left: 0;
        right: 0;
        max-height: calc(100vh - 5.6rem);
        overflow-y: auto;
        z-index: 30; /* bottom_header(z-index: 21)보다 위에 표시 */
        border-top: 1px solid #333;
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .search-dropdown {
        max-height: calc(100vh - 4rem);
        z-index: 30;
    }
}

@media (max-width: 480px) {
    .search-dropdown {
        max-height: calc(100vh - 3.5rem);
        z-index: 30;
    }
    
    .search-container {
        padding: 1.5rem;
    }
    
    .search-input {
        padding: 0.8rem 0.8rem 0.8rem 2.5rem;
        font-size: 0.9rem;
    }
    
    .recommended-keywords h3 {
        font-size: 1rem;
    }
}

.search-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.search-input-container {
    position: relative;
    margin-bottom: 2rem;
}

.search-input-container .search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-input-container .search-icon svg {
    width: 20px;
    height: 20px;
}

.search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background-color: #333;
    border: 1px solid #555;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: #FBB03B;
}

.search-input::placeholder {
    color: #999;
}

.recommended-keywords h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.keyword-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.keyword-tag {
    background-color: #333;
    border: 1px solid #555;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.keyword-tag:hover {
    background-color: #FBB03B;
    border-color: #FBB03B;
    transform: translateY(-2px);
}

/* Swiper Styles */
.content-swiper {
    position: relative;
    padding: 0 50px;
}

.content-swiper .swiper-slide {
    height: auto;
}

.content-swiper .swiper-button-next,
.content-swiper .swiper-button-prev {
    color: #FBB03B;
    background: rgba(26, 26, 26, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-top: -20px;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.content-swiper .swiper-button-next:hover,
.content-swiper .swiper-button-prev:hover {
    background: rgba(251, 176, 59, 0.9);
    color: white;
    transform: scale(1.1);
}

.content-swiper .swiper-button-next:after,
.content-swiper .swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
}

.content-swiper .swiper-button-next {
    right: 0;
}

.content-swiper .swiper-button-prev {
    left: 0;
}

.content-swiper:hover .swiper-button-next,
.content-swiper:hover .swiper-button-prev {
    opacity: 1;
    visibility: visible;
}

/* Hide navigation buttons on mobile */
@media (max-width: 768px) {
    .content-swiper {
        padding: 0 20px;
    }
    
    .content-swiper .swiper-button-next,
    .content-swiper .swiper-button-prev {
        display: none;
    }
    
    .banner-swiper {
        padding: 0 20px;
    }
    
    .banner-swiper .swiper-button-next,
    .banner-swiper .swiper-button-prev {
        display: none;
    }
}

/* Hero Section */
.hero {
    padding: 3rem 0;
    position: relative;
}

/* 태블릿/모바일에서 hero 패딩 제거 (전체 화면 표시) */
@media (max-width: 1024px) {
    .hero {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 0;
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 2rem;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ccc;
}
.hero-text{display: none;}
.hero-video {
    position: relative;
}

.video-placeholder {
    width: 100%;
    /* height: 300px; */
    max-height: 300px;
    aspect-ratio: 440 / 300;
    background-color: #333;
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #555;
    overflow: hidden;
}

.hero-video-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.video-time {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

.hero-sidebar {
    position: relative;
    height: 300px;
}

.sidebar-swiper {
    height: 100%;
    width: 100%;
}

.sidebar-swiper .swiper-slide {
    height: auto;
}

.sidebar-item {
    background-color: #333;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
    border: 1px solid #555;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* 모바일/태블릿용 Hero Swiper - 기본적으로 숨김 */
.hero-mobile-swiper {
    display: none;
}

.hero-swiper-mobile {
    width: 100%;
    height: 100%;
}

.hero-slide-item {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, transparent 25%, transparent 65%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    color: #ffffff;
    pointer-events: none;
}

.hero-slide-text-top {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.5;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    align-self: flex-start;
    max-width: 85%;
    word-break: keep-all;
}

.hero-slide-text-bottom {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    align-self: flex-start;
    margin-top: auto;
    padding-bottom: 1rem;
    max-width: 90%;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    display: none;
}

/* Hero Swiper Pagination 스타일 */
.hero-swiper-mobile .swiper-pagination {
    bottom: 1.5rem;
    z-index: 10;
}

.hero-swiper-mobile .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.hero-swiper-mobile .swiper-pagination-bullet-active {
    background: #FBB03B;
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .hero-swiper-mobile .swiper-pagination {
        bottom: 1rem;
    }
    
    .hero-swiper-mobile .swiper-pagination-bullet {
        width: 6px;
        height: 6px;
        margin: 0 3px;
    }
    
    .hero-swiper-mobile .swiper-pagination-bullet-active {
        width: 20px;
    }
}

@media (max-width: 480px) {
    .hero-swiper-mobile .swiper-pagination {
        bottom: 0.8rem;
    }
    
    .hero-swiper-mobile .swiper-pagination-bullet {
        width: 5px;
        height: 5px;
        margin: 0 2px;
    }
    
    .hero-swiper-mobile .swiper-pagination-bullet-active {
        width: 18px;
    }
}

.sidebar-item:hover {
    background-color: #444;
    /* border-color: #FBB03B; */
    transform: scale(1.02);
}

.sidebar-item.active {
    background-color: #FBB03B;
    border-color: #FBB03B;
    color: white;
}

.sidebar-next,
.sidebar-prev {
    color: #FBB03B;
    background: rgba(26, 26, 26, 0.8);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-top: -15px;
    transition: all 0.3s ease;
}

.sidebar-next:after {
    content: '↓';
    font-size: 14px;
    font-weight: bold;
}

.sidebar-prev:after {
    content: '↑';
    font-size: 14px;
    font-weight: bold;
}

.sidebar-next {
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    right: auto;
}

.sidebar-prev {
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    bottom: auto;
    right: auto;
}

.sidebar-next:hover,
.sidebar-prev:hover {
    background: rgba(251, 176, 59, 0.9);
    color: white;
    transform: scale(1.1);
}

.hero-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.nav-arrow {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    pointer-events: all;
    transition: background-color 0.3s ease;
}

.nav-arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Banner Section */
.banner-section {
}

.banner-section .banner-swiper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;

}

.banner-swiper .swiper-slide {
    height: auto;
}

.banner-swiper .swiper-button-next,
.banner-swiper .swiper-button-prev {
    color: #FBB03B;
    background: rgba(26, 26, 26, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-top: -20px;
    transition: all 0.3s ease;
}

.banner-swiper .swiper-button-next:hover,
.banner-swiper .swiper-button-prev:hover {
    background: rgba(251, 176, 59, 0.9);
    color: white;
    transform: scale(1.1);
}

.banner-swiper .swiper-button-next:after,
.banner-swiper .swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
}

.banner-swiper .swiper-button-next {
    right: 0;
}

.banner-swiper .swiper-button-prev {
    left: 0;
}

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

.banner-image {
    width: 100%;
    aspect-ratio: 46 / 10;
    background-color: #333;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid #555;
    object-fit: cover;
    display: block;
}

.banner-item h3 {
    font-size: 1rem;
    color: #ccc;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    max-height: calc(1.4em * 2);
    height: calc(1.4em * 2);
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}


.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 1.5rem;
    font-weight: bold;
}

.more-link {
    color: #FBB03B;
    text-decoration: none;
    font-weight: 500;
    width: 60px;
    text-align: right;
}

.more-link:hover {
    text-decoration: underline;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.content-item {
    background-color: #222;
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
    border-radius: 8px;
}
.content-item img{
}

.content-item.video::after {
    content: '▶';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    z-index: 10;
    transition: all 0.3s ease;
}

.content-item.video:hover::after {
    background-color: rgba(251, 176, 59, 0.9);
    transform: scale(1.1);
}

.content-item:hover {
    transform: translateY(-5px);
    cursor: pointer;
}

.item-image {
    width: 100%;
    height: 200px;
    background-color: #333;
    border: 1px solid #555;

    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.content-item h3 {
    padding: 0.6rem;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    max-height: calc(1.4em * 2);
    height: calc(1.4em * 2);
}

/* Promotional Banners */
.promo-banners {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.promo-item {
    text-align: center;
    cursor: pointer;
}

.promo-image {
    width: 100%;
    aspect-ratio: 120 / 29;
    background-color: #333;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid #555;
    object-fit: cover;
    display: block;
}

.promo-item h3 {
    font-size: 1.1rem;
    color: #ccc;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    max-height: calc(1.4em * 2);
    height: calc(1.4em * 2);
}

/* Bottom Banners */
.bottom-banners {
    padding: 0 2rem;
    margin: 3rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
}

.bottom-banner {
    display: block;
    background-color: #222;
    padding: 0;
    border-radius: 8px;
    margin-bottom: 1rem;
    aspect-ratio: 12 / 1; /* PC 기본 비율 */
    position: relative;
    overflow: hidden;
}

.banner-content {
    flex: 1;
    z-index: 2;
    position: relative;
}

.banner-content h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #FBB03B;
}

.banner-content p {
    color: #ccc;
    font-size: 1rem;
    margin: 0;
}

/* PC용 이미지 (1025px 이상) */
.bottom-banner .banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 모바일용 이미지 (1024px 이하) - 기본적으로 숨김 */
.bottom-banner .mb-banner-image {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* bottom header */
#bottom_header {
    --bottom-nav-icon: 3rem;
    --bottom-nav-label: 1rem;
    --bottom-nav-gap: 0.45rem;
    display: none; /* 기본적으로 숨김 - 모바일에서만 표시 */
    height: calc(var(--bottom-nav-icon) + 2.6rem);
    width: 100%;
    background: rgba(18, 18, 24, 0.92);
    padding: 0.85rem clamp(1rem, 4vw, 1.8rem);
    z-index: 21;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 -12px 38px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(18px);
}
#bottom_header .dimmed {
    position: fixed;
    display: none;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 20;
}
#bottom_header.active .dimmed {
    display: block;
}
#bottom_header .tab-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
    z-index: 22;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
    gap: 0.4rem;
}
#bottom_header .tab-btns > li {
    flex: 1 1 0;
    text-align: center;
    list-style: none;
}
#bottom_header .tab-btns > li::marker {
    display: none;
    content: "";
}
.bottom-nav-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: var(--bottom-nav-gap);
    height: 100%;
    text-decoration: none;
    color: #b7bcc9;
    font-size: var(--bottom-nav-label);
    font-weight: 500;
    letter-spacing: -0.01em;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}
.bottom-nav-link:focus-visible {
    outline: 2px solid #FBB03B;
    outline-offset: 4px;
    border-radius: 24px;
}
.bottom-nav-icon {
    width: var(--bottom-nav-icon);
    height: var(--bottom-nav-icon);
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #c7ccd9;
    transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease, color 0.2s ease;
}
.bottom-nav-icon svg {
    width: 1.45rem;
    height: 1.45rem;
    fill: currentColor;
}
.bottom-nav-label {
    display: inline-block;
    line-height: 1;
    transition: color 0.2s ease, transform 0.2s ease;
}
#bottom_header .tab-btns > li.active .bottom-nav-icon {
    
}
#bottom_header .tab-btns > li.active .bottom-nav-label {
    color: #FFFFFF;
    font-weight: 600;
}
#bottom_header .tab-btns > li:not(.active) .bottom-nav-link:hover .bottom-nav-icon {
    
    background: linear-gradient(135deg, #FBB03B 0%, #FFD56B 100%);
    color: #1b1b1b;
    box-shadow: 0 10px 24px rgba(251, 176, 59, 0.35);
}
#bottom_header .depth2 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    bottom: calc(var(--bottom-nav-icon) + 1rem);
    background: rgba(23, 23, 27, 0.96);
    padding: 1.2rem;
    border-radius: 1rem 1rem 0 0;
    z-index: 25;
    display: none;
    list-style: none;
    margin: 0 auto;
    width: calc(100% - 3.2rem);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(22px);
}
#bottom_header .tab-btns > li.biz.active .depth2 {
    display: block !important;
}
#bottom_header .depth2 > li {
    list-style: none;
}
#bottom_header .depth2 > li + li {
    margin-top: 0.3rem;
}
#bottom_header .depth2 > li::marker {
    display: none;
    content: "";
}
#bottom_header .depth2 > li > a {
    display: block;
    width: 100%;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--grayDC);
    padding: 0.85rem 1rem;
    text-decoration: none;
    border-radius: 0.8rem;
    transition: background-color 0.2s ease, color 0.2s ease;
    cursor: pointer;
}
#bottom_header .depth2 > li > a:hover {
    background-color: rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
}


/* Footer */
.footer {
    background-color: #111;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-bottom: 1px solid #333;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FBB03B;
}

.footer-links .divider {
    color: #666;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-info {
    flex: 1;
}

.footer-info p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-left: 2rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.social-icon-img img{ width: 100%;height: 100%;}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.facebook {
    background-color: #1877f2;
}

.social-icon.blog {
    background-color: #00c73c;
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.to-top {
    position: fixed;
    bottom: 8rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 988;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.to-top:hover {
    background-color: #FBB03B;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.to-top svg {
    width: 20px;
    height: 20px;
    fill: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .banner-section .banner-swiper{
        padding: 0 ;
    }
    .main-content{
        padding: 0 1rem;
    }
    .banner-section{
        padding: 2rem 1rem;
    }
    .bottom-banners{
        padding: 0 1rem;
    }
    .content-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .nav{
        display: none;
    }
    
    .language-selector .current-lang {
        display: none; /* 모바일에서 언어 텍스트 숨기기 */
    }
    
    .language-btn {
        padding: 0.5rem; /* 아이콘만 표시하도록 패딩 조정 */
        min-width: auto; /* 최소 너비 제거 */
    }
    /* 태블릿에서 hero-container 숨기고 hero-mobile-swiper 표시 */
    .hero-container {
        display: none;
    }
    
    .hero-mobile-swiper {
        display: block;
        width: 100%;
        height: 400px;
        padding: 0;
    }
    
    .hero-swiper-mobile {
        height: 100%;
    }
    
    .hero-slide-item {
        height: 400px;
        border-radius: 8px;
    }
    
    .hero-slide-overlay {
        padding: 2rem 2rem 2rem 1.5rem;
    }
    
    .hero-slide-text-top {
        font-size: 1.4rem;
        line-height: 1.6;
        margin-bottom: auto;
    }
    
    .hero-slide-text-bottom {
        font-size: 1.1rem;
        margin-top: auto;
        padding-top: 1rem;
        max-width: 90%;
        word-break: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        line-height: 1.6;
    }
    
    .banner-small{
        height: 40px;
    }
    
    .section-header h2 {
        font-size: 1.4rem; /* 1024px에서 약간 작게 */
    }
    
    .video-placeholder {
        height: auto; /* 고정 높이 제거 */
        aspect-ratio: 16 / 9; /* 태블릿에 적합한 비율로 변경 */
    }
    /* 모바일에서 Bottom Header 크기 조절 */
    #bottom_header {
        display: block;
        --bottom-nav-icon: 2.6rem;
        --bottom-nav-label: 0.9rem;
        --bottom-nav-gap: 0.35rem;
        padding: 0.65rem 1.2rem;
    }

    #bottom_header .tab-btns {
        max-width: none;
        gap: 0.3rem;
    }

    #bottom_header .depth2 {
        bottom: calc(var(--bottom-nav-icon) + 0.7rem);
        padding: 1rem;
        width: calc(100% - 2.4rem);
    }

    #bottom_header .depth2 > li > a {
        font-size: 1rem;
        padding: 0.75rem;
    }
}

@media (max-width: 768px) {
    .main-content .top10-section,
    .main-content .latest-section,
    .main-content .video-section,
    .main-content .promo-banners{
        padding: 2rem 0;
    }
    
    
    .header-container {
        /* flex-direction: column; */
        gap: 1rem;
    }
    .promo-banners{
        gap: 0;
    }
    .nav {
        display: none; /* 모바일에서 nav 영역 숨기기 */
    }
    
    .language-selector .current-lang {
        display: none; /* 모바일에서 언어 텍스트 숨기기 */
    }
    
    .language-btn {
        padding: 0.5rem; /* 아이콘만 표시하도록 패딩 조정 */
        min-width: auto; /* 최소 너비 제거 */
    }
    
    .user-controls {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        flex-shrink: 0; /* 축소 방지 */
    }
    
    .user-menu {
        margin-left: unset;
        flex-shrink: 0; /* 축소 방지 */
    }
    
    /* 모바일에서 hero-container 숨기고 hero-mobile-swiper 표시 */
    .hero-container {
        display: none;
    }
    
    .hero-mobile-swiper {
        display: block;
        width: 100%;
        height: 350px;
        padding: 0;
    }
    
    .hero-swiper-mobile {
        height: 100%;
    }
    
    .hero-slide-item {
        height: 350px;
    }
    
    .hero-slide-overlay {
        padding: 1.5rem 1.5rem 1.5rem 1rem;
    }
    
    .hero-slide-text-top {
        font-size: 1.2rem;
        line-height: 1.5;
        margin-bottom: auto;
    }
    
    .hero-slide-text-bottom {
        font-size: 1rem;
        margin-top: auto;
        padding-top: 0.8rem;
        max-width: 90%;
        word-break: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        line-height: 1.5;
    }
    
    .section-header h2 {
        font-size: 1.2rem; /* 768px에서 더 작게 */
    }
    
    .video-placeholder {
        height: auto; /* 고정 높이 제거 */
        aspect-ratio: 16 / 9; /* 모바일에 적합한 비율로 변경 */
    }
    
    .content-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .banner-container,
    .promo-banners {
        grid-template-columns: 1fr;
    }
    
    .bottom-banner {
        grid-template-columns: 1fr;
        text-align: center;
        aspect-ratio: 180 / 25; /* 모바일 비율 (180:25) */
    }
    
    /* 모바일에서 PC용 이미지 숨기기 */
    .bottom-banner .banner-image {
        display: none;
    }
    
    /* 모바일에서 모바일용 이미지 표시 */
    .bottom-banner .mb-banner-image {
        display: block;
    }
    
    /* 모바일에서 card-tags 더 작게 */
    .card-tags {
        gap: 0.35rem; /* gap 작게 */
    }
    
    .card-tags .tag {
        padding: 0.2rem 0.5rem; /* padding 작게 */
        font-size: 0.7rem; /* font-size 작게 */
        border-radius: 16px; /* border-radius 작게 */
    }
    
    .top10-card .card-tags {
        gap: 0.35rem; /* gap 작게 */
    }
    
    .top10-card .tag {
        padding: 0.15rem 0.4rem; /* padding 작게 */
        font-size: 0.65rem; /* font-size 작게 */
        border-radius: 10px; /* border-radius 작게 */
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        margin-bottom: 4rem;
    }
    
    .social-links {
        margin-left: 0;
    }
    
    .footer-links {
        gap: 0.75rem;
        justify-content: center;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }

    #bottom_header {
        --bottom-nav-icon: 2.4rem;
        --bottom-nav-label: 0.85rem;
    }

    #bottom_header .tab-btns {
        gap: 0.25rem;
    }
}

@media (max-width: 480px) {
    /* 작은 모바일에서 Bottom Header 더 작게 조절 */
    #bottom_header {
        --bottom-nav-icon: 2.1rem;
        --bottom-nav-label: 0.75rem;
        --bottom-nav-gap: 0.25rem;
        padding: 0.45rem 0.9rem;
    }
    
    #bottom_header .tab-btns {
        gap: 0.2rem;
    }
    
    #bottom_header .depth2 {
        bottom: calc(var(--bottom-nav-icon) + 0.5rem);
        padding: 0.8rem;
        width: calc(100% - 1.6rem);
    }
    
    #bottom_header .depth2 > li > a {
        font-size: 1rem;
        padding: 0.55rem;
    }
    
    /* 작은 모바일에서 hero-mobile-swiper 크기 조정 */
    .hero-mobile-swiper {
        height: 500px;
    }
    
    .hero-slide-item {
        height: 500px;
    }
    
    .hero-slide-overlay {
        padding: 1rem 1rem 1rem 0.8rem;
    }
    
    .hero-slide-text-top {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: auto;
    }
    
    .hero-slide-text-bottom {
        font-size: 0.9rem;
        margin-top: auto;
        padding-top: 0.5rem;
        max-width: 90%;
        word-break: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        line-height: 1.4;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        /* flex-direction: column; */
        gap: 0rem;
        align-items: flex-start;
    }
    
    .footer-links .divider {
        display: none;
    }
    
    .footer-links a {
        font-size: 0.8rem;
        padding: 0.25rem 0.5rem;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1rem; /* 480px에서 가장 작게 */
    }
    
    .video-placeholder {
        height: auto; /* 고정 높이 제거 */
        aspect-ratio: 16 / 9; /* 소형 모바일에 적합한 비율 */
    }
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.modal {
    background-color: #ffffff;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e5e5e5;
    background-color: #f8f9fa;
    border-radius: 8px 8px 0 0;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background-color: #e5e5e5;
    color: #333;
}

.modal-content {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
    color: #333;
    line-height: 1.6;
}

.modal-content h3 {
    margin: 1.5rem 0 1rem 0;
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}

.modal-content h3:first-child {
    margin-top: 0;
}

.modal-content p {
    margin: 0.5rem 0;
    color: #555;
}

.modal-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.modal-content li {
    margin: 0.5rem 0;
    color: #555;
}

/* Mobile Modal Styles */
@media (max-width: 768px) {
    .modal {
        max-width: 95%;
        max-height: 90vh;
        margin: 1rem;
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .modal-content {
        padding: 1.5rem;
    }
    
    .modal-content h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .modal {
        max-width: 100%;
        max-height: 95vh;
        margin: 0.5rem;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.2rem;
    }
    
    .modal-content {
        padding: 1rem;
    }
    
    .modal-content h3 {
        font-size: 1rem;
    }
}

/* Floating Right Banner Styles */
.floating-banners {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    pointer-events: none;
    z-index: 1000;
    display: none; /* 기본적으로 숨김 */
}

.floating-banner {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    pointer-events: auto;
}

.floating-banner.left-banners {
    left: 2rem;
}

.floating-banner.right-banners {
    right: 2rem;
}

.floating-banner-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-banner-item {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    position: relative;
    cursor: pointer;
}

.floating-banner-card {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    overflow: hidden;
    position: relative;
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateY(0deg) translateY(0);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
    box-shadow: 0 10px 25px rgba(14, 16, 26, 0.4);
    will-change: transform;
}

/* .floating-banner-item:hover .floating-banner-card {
    transform: perspective(1200px) translateY(-6px) rotateY(180deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
} */

.floating-banner-face {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    border-radius: inherit;
}

.floating-banner-face.is-back {
    transform: rotateY(180deg);
}

.floating-banner-face::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.45) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* .floating-banner-item:hover .floating-banner-face.is-back::after {
    opacity: 1;
} */

.floating-banner-face-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.floating-banner-hover-image {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.85);
    width: min(60vw, 420px);
    height: auto;
    max-height: 70vh;
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    z-index: 1200;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* .floating-banner-item:hover .floating-banner-hover-image {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
} */


/* PC에서만 표시 */
@media (min-width: 1025px) {
    .floating-banners {
        display: block;
    }
}

/* Footer 영역 침범 방지 */
@media (min-width: 1025px) {
    .floating-banner {
        top: 0;
        bottom: 0;
        transform: none;
    }
    
    /* Footer가 보이는 영역에서는 배너 숨김 */
    .floating-banners.footer-visible {
        display: none;
    }
}

/* Header Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
        gap: 1rem;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .search-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .user-controls {
        gap: 0.5rem;
    }
    
    .user-icon {
        width: 36px;
        height: 36px;
    }
    
    .user-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .language-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .globe-icon {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .header-container {
        flex-wrap: wrap;
        /* justify-content: center; */
        gap: 0.5rem;
    }
    
    .logo {
        width: 150px;
    }
    
    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }
    
    .user-menu {
        order: 2;
    }
}

/* Content Section Specific Styles */

/* Video Section - 3D Card Effect */
.video-section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}


.video-section .content-item {
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-section .content-item:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.video-section .item-image {
    transition: transform 0.4s ease;
}

.video-section .content-item:hover .item-image {
    transform: scale(1.05);
}

/* Latest Section - Slide Up Animation */
.latest-section {
    padding: 4rem 0;
    position: relative;
}

.latest-section .content-item {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpFade 0.6s ease forwards;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.latest-section .content-item:nth-child(1) { animation-delay: 0.1s; }
.latest-section .content-item:nth-child(2) { animation-delay: 0.2s; }
.latest-section .content-item:nth-child(3) { animation-delay: 0.3s; }
.latest-section .content-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.latest-section .content-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

/* Top 10 Section - Swiper */
.top10-section {
    padding: 4rem 0;
    position: relative;
}

.top10-swiper {
    overflow: visible;
}

.top10-swiper .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
}

.top10-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    padding: 0.7rem;
    overflow: hidden;
}

.top10-card:hover{
    cursor: pointer;
}

.top10-card:hover img{
    transform: scale(1.05);
}

.top10-card.featured {
    z-index: 2;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.top10-card:not(.featured) {
    opacity: 0.7;
    transform: scale(0.8);
    transform-origin: bottom;
}

.top10-card .item-image {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.top10-card.featured .item-image {
}

.top10-card:not(.featured) .item-image {
}

.top10-card .card-content {
    margin-top: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.top10-card h3 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 0.5rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.top10-card.featured h3 {
    font-size: 1.1rem;
}

.top10-card:not(.featured) h3 {
    font-size: 0.9rem;
}

.top10-card .card-stats {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0 0 1rem 0;
}

.top10-card .card-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.top10-card .tag {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.top10-card .rank-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    z-index: 3;
}

.top10-card.featured .rank-badge {
    width: 35px;
    height: 35px;
    font-size: 1rem;
}

/* Product Section - Flip Card Effect */
.product-section {
    padding: 4rem 0;
    perspective: 1000px;
}

.product-section .content-item {
    height: 300px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
    border-radius: 16px;
    overflow: hidden;
}

.product-section .content-item:hover {
    transform: rotateY(180deg);
}

.product-section .item-image {
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: all 0.3s ease;
}

.product-section .content-item:hover .item-image {
    transform: scale(1.1);
}

/* Lecture Section - Wave Animation */



/* Lifting Section - Magnetic Effect */
.lifting-section {
    padding: 4rem 0;
    position: relative;
}

.lifting-section .content-item {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(0, 255, 127, 0.2);
    position: relative;
}

.lifting-section .content-item:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 255, 127, 0.3);
}

.lifting-section .content-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 127, 0.1), rgba(0, 200, 100, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lifting-section .content-item:hover::before {
    opacity: 1;
}


/* New Structure Styles */


/* Latest Section - Vertical Scroll */
.vertical-scroll-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    height: 600px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.vertical-scroll-container::-webkit-scrollbar {
    width: 6px;
}

.vertical-scroll-container::-webkit-scrollbar-track {
    background: transparent;
}

.vertical-scroll-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.vertical-scroll-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.latest-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.latest-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
    cursor: pointer;
}

.latest-number {
    font-size: 2rem;
    font-weight: bold;
    color: #ffd700;
    min-width: 60px;
    text-align: center;
}

.latest-item .item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.latest-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.latest-date {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
}

/* Top 10 Section - Large Cards */
.top10-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.top10-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.top10-card.featured {
    grid-row: 1 / 3;
}

.top10-card .item-image {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 270/200;
}

.top10-card.featured .item-image {
}

.rank-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #000;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.card-content {
    padding: 0.5rem;
}

.card-content h3 {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    line-height: 1.4;
}

.card-stats {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0 0 1rem 0;
}

.card-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Product Section - Random Floating Layout */
.floating-container {
    position: relative;
    width: 100%;
    height: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-item {
    position: absolute;
    width: 140px;
    height: 135px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 150, 255, 0.3);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    background: rgba(0, 150, 255, 0.1);
    border: 1px solid rgba(0, 150, 255, 0.2);
    backdrop-filter: blur(10px);
    animation: none;
    display: flex;
    flex-direction: column;
    opacity: 0;
}

.product-item.loaded {
    opacity: 1;
}

/* 중앙 원형 기준으로 8개 아이템 원형 배치 */
.product-item[data-position="1"] { 
    top: 10%; 
    left: 10%; 
    animation-delay: 0s;
    animation-duration: 5s;
}
.product-item[data-position="2"] { 
    top: 10%; 
    right: 10%; 
    animation-delay: 0.5s;
    animation-duration: 6.5s;
}
.product-item[data-position="3"] { 
    top: 5%; 
    left: 50%; 
    transform: translateX(-50%);
    animation-delay: 1s;
    animation-duration: 7s;
}
.product-item[data-position="4"] { 
    top: 50%; 
    left: 5%; 
    transform: translateY(-50%);
    animation-delay: 1.5s;
    animation-duration: 5.5s;
}
.product-item[data-position="5"] { 
    top: 50%; 
    right: 5%; 
    transform: translateY(-50%);
    animation-delay: 2s;
    animation-duration: 6s;
}
.product-item[data-position="6"] { 
    bottom: 5%; 
    left: 50%; 
    transform: translateX(-50%);
    animation-delay: 2.5s;
    animation-duration: 7.5s;
}
.product-item[data-position="7"] { 
    bottom: 10%; 
    left: 10%; 
    animation-delay: 3s;
    animation-duration: 5.8s;
}
.product-item[data-position="8"] { 
    bottom: 10%; 
    right: 10%; 
    animation-delay: 3.5s;
    animation-duration: 6.2s;
}

.product-item:hover {
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 150, 255, 0.4);
    animation-play-state: paused;
}

.product-item .item-image {
    width: 100%;
    height: unset;
    object-fit: cover;
    aspect-ratio: 270/200;
    flex-shrink: 0;
}

.product-item h3 {
    font-size: 0.8rem;
    margin: 0.5rem;
    padding: 0 0.5rem;
    text-align: center;
    line-height: 1.2;
    color: white;
    flex: 1;
    word-break: keep-all;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
    min-height: 2.4rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    line-clamp: 1;
    position: relative;
}

.floating-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    background: linear-gradient(45deg, rgba(0, 150, 255, 0.4), rgba(0, 200, 255, 0.4));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(15px);
    border: 4px solid rgba(0, 150, 255, 0.6);
    box-shadow: 0 20px 40px rgba(0, 150, 255, 0.4);
    animation: none;
    z-index: 5;
    opacity: 0;
    scale: 0.8;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.floating-center.loaded {
    opacity: 1;
    scale: 1;
    animation: pulse 3s ease-in-out infinite;
}

.center-content {
    text-align: center;
    color: white;
}

.center-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
    font-weight: bold;
}

.center-content p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
}

/* 부유 애니메이션 - 각 position별 transform 유지 */
.product-item[data-position="1"].loaded,
.product-item[data-position="2"].loaded,
.product-item[data-position="7"].loaded,
.product-item[data-position="8"].loaded {
    animation: float-basic 6s ease-in-out infinite;
}

.product-item[data-position="3"].loaded,
.product-item[data-position="6"].loaded {
    animation: float-center-x 6s ease-in-out infinite;
}

.product-item[data-position="4"].loaded,
.product-item[data-position="5"].loaded {
    animation: float-center-y 6s ease-in-out infinite;
}

@keyframes float-basic {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    25% { 
        transform: translateY(-10px) rotate(1deg); 
    }
    50% { 
        transform: translateY(-5px) rotate(-1deg); 
    }
    75% { 
        transform: translateY(-15px) rotate(0.5deg); 
    }
}

@keyframes float-center-x {
    0%, 100% { 
        transform: translateX(-50%) translateY(0px) rotate(0deg); 
    }
    25% { 
        transform: translateX(-50%) translateY(-10px) rotate(1deg); 
    }
    50% { 
        transform: translateX(-50%) translateY(-5px) rotate(-1deg); 
    }
    75% { 
        transform: translateX(-50%) translateY(-15px) rotate(0.5deg); 
    }
}

@keyframes float-center-y {
    0%, 100% { 
        transform: translateY(-50%) translateY(0px) rotate(0deg); 
    }
    25% { 
        transform: translateY(-50%) translateY(-10px) rotate(1deg); 
    }
    50% { 
        transform: translateY(-50%) translateY(-5px) rotate(-1deg); 
    }
    75% { 
        transform: translateY(-50%) translateY(-15px) rotate(0.5deg); 
    }
}

/* 중앙 펄스 애니메이션 */
@keyframes pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1); 
        box-shadow: 0 15px 35px rgba(0, 150, 255, 0.3);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.05); 
        box-shadow: 0 20px 45px rgba(0, 150, 255, 0.4);
    }
}



/* Lifting Section - Main + Sub Layout */
.lifting-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.main-lifting {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.main-lifting:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2);
}

.main-lifting .item-image {
    width: 100%;
    height: unset;
    object-fit: cover;
    aspect-ratio: 270/200;
}

.lifting-content {
    padding: 1.2rem;
}

.lifting-content h3 {
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
}

.lifting-description {
    color: #ccc;
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

.lifting-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.sub-liftings {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-x: hidden;
    max-height: 600px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.sub-liftings::-webkit-scrollbar {
    width: 4px;
}

.sub-liftings::-webkit-scrollbar-track {
    background: transparent;
}

.sub-liftings::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.sub-liftings::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.sub-lifting {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    gap: 1rem;
    padding: 1rem;
    height: 100px;
    flex-shrink: 0;
}

.sub-lifting:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.sub-lifting .item-image {
    width: 80px;
    height: unset;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    aspect-ratio: 270/200;
}

.sub-lifting-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    min-width: 0;
}

.sub-lifting h4 {
    font-size: 0.9rem;
    margin: 0 0 0.3rem 0;
    line-height: 1.3;
    color: white;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sub-lifting-subtitle {
    font-size: 0.75rem;
    margin: 0;
    color: #ccc;
    
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/* Responsive Design for New Structures */
@media (max-width: 768px) {
    .top10-container {
        grid-template-columns: 1fr;
        padding: 0;
    }
    
    .top10-card.featured {
        grid-row: auto;
    }
    
    .floating-container {
        height: 500px;
    }
    
    .product-item {
        width: 100px;
        height: 107px;
    }
    
    .product-item .item-image {
        height: 80px;
    }
    
    .product-item h3 {
        font-size: 0.8rem;
        margin: 0.3rem;
        padding: 0 0.3rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 100%;
        min-height: 2rem;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        line-clamp: 1;
    }
    
    /* 태블릿에서 위치 조정 */
    .product-item[data-position="1"] { 
        top: 8%; 
        left: 8%; 
    }
    .product-item[data-position="2"] { 
        top: 8%; 
        right: 8%; 
    }
    .product-item[data-position="3"] { 
        top: 3%; 
    }
    .product-item[data-position="4"] { 
        left: 3%; 
    }
    .product-item[data-position="5"] { 
        right: 3%; 
    }
    .product-item[data-position="6"] { 
        bottom: 3%; 
    }
    .product-item[data-position="7"] { 
        bottom: 8%; 
        left: 8%; 
    }
    .product-item[data-position="8"] { 
        bottom: 8%; 
        right: 8%; 
    }
    
    .floating-center {
        width: 100px;
        height: 100px;
    }
    
    .center-content h3 {
        font-size: 0.9rem;
    }
    
    .center-content p {
        font-size: 0.7rem;
    }
    
    .lifting-layout {
        grid-template-columns: 1fr;
        padding: 0;
    }
    
    .sub-liftings {
        max-height: 540px;
    }
    
    .sub-lifting {
        height: 90px;
        padding: 0.8rem;
    }
    
    .sub-lifting .item-image {
        width: 70px;
        height: unset;
        aspect-ratio: 270/200;
    }
    
    .sub-lifting h4 {
        font-size: 0.8rem;
        margin: 0 0 0.2rem 0;
    }
    
    .sub-lifting-subtitle {
        font-size: 0.7rem;
    }
    
    /* Vertical scroll container responsive */
    .vertical-scroll-container {
        height: 500px;
        padding: 0 0.8rem;
    }
    
    .vertical-scroll-container::-webkit-scrollbar {
        width: 4px;
    }
}

@media (max-width: 480px) {
    .latest-number{
        position: absolute;
        left: 5px;
        top: -5px;
    }
  /*   .latest-item{
        flex-wrap: wrap;
    }
    .latest-content h3{
        width: 100%;
    } */
    .floating-container {
        height: 400px;
    }
    
    .product-item {
        width: 100px;
        height: 90px;
    }
    
    .product-item .item-image {
        height: 60px;
    }
    
    .product-item h3 {
        font-size: 0.8rem;
        margin: 0.2rem;
        padding: 0 0.2rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 100%;
        min-height: 1.8rem;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        line-clamp: 1;
    }
    
    /* 모바일에서 위치 조정 - 더 넓은 간격 */
    .product-item[data-position="1"] { 
        top: 5%; 
        left: 5%; 
    }
    .product-item[data-position="2"] { 
        top: 5%; 
        right: 5%; 
    }
    .product-item[data-position="3"] { 
        top: 2%; 
    }
    .product-item[data-position="4"] { 
        left: 2%; 
    }
    .product-item[data-position="5"] { 
        right: 2%; 
    }
    .product-item[data-position="6"] { 
        bottom: 2%; 
    }
    .product-item[data-position="7"] { 
        bottom: 5%; 
        left: 5%; 
    }
    .product-item[data-position="8"] { 
        bottom: 5%; 
        right: 5%; 
    }
    
    .floating-center {
        width: 80px;
        height: 80px;
    }
    
    .center-content h3 {
        font-size: 0.8rem;
    }
    
    .center-content p {
        font-size: 0.6rem;
    }
    
    .sub-liftings {
        max-height: 480px;
    }
    
    .sub-lifting {
        height: 80px;
        padding: 0.6rem;
    }
    
    .sub-lifting .item-image {
        width: 60px;
        height: unset;
        aspect-ratio: 270/200;
    }
    
    .sub-lifting h4 {
        font-size: 0.75rem;
        margin: 0 0 0.2rem 0;
    }
    
    .sub-lifting-subtitle {
        font-size: 0.65rem;
    }
    
    /* Vertical scroll container responsive */
    .vertical-scroll-container {
        height: 400px;
        padding: 0 0rem;
    }
    
    .vertical-scroll-container::-webkit-scrollbar {
        width: 3px;
    }
    
    /* Top banner responsive */
    .top-banner {
        padding: 0.8rem 1rem;
    }
    
    .banner-image {
        max-height: 100px;
    }
    
    .banner-controls {
        top: 0.5rem;
        right: 1rem;
        gap: 0.5rem;
    }
    
    .dont-show-today {
        font-size: 0.7rem;
    }
    
    /* Bottom banner responsive */
    
    .bottom-overlay-banner {
        bottom: 2rem;
        left: 0 !important;
        right: 0 !important;
    }
    
    
    .bottom-overlay-banner .banner-controls {
        /* top: 0.3rem; */
        right: 0.8rem;
        gap: 0.8rem;
    }
    
    .bottom-overlay-banner .dont-show-today {
        font-size: 0.7rem;
    }
}

/* Bottom Overlay Banner */
.bottom-overlay-banner {
    position: fixed;
    bottom: 0rem;
    left: 1rem;
    right: 1rem;
    width: 100%;
    max-width: 1000px;
    z-index: 10000;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0rem;
    border-radius: 0; /* 둥근 모서리 */
    border: none;
}

.bottom-overlay-banner .banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.bottom-overlay-banner .banner-image {
    width: 100%;
    height: unset;
    max-height: unset;
    aspect-ratio: 12/1;
    object-fit: cover;
    border-radius: unset;
    margin-bottom: 0;
    border-radius: 0;
    border: none;
    max-width: 1000px;
}
.bottom-overlay-banner .mb-banner-image {
    width: 100%;
    height: unset;
    max-height: unset;
    aspect-ratio: 390 / 215;
    object-fit: cover;
    border-radius: unset;
    margin-bottom: 0;
    border-radius: 0;
    border: none;
    max-width: 1000px;
    display: none;
}

.bottom-overlay-banner .banner-controls {
    position: absolute;
    right: 1rem;
    top: unset;
    bottom: calc(100% + 5px);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bottom-overlay-banner .dont-show-today {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.8rem;
    cursor: pointer;
    user-select: none;
}

.bottom-overlay-banner .dont-show-today input[type="checkbox"] {
    display: none;
}

.bottom-overlay-banner .checkmark {
    width: 16px;
    height: 16px;
    border: 2px solid white;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.bottom-overlay-banner .dont-show-today input[type="checkbox"]:checked + .checkmark {
    background: #FBB03B;
    border-color: #FBB03B;
}

.bottom-overlay-banner .dont-show-today input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}
.banner-overlay{
    z-index: 1000;
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}
.bottom-overlay-banner .banner-close {
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.bottom-overlay-banner .banner-close:hover {
    color: #000;
    background: white;
    border-color: white;
    transform: scale(1.1);
}

.bottom-overlay-banner .banner-close .fas.fa-times {
    display: none;
}

.bottom-overlay-banner .banner-close::before {
    content: 'X';
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
}
.column-section{
    margin-top: 4rem;
}
/* Notice Section Styles */
/* Content Section Styles */
.content-section_02 {
    padding: 4rem 0;
    min-height: calc(100vh - 140px);
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Category Filter Styles */
.category-filter {
    margin-bottom: 3rem;
}

.category-swiper {
    margin-bottom: 1.5rem;
    overflow: visible;
    touch-action: pan-x;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.category-swiper .swiper-slide {
    width: auto;
    display: flex;
    justify-content: center;
    pointer-events: auto;
    touch-action: pan-x;
}

.category-swiper .swiper-wrapper {
    align-items: center;
    touch-action: pan-x;
}

.category-item {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.category-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.category-item.active {
    background: #FBB03B;
    border-color: #FBB03B;
    color: white;
}

.tag-swiper {
    overflow: visible;
    touch-action: pan-x;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.tag-swiper .swiper-slide {
    width: auto;
    display: flex;
    justify-content: center;
    pointer-events: auto;
    touch-action: pan-x;
}

.tag-swiper .swiper-wrapper {
    align-items: center;
    touch-action: pan-x;
}

.tag-item {
    background: rgba(60, 60, 60, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.tag-item:hover {
    background: rgba(251, 176, 59, 0.2);
    border-color: rgba(251, 176, 59, 0.5);
    color: #FBB03B;
}

.tag-item.active {
    background: #FBB03B;
    border-color: #FBB03B;
    color: white;
}

/* Intro Section */
.intro-section {
    padding: 4rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.intro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.intro-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
}

.intro-text {
    flex: 1;
    color: white;
    line-height: 1.8;
    font-size: 1.1rem;
}

.intro-text p {
    margin-bottom: 1.5rem;
    text-align: left;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

/* Animation classes for GSAP */
.intro-paragraph {
    opacity: 0;
    transform: translateY(20px);
}

.intro-image {
    opacity: 0;
    transform: translateX(50px);
}

.person-image {
    position: relative;
    overflow: hidden;
}

.image-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(251, 176, 59, 0.1) 0%, transparent 70%);
    opacity: 0;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Floating background shapes */
.intro-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(251, 176, 59, 0.1), rgba(251, 176, 59, 0.05));
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 40%;
    left: 80%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

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

/* Enhanced intro highlight */
.intro-highlight {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.intro-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    right: -10px;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(251, 176, 59, 0.2), transparent);
    opacity: 0;
    animation: highlight-sweep 2s ease-in-out forwards;
    animation-delay: 2s;
}

@keyframes highlight-sweep {
    0% { transform: translateX(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(60%); opacity: 0.2; }
}

/* Content Detail Page Styles */
.breadcrumb {
    background-color: #1a1a1a;
    padding: 1rem 0;
    border-bottom: 1px solid #333;
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #FBB03B;
}

.breadcrumb-separator {
    color: #666;
    margin: 0 0.5rem;
}

.breadcrumb-current {
    color: #FBB03B;
    font-weight: 500;
}

.content-detail-section {
    padding: 3rem 0;
    min-height: 70vh;
    background-color: #202020;
}

.content-detail-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-info-list .smart_edit img{
    width:100% !important;
}
.content-info-list .smart_edit iframe{
    width:100% !important;
}
.content-detail-layout {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.content-detail-main {
    flex: 1;
    min-width: 0;
}

.content-side-banners {
    width: clamp(200px, 22vw, 240px);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 120px;
}

.side-banner-link {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    aspect-ratio: 46 / 30;
    width: 100%;
    height: 100%;
}

.side-banner-link:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.45);
    border-color: rgba(251, 176, 59, 0.4);
}

.side-banner-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .content-detail-layout {
        flex-direction: column;
    }

    .content-side-banners {
        position: static;
        width: 100%;
        flex-direction: row;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .side-banner-link {
        flex: 0 1 calc(50% - 0.5rem);
    }

    .content-banner-bottom img {
    }

    .related-articles-section {
        margin-top: 3rem;
    }

    .related-articles-controls {
        margin-top: -1rem;
    }
    .bottom-overlay-banner .banner-image{
        display: none;
    }
    .bottom-overlay-banner .mb-banner-image{
        display: block;
    }
}

.content-detail-header {
    margin-bottom: 3rem;
}

.content-category {
    font-size: 0.9rem;
    color: #FBB03B;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.content-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 1rem;
    word-break: keep-all;
}

.content-date {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.content-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FBB03B, transparent);
    margin-bottom: 2rem;
}

.content-detail-body {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 3rem;
    border: 1px solid #333;
}

.content-detail-keywords {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.keyword-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 1.1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
}

.keyword-pill:hover {
    background: rgba(251, 176, 59, 0.2);
    border-color: rgba(251, 176, 59, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
}

.keyword-pill-label {
    font-weight: 600;
    color: #FBB03B;
    border-color: rgba(251, 176, 59, 0.5);
    background: rgba(251, 176, 59, 0.12);
    cursor: default;
    pointer-events: none;
}

.content-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
}

.content-subtitle::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #FBB03B, #ffd700);
    border-radius: 2px;
}

.content-info-list {
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #2a2a2a;
    border-radius: 8px;
    border-left: 4px solid #FBB03B;
    transition: all 0.3s ease;
}

.info-item:hover {
    background-color: #333;
    transform: translateX(5px);
}

.info-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FBB03B;
    margin-right: 1rem;
    min-width: 30px;
}

.info-label {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-right: 1rem;
    min-width: 120px;
}

.info-value {
    font-size: 1rem;
    color: #e0e0e0;
    line-height: 1.5;
    flex: 1;
}

.content-actions {
    text-align: center;
    margin-top: 3rem;
}

.apply-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #FBB03B, #ffd700);
    color: #1a1a1a;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(251, 176, 59, 0.3);
    position: relative;
    overflow: hidden;
}

.apply-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.apply-button:hover::before {
    left: 100%;
}

.apply-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 176, 59, 0.4);
}

.apply-text {
    position: relative;
    z-index: 1;
}

.apply-icon {
    position: relative;
    z-index: 1;
    background-color: rgba(26, 26, 26, 0.1);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.apply-button:hover .apply-icon {
    background-color: rgba(26, 26, 26, 0.2);
    transform: translateX(3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .content-detail-container {
        padding: 0 1rem;
    }
    
    .content-detail-layout {
        flex-direction: column;
    }
    
    .content-side-banners {
        position: static;
        width: 100%;
        flex-direction: row;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .side-banner-link {
        flex: 0 1 calc(50% - 0.5rem);
    }

    .content-detail-keywords {
        padding-top: 1.2rem;
        gap: 0.6rem;
    }

    .keyword-pill {
        font-size: 0.85rem;
        padding: 0.4rem 0.9rem;
    }
    
    .content-title {
        font-size: 1.8rem;
    }
    
    .content-detail-body {
        padding: 2rem 1.5rem;
    }
    
    .content-subtitle {
        font-size: 1.4rem;
    }
    
    .info-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .info-label {
        min-width: auto;
        margin-right: 0;
    }
    
    .apply-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .content-title {
        font-size: 1.5rem;
    }

    .content-side-banners {
        flex-direction: column;
    }

    .side-banner-link {
        flex: 0 1 auto;
    }
    
    .content-detail-body {
        padding: 1.5rem 1rem;
    }

    .content-detail-keywords {
        gap: 0.45rem;
    }

    .keyword-pill {
        font-size: 0.78rem;
        padding: 0.3rem 0.7rem;
    }
    
    .info-item {
        padding: 0.8rem;
    }
    
    .info-number {
        font-size: 1rem;
        margin-right: 0.5rem;
    }
}

.intro-highlight {
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    color: #FBB03B !important;
    margin-top: 2rem !important;
}

.intro-image {
    flex: 0 0 300px;
    height: 400px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.person-image {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    aspect-ratio: 300/400;
    width: 100%;
}

.person-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Banners */
.product-banners {
    margin: 3rem 0;
}

.banner-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.banner-container .banner-item{
    aspect-ratio: 46/30;

}
.banner-item {
    aspect-ratio: 46/10;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.banner-item:hover {
}

.banner-item .banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .content-container {
        padding: 0 1rem;
    }
    
    .banner-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .product-banners {
        margin: 2rem 0;
    }
    
    .intro-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .intro-image {
        flex: none;
        height: 200px;
    }
    
    .person-image {
        width: 150px;
        height: 180px;
    }
    
    .category-filter {
        margin-bottom: 2rem;
    }
    
    .category-item {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .tag-item {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .content-container {
        padding: 0 0.75rem;
    }
    
    .banner-container {
        gap: 0.5rem;
    }
    
    .banner-item {
        /* aspect-ratio: 46/30; */
    }
    
    .intro-section {
        padding: 2rem 0;
        min-height: 50vh;
    }
    
    .intro-container {
        padding: 0 1rem;
    }
    
    .intro-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .intro-highlight {
        font-size: 1.2rem !important;
    }
    
    .intro-image {
        height: 150px;
    }
    
    /* Mobile animation adjustments */
    .intro-paragraph {
        opacity: 1;
        transform: none;
    }
    
    .intro-image {
        opacity: 1;
        transform: none;
    }
    
    .floating-shapes {
        display: none;
    }
    
    .image-glow {
        display: none;
    }
    
    .top10-card.featured {
    }
    
    .top10-card.featured .item-image {
        height: 180px;
    }
    
    .top10-card:not(.featured) .item-image {
        height: 130px;
    }
    
    .person-image {
        width: 120px;
        height: 140px;
    }
    
    .category-item {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .tag-item {
        padding: 0.35rem 0.7rem;
        font-size: 0.75rem;
    }
    
    /* 작은 모바일에서 card-tags 더 작게 */
    .card-tags {
        gap: 0.3rem; /* gap 더 작게 */
    }
    
    .card-tags .tag {
        padding: 0.15rem 0.4rem; /* padding 더 작게 */
        font-size: 0.65rem; /* font-size 더 작게 */
        border-radius: 14px; /* border-radius 더 작게 */
    }
    
    .top10-card .card-tags {
        gap: 0.3rem; /* gap 더 작게 */
    }
    
    .top10-card .tag {
        padding: 0.12rem 0.35rem; /* padding 더 작게 */
        font-size: 0.6rem; /* font-size 더 작게 */
        border-radius: 8px; /* border-radius 더 작게 */
    }
}

.notice-section {
    padding: 4rem 0;
    min-height: calc(100vh - 140px);
}

.notice-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.notice-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: white;
    margin-bottom: 3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

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

.notice-card {
    cursor: pointer;
    background: rgba(30, 30, 30, 0.8);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.notice-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    border-color: rgba(251, 176, 59, 0.3);
}

.notice-card-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.notice-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.notice-card:hover .notice-card-image img {
    transform: scale(1.05);
}

.notice-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.notice-status {
    background: rgba(239, 68, 68, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.notice-status.ended {
    background: rgba(107, 114, 128, 0.9);
}

.notice-card-content {
    padding: 1.5rem;
}

.notice-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-clamp: 2;
}

.notice-card-date {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.pagination-btn {
    background: rgba(60, 60, 60, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.pagination-btn:hover:not(:disabled) {
    background: #FBB03B;
    border-color: #FBB03B;
    transform: translateY(-2px);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 0.5rem;
}

.pagination-number {
    background: rgba(60, 60, 60, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-weight: 500;
}

.pagination-number:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.pagination-number.active {
    background: #FBB03B;
    border-color: #FBB03B;
    color: white;
}

/* Notice Responsive */
@media (max-width: 768px) {
    .notice-section {
        padding: 2rem 0;
    }
    
    .notice-container {
        padding: 0 1rem;
    }
    
    .notice-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .notice-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .notice-card-image {
        height: 180px;
    }
    
    .notice-card-content {
        padding: 1rem;
    }
    
    .notice-card-title {
        font-size: 1rem;
    }
    
    .pagination {
        margin-top: 2rem;
    }
    
    .pagination-btn,
    .pagination-number {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .notice-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .notice-card-image {
        height: 160px;
    }
    
    .notice-card-content {
        padding: 0.75rem;
    }
    
    .notice-card-title {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .notice-card-date {
        font-size: 0.8rem;
    }
    
    .pagination {
        gap: 0.5rem;
    }
    
    .pagination-btn,
    .pagination-number {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

/* 매우 작은 모바일 화면 (360px 이하) */
@media (max-width: 360px) {
    .floating-container {
        height: 350px;
    }
    
    .product-item {
        width: 70px;
        height: 72px;
    }
    
    .product-item .item-image {
        height: 50px;
    }
    
    .product-item h3 {
        font-size: 0.8rem;
        margin: 0.1rem;
        padding: 0 0.1rem;
        min-height: 1.5rem;
    }
    
    /* 매우 작은 화면에서 위치 조정 */
    .product-item[data-position="1"] { 
        top: 3%; 
        left: 3%; 
    }
    .product-item[data-position="2"] { 
        top: 3%; 
        right: 3%; 
    }
    .product-item[data-position="3"] { 
        top: 1%; 
    }
    .product-item[data-position="4"] { 
        left: 1%; 
    }
    .product-item[data-position="5"] { 
        right: 1%; 
    }
    .product-item[data-position="6"] { 
        bottom: 1%; 
    }
    .product-item[data-position="7"] { 
        bottom: 3%; 
        left: 3%; 
    }
    .product-item[data-position="8"] { 
        bottom: 3%; 
        right: 3%; 
    }
    
    .floating-center {
        width: 70px;
        height: 70px;
    }
    
    .center-content h3 {
        font-size: 0.7rem;
    }
    
    .center-content p {
        font-size: 0.5rem;
    }
    
    .sub-liftings {
        max-height: 420px;
    }
    
    .sub-lifting {
        height: 70px;
        padding: 0.5rem;
    }
    
    .sub-lifting .item-image {
        width: 50px;
        height: unset;
        aspect-ratio: 270/200;
    }
    
    .sub-lifting h4 {
        font-size: 0.7rem;
        margin: 0 0 0.1rem 0;
    }
    
    .sub-lifting-subtitle {
        font-size: 0.6rem;
    }
    
    /* Vertical scroll container responsive */
    .vertical-scroll-container {
        height: 350px;
        padding: 0 0rem;
    }
    
    .vertical-scroll-container::-webkit-scrollbar {
        width: 2px;
    }
    
    /* Top banner small mobile */
    .top-banner {
        padding: 0.6rem 0.8rem;
    }
    
    .banner-image {
        max-height: 80px;
    }
    
    .banner-controls {
        top: 0.3rem;
        right: 0.8rem;
        gap: 0.3rem;
    }
    
    .dont-show-today {
        font-size: 0.65rem;
    }
    
    .checkmark {
        width: 14px;
        height: 14px;
    }
    
    /* Bottom banner small mobile */
    
    
    
    
    .bottom-overlay-banner .dont-show-today {
        font-size: 0.65rem;
    }
    
    .bottom-overlay-banner .checkmark {
        width: 14px;
        height: 14px;
    }
    
    .bottom-overlay-banner     .banner-close {
        font-size: 1rem;
    }
}

