<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* 윙배너 트렌디 디자인 - 핑크-퍼플 컬러 스킴 */

/* 메인 컨테이너 */
.wing-widget {
    width: 180px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* 아이템 카드 */
.wing-item {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 15px rgba(213, 63, 140, 0.12);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(213, 63, 140, 0.08);
}

.wing-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(213, 63, 140, 0.2);
}

/* 헤더 영역 */
.wing-header {
    position: relative;
    padding: 12px;
    background: #4169E1;
    color: #fff;
    text-align: center;
}

.wing-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 60%);
    pointer-events: none;
}

.wing-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #fff;
    color: #1E90FF;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 0 12px 0 12px;
    box-shadow: -2px 2px 6px rgba(0,0,0,0.1);
}

.wing-title {
    font-size: 15px;
    font-weight: 600;
line-height:1;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    letter-spacing: -0.5px;
}

/* 콘텐츠 영역 */
.wing-content {
    padding: 15px 12px;
    background: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.wing-content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, rgba(213,63,140,0) 0%, rgba(213,63,140,0.5) 50%, rgba(213,63,140,0) 100%);
}

.wing-text {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 2px;
}

.wing-highlight {
    color: #1E90FF;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* 버튼 */
.wing-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: transparent;
    color: #4169E1;
    border: 1px solid #4169E1;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 15px;
    margin-top: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.wing-button i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.wing-item:hover .wing-button {
    background: linear-gradient(135deg, #1E90FF 0%, #4169E1 100%);
    color: #fff;
    border-color: transparent;
}

.wing-item:hover .wing-button i {
    transform: translateX(3px);
}

/* 빈 상태 */
.wing-empty {
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(213, 63, 140, 0.05);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    color: #aaa;
}

.wing-empty i {
    font-size: 24px;
    margin-bottom: 10px;
    color: rgba(213, 63, 140, 0.3);
}

.wing-empty p {
    margin: 0;
    font-size: 13px;
}

/* 애니메이션 */
@keyframes wingPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(213, 63, 140, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(213, 63, 140, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(213, 63, 140, 0);
    }
}

.wing-badge {
    animation: wingPulse 2s infinite;
}</pre></body></html>