        /* 프리미엄 히어로 섹션 */
        .hero {
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            background: radial-gradient(ellipse at top, #1a1a2e 0%, #000 100%);
            overflow: hidden;
            margin-top: 80px;
        }
        
        /* 복잡한 기하학적 배경 패턴 */
        .geometric-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0.4;
        }
        
        .geo-line {
            position: absolute;
            background: linear-gradient(90deg, transparent, rgba(91, 76, 255, 0.4), rgba(0, 212, 255, 0.3), transparent);
            height: 1px;
            width: 200%;
            animation: slide-line 20s linear infinite;
            filter: blur(1px);
        }
        
        .geo-line:nth-child(1) { top: 10%; animation-duration: 25s; }
        .geo-line:nth-child(2) { top: 30%; animation-duration: 30s; animation-direction: reverse; }
        .geo-line:nth-child(3) { top: 50%; animation-duration: 35s; }
        .geo-line:nth-child(4) { top: 70%; animation-duration: 40s; animation-direction: reverse; }
        .geo-line:nth-child(5) { top: 90%; animation-duration: 45s; }
        
        @keyframes slide-line {
            from { transform: translateX(-50%) scaleY(1); }
            50% { transform: translateX(-25%) scaleY(1.5); }
            to { transform: translateX(0) scaleY(1); }
        }
        
        /* 3D 회전 큐브 배경 */
        .cube-container {
            position: absolute;
            width: 100%;
            height: 100%;
            perspective: 1500px;
            perspective-origin: 50% 50%;
            pointer-events: none;
            transform-style: preserve-3d;
        }
        
        .cube {
            position: absolute;
            width: 100px;
            height: 100px;
            transform-style: preserve-3d;
            animation: rotate-cube 20s cubic-bezier(0.4, 0.0, 0.6, 1.0) infinite;
        }
        
        .cube:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-duration: 30s;
            animation-timing-function: cubic-bezier(0.45, 0.05, 0.55, 0.95);
            width: 100px;
            height: 100px;
        }
        
        .cube:nth-child(2) {
            top: 60%;
            right: 15%;
            animation-duration: 25s;
            animation-direction: reverse;
            animation-timing-function: cubic-bezier(0.42, 0.0, 0.58, 1.0);
            width: 80px;
            height: 80px;
        }
        
        .cube:nth-child(3) {
            bottom: 20%;
            left: 50%;
            animation-duration: 35s;
            animation-timing-function: cubic-bezier(0.35, 0.0, 0.65, 1.0);
            width: 140px;
            height: 140px;
        }
        
        @keyframes rotate-cube {
            0% { 
                transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1); 
            }
            10% {
                transform: rotateX(36deg) rotateY(36deg) rotateZ(18deg) scale(1.02);
            }
            20% {
                transform: rotateX(72deg) rotateY(72deg) rotateZ(36deg) scale(1.05);
            }
            30% {
                transform: rotateX(108deg) rotateY(108deg) rotateZ(54deg) scale(1.08);
            }
            40% {
                transform: rotateX(144deg) rotateY(144deg) rotateZ(72deg) scale(1.1);
            }
            50% {
                transform: rotateX(180deg) rotateY(180deg) rotateZ(90deg) scale(1.08);
            }
            60% {
                transform: rotateX(216deg) rotateY(216deg) rotateZ(108deg) scale(1.05);
            }
            70% {
                transform: rotateX(252deg) rotateY(252deg) rotateZ(126deg) scale(1.02);
            }
            80% {
                transform: rotateX(288deg) rotateY(288deg) rotateZ(144deg) scale(0.98);
            }
            90% {
                transform: rotateX(324deg) rotateY(324deg) rotateZ(162deg) scale(0.95);
            }
            100% { 
                transform: rotateX(360deg) rotateY(360deg) rotateZ(180deg) scale(1); 
            }
        }
        
        .cube-face {
            position: absolute;
            width: 100%;
            height: 100%;
            border: 1px solid rgba(91, 76, 255, 0.3);
            background: linear-gradient(135deg, rgba(91, 76, 255, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
            backdrop-filter: blur(5px);
            box-shadow: inset 0 0 10px rgba(91, 76, 255, 0.05);
            transition: all 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
        }
        
        .cube-face::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, 
                rgba(255, 255, 255, 0.3) 0%, 
                rgba(255, 255, 255, 0.1) 40%, 
                transparent 70%);
            animation: face-sparkle 3s ease-in-out infinite;
        }
        
        @keyframes face-sparkle {
            0%, 100% { 
                opacity: 0.3;
                transform: scale(1);
            }
            50% { 
                opacity: 0.8;
                transform: scale(1.05);
            }
        }
        
        .cube-face:nth-child(1) { transform: translateZ(60px); }
        .cube-face:nth-child(2) { transform: rotateY(90deg) translateZ(60px); }
        .cube-face:nth-child(3) { transform: rotateY(180deg) translateZ(60px); }
        .cube-face:nth-child(4) { transform: rotateY(270deg) translateZ(60px); }
        .cube-face:nth-child(5) { transform: rotateX(90deg) translateZ(60px); }
        .cube-face:nth-child(6) { transform: rotateX(-90deg) translateZ(60px); }
        
        /* 각 면마다 다른 반짝임 타이밍 */
        .cube-face:nth-child(1)::before { animation-delay: 0s; }
        .cube-face:nth-child(2)::before { animation-delay: 0.5s; }
        .cube-face:nth-child(3)::before { animation-delay: 1s; }
        .cube-face:nth-child(4)::before { animation-delay: 1.5s; }
        .cube-face:nth-child(5)::before { animation-delay: 2s; }
        .cube-face:nth-child(6)::before { animation-delay: 2.5s; }
        
        /* 파티클 시스템 */
        .particles {
            position: absolute;
            width: 100%;
            height: 100%;
        }
        
        .particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: radial-gradient(circle, rgba(91, 76, 255, 0.6) 0%, rgba(0, 212, 255, 0.4) 100%);
            border-radius: 50%;
            animation: float-particle 20s linear infinite;
            opacity: 0.8;
        }
        
        @keyframes float-particle {
            from {
                transform: translateY(100vh) translateX(0) scale(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            50% {
                transform: translateY(50vh) translateX(100px) scale(1.5) rotate(180deg);
            }
            90% {
                opacity: 1;
            }
            to {
                transform: translateY(-100vh) translateX(-100px) scale(0) rotate(360deg);
                opacity: 0;
            }
        }
        
        /* 메인 컨테이너 */
        .hero-container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 60px;
            position: relative;
            z-index: 10;
            width: 100%;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 100px;
            align-items: center;
        }
        
        /* 고급 텍스트 스타일링 */
        .hero-content {
            position: relative;
        }
        
        .premium-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, rgba(91, 76, 255, 0.2), rgba(0, 212, 255, 0.1));
            border: 1px solid transparent;
            background-clip: padding-box;
            position: relative;
            color: #fff;
            padding: 12px 24px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 30px;
            overflow: hidden;
            animation: badge-glow 3s ease-in-out infinite;
        }
        
        .premium-badge::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #5b4cff, #00d4ff, #5b4cff, #00d4ff);
            background-size: 400% 400%;
            border-radius: 50px;
            z-index: -1;
            animation: gradient-rotate 3s linear infinite;
            filter: blur(3px);
        }
        
        @keyframes gradient-rotate {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        @keyframes badge-glow {
            0%, 100% {
                box-shadow: 0 0 20px rgba(91, 76, 255, 0.3),
                           inset 0 0 20px rgba(91, 76, 255, 0.1);
                transform: translateY(0);
            }
            50% {
                box-shadow: 0 0 30px rgba(91, 76, 255, 0.4),
                           inset 0 0 25px rgba(91, 76, 255, 0.15);
                transform: translateY(-2px);
            }
        }
        
        .badge-icon {
            display: inline-block;
            animation: icon-pulse 2s ease-in-out infinite;
        }
        
        @keyframes icon-pulse {
            0%, 100% { 
                transform: scale(1) rotate(0deg); 
            }
            50% { 
                transform: scale(1.1) rotate(180deg); 
            }
        }
        
        .hero-title {
            font-size: 5.5rem;
            font-weight: 900;
            line-height: 1.1;
            color: #fff;
            margin-bottom: 40px;
            position: relative;
            letter-spacing: -0.03em;
            animation: title-reveal 1.5s ease-out;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }
        
        @keyframes title-reveal {
            from {
                opacity: 0;
                transform: translateY(50px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        .hero-title .highlight {
            position: relative;
            display: inline-block;
            color: #00d4ff;
            text-shadow: none;
        }

        .hero-title .highlight::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            right: 0;
            height: 3px;
            background: rgba(0, 212, 255, 0.45);
            border-radius: 2px;
        }
        
        @keyframes highlight-pulse {
            0%, 100% { 
                opacity: 0.8; 
                transform: scaleX(1) scaleY(1); 
            }
            50% { 
                opacity: 0.9; 
                transform: scaleX(1.05) scaleY(1.2); 
            }
        }
        
        .hero-description {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            margin-bottom: 50px;
            max-width: 600px;
            position: relative;
            animation: desc-fade 1.5s ease-out 0.3s both;
            text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
        }
        
        @keyframes desc-fade {
            from {
                opacity: 0;
                transform: translateX(-30px);
                filter: blur(5px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
                filter: blur(0);
            }
        }
        
        /* 프리미엄 CTA 버튼 */
        .cta-wrapper {
            display: flex;
            gap: 20px;
            align-items: center;
            animation: cta-slide 1.5s ease-out 0.6s both;
        }
        
        @keyframes cta-slide {
            from {
                opacity: 0;
                transform: translateY(30px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 22px 45px;
            background: linear-gradient(135deg, #5b4cff 0%, #00d4ff 100%);
            color: white;
            border: none;
            border-radius: 60px;
            font-size: 1.15rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            text-decoration: none;
            box-shadow: 0 20px 40px rgba(91, 76, 255, 0.3),
                       inset 0 2px 5px rgba(255, 255, 255, 0.2);
        }
        
        .hero-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.5s ease;
        }
        
        .hero-cta::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }
        
        .hero-cta:hover::before {
            left: 100%;
        }
        
        .hero-cta:hover::after {
            width: 300px;
            height: 300px;
        }
        
        .hero-cta:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 30px 60px rgba(91, 76, 255, 0.5),
                       inset 0 2px 10px rgba(255, 255, 255, 0.3);
        }
        
        .hero-cta span:last-child {
            transition: transform 0.3s ease;
        }
        
        .hero-cta:hover span:last-child {
            transform: translateX(5px);
        }
        
        .secondary-cta {
            padding: 22px 45px;
            background: rgba(255, 255, 255, 0.05);
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 60px;
            font-size: 1.15rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            backdrop-filter: blur(20px);
            position: relative;
            overflow: hidden;
        }
        
        .secondary-cta::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }
        
        .secondary-cta:hover::before {
            width: 300px;
            height: 300px;
        }
        
        .secondary-cta:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1);
        }
        
        /* 고급 통계 카드 */
        .stats-container {
            position: relative;
            animation: stats-reveal 1.5s ease-out 0.9s both;
        }
        
        @keyframes stats-reveal {
            from {
                opacity: 0;
                transform: scale(0.8) rotate(5deg);
                filter: blur(10px);
            }
            to {
                opacity: 1;
                transform: scale(1) rotate(0deg);
                filter: blur(0);
            }
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            position: relative;
        }
        
        .stat-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
            backdrop-filter: blur(30px) saturate(150%);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            padding: 40px;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            transform-style: preserve-3d;
            transform: perspective(1000px) rotateX(0) rotateY(0);
        }
        
        .stat-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(91, 76, 255, 0.15) 0%, transparent 70%);
            transform: scale(0);
            transition: transform 0.6s ease;
        }
        
        .stat-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.05) 50%, transparent 60%);
            transform: translateX(-100%) translateY(-100%);
            transition: transform 0.6s ease;
        }
        
        .stat-card:hover::before {
            transform: scale(1);
        }
        
        .stat-card:hover::after {
            transform: translateX(100%) translateY(100%);
        }
        
        .stat-card:hover {
            transform: translateY(-15px) scale(1.05);
            border-color: rgba(91, 76, 255, 0.3);
            box-shadow: 0 30px 60px rgba(91, 76, 255, 0.3),
                       inset 0 1px 0 rgba(255, 255, 255, 0.2);
            background: linear-gradient(135deg, rgba(91, 76, 255, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
        }
        
        
        @keyframes icon-float {
            0%, 100% { 
                transform: translateY(0) rotate(-3deg); 
            }
            50% { 
                transform: translateY(-5px) rotate(3deg); 
            }
        }
        
        /* 라이브 표시 */
        .live-indicator {
            position: absolute;
            top: 15px;
            right: 15px;
            display: flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 68, 68, 0.9);
            padding: 4px 10px;
            border-radius: 15px;
            box-shadow: 0 2px 10px rgba(255, 68, 68, 0.3);
            z-index: 10;
        }
        
        .live-dot {
            width: 6px;
            height: 6px;
            background: #fff;
            border-radius: 50%;
            position: relative;
            animation: live-blink 1.5s ease-in-out infinite;
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
        }
        
        .live-dot::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            background: #fff;
            border-radius: 50%;
            animation: live-wave 1.5s ease-out infinite;
        }
        
        @keyframes live-blink {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.3;
                transform: scale(0.8);
            }
        }
        
        @keyframes live-wave {
            0% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }
            100% {
                transform: translate(-50%, -50%) scale(4);
                opacity: 0;
            }
        }
        
        .live-text {
            font-size: 0.7rem;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.5);
            font-weight: 400;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: 15px;
            display: block;
            position: relative;
            z-index: 2;
        }
        
        .stat-value {
            font-size: 4.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #fff 0%, #8b80ff 50%, #00d4ff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 10px;
            display: block;
            position: relative;
            z-index: 2;
            animation: value-pulse 2s ease-in-out infinite;
        }
        
        @keyframes value-pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.02); }
        }
        
        .stat-desc {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
            position: relative;
            z-index: 2;
        }
        
        /* 궤도 애니메이션 */
        .orbit-container {
            position: absolute;
            width: 600px;
            height: 600px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
        }
        
        .orbit {
            position: absolute;
            width: 100%;
            height: 100%;
            border: 1px solid rgba(91, 76, 255, 0.1);
            border-radius: 50%;
            animation: rotate-orbit 30s linear infinite;
            box-shadow: 0 0 10px rgba(91, 76, 255, 0.1),
                       inset 0 0 10px rgba(91, 76, 255, 0.05);
        }
        
        .orbit:nth-child(1) {
            width: 80%;
            height: 80%;
            top: 10%;
            left: 10%;
            animation-duration: 25s;
            animation-direction: reverse;
        }
        
        .orbit:nth-child(2) {
            width: 60%;
            height: 60%;
            top: 20%;
            left: 20%;
            animation-duration: 20s;
        }
        
        @keyframes rotate-orbit {
            from { 
                transform: rotate(0deg) scale(1); 
            }
            50% {
                transform: rotate(180deg) scale(1.05);
            }
            to { 
                transform: rotate(360deg) scale(1); 
            }
        }
        
        .orbit-dot {
            position: absolute;
            width: 12px;
            height: 12px;
            background: radial-gradient(circle, #5b4cff 0%, #00d4ff 100%);
            border-radius: 50%;
            top: -6px;
            left: 50%;
            transform: translateX(-50%);
            box-shadow: 0 0 15px rgba(91, 76, 255, 0.6),
                       0 0 30px rgba(0, 212, 255, 0.4);
            animation: dot-pulse 2s ease-in-out infinite;
        }
        
        @keyframes dot-pulse {
            0%, 100% {
                transform: translateX(-50%) scale(1);
                box-shadow: 0 0 20px rgba(91, 76, 255, 0.8),
                           0 0 40px rgba(0, 212, 255, 0.6);
            }
            50% {
                transform: translateX(-50%) scale(1.2);
                box-shadow: 0 0 25px rgba(91, 76, 255, 0.9),
                           0 0 50px rgba(0, 212, 255, 0.7);
            }
        }
        
        /* 홀로그램 효과 */
        .hologram {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            opacity: 0.15;
            mix-blend-mode: screen;
        }
        
        .holo-line {
            position: absolute;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, #00d4ff 20%, #5b4cff 50%, #00d4ff 80%, transparent);
            animation: scan 4s linear infinite;
            filter: blur(1px);
            opacity: 0.8;
        }
        
        @keyframes scan {
            from { 
                transform: translateY(-100vh); 
                opacity: 0;
            }
            5% {
                opacity: 1;
            }
            95% {
                opacity: 1;
            }
            to { 
                transform: translateY(100vh); 
                opacity: 0;
            }
        }

        /* CSS 아이콘 스타일 */
        /* 로켓 아이콘 */
        .icon-rocket {
            position: relative;
            width: 40px;
            height: 40px;
        }

        .rocket-body {
            position: absolute;
            top: 5px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 30px;
            background: linear-gradient(135deg, #5b4cff 0%, #00d4ff 100%);
            border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
            box-shadow: 0 0 10px rgba(91, 76, 255, 0.5);
        }

        .rocket-window {
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 8px;
            height: 8px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
        }

        .rocket-fin {
            position: absolute;
            bottom: 5px;
            width: 8px;
            height: 12px;
            background: linear-gradient(135deg, #5b4cff 0%, #7366ff 100%);
            clip-path: polygon(0 0, 100% 50%, 0 100%);
        }

        .rocket-fin-left {
            left: 2px;
            transform: rotate(-30deg);
        }

        .rocket-fin-right {
            right: 2px;
            transform: rotate(30deg) scaleX(-1);
        }

        .rocket-flame {
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 16px;
            height: 20px;
            background: linear-gradient(180deg, #ff6b6b 0%, #ffa500 50%, #ffff00 100%);
            border-radius: 50% 50% 50% 50% / 30% 30% 70% 70%;
            filter: blur(2px);
            animation: flame-flicker 0.3s ease-in-out infinite alternate;
        }

        @keyframes flame-flicker {
            0% { transform: translateX(-50%) scaleY(1); opacity: 0.8; }
            100% { transform: translateX(-50%) scaleY(1.2); opacity: 1; }
        }

        /* 별 아이콘 */
        .icon-star {
            position: relative;
            width: 40px;
            height: 40px;
        }

        .star-main {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 30px;
            height: 30px;
            background: linear-gradient(135deg, #5b4cff 0%, #00d4ff 100%);
            clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
            box-shadow: 0 0 15px rgba(91, 76, 255, 0.6);
            animation: star-rotate 4s linear infinite;
        }

        @keyframes star-rotate {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }

        .star-sparkle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: white;
            border-radius: 50%;
            animation: sparkle 1.5s ease-in-out infinite;
        }

        .star-sparkle-1 { top: 5px; left: 10px; animation-delay: 0s; }
        .star-sparkle-2 { top: 10px; right: 5px; animation-delay: 0.4s; }
        .star-sparkle-3 { bottom: 5px; right: 10px; animation-delay: 0.8s; }
        .star-sparkle-4 { bottom: 10px; left: 5px; animation-delay: 1.2s; }

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

        /* 차트 아이콘 */
        .icon-chart {
            position: relative;
            width: 40px;
            height: 40px;
        }

        .chart-body {
            position: absolute;
            bottom: 5px;
            left: 5px;
            width: 30px;
            height: 25px;
            border-left: 2px solid rgba(255, 255, 255, 0.5);
            border-bottom: 2px solid rgba(255, 255, 255, 0.5);
        }

        .chart-line {
            position: absolute;
            bottom: 2px;
            left: 2px;
            width: 26px;
            height: 20px;
            background: linear-gradient(135deg, transparent 50%, #5b4cff 50%, #5b4cff 52%, transparent 52%);
            background-size: 100% 100%;
            animation: line-move 3s ease-in-out infinite;
        }

        @keyframes line-move {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        .chart-up-arrow {
            position: absolute;
            top: 2px;
            right: 2px;
            width: 15px;
            height: 15px;
        }

        .chart-up-arrow::before {
            content: '';
            position: absolute;
            width: 8px;
            height: 8px;
            border-top: 2px solid #00d4ff;
            border-right: 2px solid #00d4ff;
            transform: rotate(-45deg);
            top: 5px;
            left: 3px;
            box-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
            animation: arrow-glow 1.5s ease-in-out infinite;
        }

        @keyframes arrow-glow {
            0%, 100% { 
                box-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
                transform: rotate(-45deg) translateY(0);
            }
            50% { 
                box-shadow: 0 0 20px rgba(0, 212, 255, 1);
                transform: rotate(-45deg) translateY(-2px);
            }
        }
        
