<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* 완전히 새로운 스페셜 광고 스킨 */
/* 기본 컨테이너 */
.spad-container {
    max-width: 240px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    background: #fff;
    border: 1px solid #4169e1;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
/* 헤더 */
.spad-header {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, #fcfcfc, #ffffff);
    padding: 0 15px;
    height: 42px;
    border-bottom: 1px solid #eaeaea;
}
.spad-header-icon {
    width: 16px;
    height: 16px;
    margin-right: 6px;
}
.spad-header-title {
    font-size: 15px;
    font-weight: 600;
    color: #1E90FF;
    letter-spacing: -0.5px;
}
/* 페이지네이션 */
.spad-pagination {
    position: absolute !important;
    top: 50% !important;
    right: 10px !important;
    transform: translateY(-50%) !important;
    text-align: right !important;
}
.spad-pagination .swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
    display: inline-block !important;
    border-radius: 100% !important;
    background: #ddd !important;
    opacity: 0.5 !important;
    margin: 0 2px !important;
    transition: all 0.2s ease !important;
}
.spad-pagination .swiper-pagination-bullet-active {
    background: linear-gradient(135deg, #1E90FF 0%, #4169E1 100%) !important;
    opacity: 1 !important;
    width: 9px !important;
    height: 9px !important;
}
/* 슬라이더 */
.spad-slider {
    width: 100%;
    height: calc(100% - 42px); /* 헤더 높이 제외 */
}

.spad-slide {
    text-align: center;
    background: #fff;
    padding: 8px !important;
    height: auto !important;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
}
.spad-slide:hover {
    background-color: #f9f9f9;
}
.spad-slide[data-swiper-row="1"] {
    border-top: 1px solid #eaeaea;
}
/* 슬라이드 헤더 */
.spad-slide-header {
    margin-bottom: 12px;
    padding-bottom: 12px;
    line-height: 1;
    border-bottom: 1px solid #f0f0f0;
}
/* 카테고리 */
.spad-category {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid #e1e1e1;
    font-size: 12px;
    color: #666;
    background: #f5f7fa;
    border-radius: 30px;
    line-height: 1;
    margin-bottom: 8px;
}
/* 제목 */
.spad-title {
    font-size: 15px;
    font-weight: 600;
    color: #1E90FF;
    letter-spacing: -0.5px;
    line-height: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/* 슬라이드 콘텐츠 */
.spad-slide-content {
    margin-bottom: 15px;
}
/* 부제목 */
.spad-subtitle {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}
/* 설명 */
.spad-description {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    line-height: 1;
    letter-spacing: -0.5px;
}
/* 버튼 */
.spad-button {
    display: inline-block;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    background: linear-gradient(135deg, #1E90FF 0%, #4169E1 100%);
    border-radius: 6px;
    transition: all 0.3s ease;
}
.spad-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(213, 63, 140, 0.2);
}
.spad-button i {
    margin-left: 5px;
    font-size: 12px;
}
/* 빈 상태 */
.spad-empty {
    text-align: center;
    padding: 30px 15px;
    color: #888;
    font-size: 13px;
}
/* 애니메이션 */
@keyframes spadFadeInUp {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.spad-slide {
    animation: spadFadeInUp 0.3s ease forwards;
}
/* 반응형 */
@media (max-width: 768px) {
    .spad-container {
        width: 100%;
    }
}</pre></body></html>