body {
    font-family: 'Noto Sans KR', sans-serif;
    background-color: #f3f4f6;
}

/* 스크롤바 커스텀 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* 히어로 섹션 비디오 오버레이 */
.video-overlay {
    background: linear-gradient(to bottom, rgba(30, 58, 138, 0.7), rgba(30, 58, 138, 0.4));
}

/* 카드 호버 효과 */
.product-card {
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* 깜빡이는 라이브 시세 효과 */
@keyframes pulse-green {
    0% {
        color: #10b981;
    }

    50% {
        color: #059669;
    }

    100% {
        color: #10b981;
    }
}

.live-rate {
    animation: pulse-green 2s infinite;
}