<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* 프리미엄 광고 스킨 - 핑크-퍼플 컬러 스킴 */

/* 기본 컨테이너 */
.premium-container {
    width: 340px;
    position: relative;
    margin-left: 26px;
    float: left;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgb(153 153 153 / 15%);
    background: #fff;
}

/* 헤더 */
.premium-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #1E90FF 0%, #4169E1 100%);
    padding: 8px 15px;
    position: relative;
    border-radius: 10px 10px 0 0;
}

.premium-header-left {
    display: flex;
    align-items: center;
}

.premium-header-icon {
    font-size: 18px;
    margin-right: 8px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.premium-header-title {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* 페이지네이션 */
.premium-pagination {
    position: absolute !important;
    right: 15px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    justify-content: flex-end !important;
    text-align: right !important;
    width: auto !important;
    z-index: 10 !important;
}

.premium-pagination .swiper-pagination-bullet {
    width: 7px !important;
    height: 7px !important;
    display: inline-block !important;
    border-radius: 100% !important;
    background: rgba(255, 255, 255, 0.4) !important;
    opacity: 1 !important;
    margin: 0 2px !important;
    transition: all 0.3s ease !important;
}

.premium-pagination .swiper-pagination-bullet-active {
    width: 8px !important;
    height: 8px !important;
    background: #fff !important;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.6) !important;
}

/* 슬라이더 */
.premium-slider {
    width: 100%;
    background: #fff;
}

/* 슬라이드 */
.premium-slide {
    position: relative;
    background: #fff;
    transition: all 0.3s ease;
    padding: 0 !important;
}

.premium-slide:nth-child(2n) {
    border-top: 1px solid rgba(213, 63, 140, 0.1);
}

.premium-slide-inner {
    padding: 15px;
    position: relative;
}

/* 호버 효과 - 그라데이션 테두리 박스 쉐도우 */
.premium-slide:hover {
    background-color: #fdf4f9;
    box-shadow: inset 0 0 0 2px #1E90FF;
    transition: box-shadow 0.3s ease;
}

/* 특별한 첫 번째 아이템 호버 효과 */
.premium-slide:first-child:hover {
    box-shadow: inset 0 0 0 2px #1E90FF;
}


/* 마지막 슬라이드 모서리 */
.premium-slide:last-child {
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}

/* 단일 슬라이드일 경우 */
.premium-slide:first-child:last-child {
    border-radius: 10px;
    overflow: hidden;
}

/* 호버 시 그라데이션 박스 효과 */
@media (min-width: 768px) {
    .premium-slide:hover {
        background-color: #fdf4f9;
        box-shadow: none;
        position: relative;
    }
    
    .premium-slide:hover::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 3;
        background: linear-gradient(270deg, #1E90FF, #4169E1, #b794f4, #1E90FF);
        background-size: 300% 300%;
        animation: gradientFlow 6s ease infinite;
        -webkit-mask: 
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        padding: 2px;
        pointer-events: none;
    }
    

    /* 마지막 슬라이드에 호버시 모서리 적용 */
    .premium-slide:nth-child(2n):hover::before {
        border-radius: 0 0 10px 10px;
    }
    
    /* 단일 슬라이드일 경우 호버 모서리 */
    .premium-slide:first-child:last-child:hover::before {
        border-radius: 10px;
    }
}

/* 리본 */
.premium-ribbon {
    position: absolute;
    top: 0px;
    right: -30px;
    z-index: 1;
    overflow: hidden;
    width: 120px;
    height: 120px;
    text-align: right;
}

.premium-ribbon span {
    font-size: 10px;
    font-weight: bold;
    color: #FFF;
    text-transform: uppercase;
    text-align: center;
    line-height: 20px;
    transform: rotate(45deg);
    width: 120px;
    display: block;
    background: linear-gradient(270deg, #1E90FF, #4169E1, #b794f4, #1E90FF);
    background-size: 300% 300%;
    box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
    position: absolute;
    top: 15px;
    right: -4px;
    animation: gradientFlow 6s ease infinite;
}

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

/* 메타 정보 */
.premium-meta {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

/* 카테고리 */
.premium-category {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    font-size: 12px;
    color: #666;
    background: #f0f0f0;
    border-radius: 30px;
    margin-right: 8px;
    font-weight: 500;
}

.premium-category i {
    margin-right: 4px;
    font-size: 11px;
    color: #555;
}

/* 뱃지 */
.premium-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    font-size: 12px;
    color: #fff;
    background: linear-gradient(135deg, #1E90FF 0%, #4169E1 100%);
    border-radius: 30px;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(213, 63, 140, 0.2);
}

.premium-badge i {
    margin-right: 4px;
    font-size: 11px;
}

/* 하이라이트 영역 */
.premium-highlight {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(213, 63, 140, 0.2);
    position: relative;
}

/* 별 아이콘 */
.premium-star {
    color: #1E90FF;
    font-size: 15px;
    margin-right: 5px;
    animation: starblink 1.5s infinite;
}

@keyframes starblink {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* 제목 */
.premium-title {
    font-size: 17px;
    font-weight: 700;
    color: #1E90FF;
    letter-spacing: -0.5px;
    line-height: 1.3;
    margin: 0;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 콘텐츠 */
.premium-content {
    margin-bottom: 12px;
    line-height: 1;
}

.premium-info-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
}

.premium-icon {
    flex-shrink: 0;
    color: #1E90FF;
    font-size: 14px;
    margin-right: 8px;
    margin-top: 2px;
}

/* 부제목 */
.premium-subtitle {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
    text-align: left;
    word-break: keep-all;
    font-weight: 400;
}

/* 설명 */
.premium-description {
    font-size: 15px;
    color: #333;
    line-height: 1.4;
    margin: 0;
    text-align: left;
    word-break: keep-all;
    font-weight: 600;
    letter-spacing: -0.5px;
}

/* 푸터 */
.premium-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

/* 연락처 정보 */
.premium-contact-info {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #666;
}

.premium-phone-icon {
    color: #1E90FF;
    margin-right: 5px;
    animation: ringing 1s infinite;
}

@keyframes ringing {
    0%, 100% {
        transform: rotate(-10deg);
    }
    50% {
        transform: rotate(10deg);
    }
}

/* 버튼 */
.premium-button {
    display: inline-flex;
    align-items: center;
    padding: 5px 15px;
    background: linear-gradient(270deg, #1E90FF, #4169E1, #b794f4, #1E90FF);
    background-size: 300% 300%;
    border-radius: 30px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(213, 63, 140, 0.2);
    transition: all 0.3s ease;
    animation: gradientFlow 8s ease infinite;
}

.premium-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 5px 15px rgba(213, 63, 140, 0.3);
    animation: gradientFlow 3s ease infinite;
}

.premium-button-text {
    margin-right: 6px;
}

.premium-button-icon {
    font-size: 11px;
}

/* 빈 상태 */
.premium-empty {
    padding: 40px 20px;
    text-align: center;
    color: #999;
    font-size: 15px;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.premium-empty i {
    font-size: 24px;
    color: #ddd;
    margin-bottom: 10px;
}

/* 애니메이션 */
@keyframes premiumFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.premium-slide {
    animation: premiumFadeIn 0.4s ease forwards;
}

/* 반응형 */
@media (max-width: 768px) {
    .premium-container {
        width: 100%;
        margin-left: 0;
    }
    
    .premium-description {
        font-size: 14px;
    }
}</pre></body></html>