/* Market 섹션 (마켓 초대) */
.section-market {
    background: var(--bg);
    color: var(--text);
    position: relative;
    overflow: hidden;
}

.market-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.float-icon {
    position: absolute;
    left: var(--x);
    top: var(--y);
    font-size: 32px;
    color: var(--primary);
    opacity: 0.15;
    animation: floatIcon 6s ease-in-out infinite;
    animation-delay: var(--delay);
}

.float-icon:nth-child(odd) {
    animation-duration: 7s;
}

.float-icon:nth-child(even) {
    animation-duration: 5s;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.section-market .section-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 32px;
    position: relative;
    z-index: 1;
}

.section-market h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.3;
    color: var(--text);
}

.market-desc {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-muted);
    line-height: 1.6;
}

.btn-market {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 16px;
}

.btn-market:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.4);
}

.btn-market i {
    font-size: 20px;
}

/* 반응형 */
@media (max-width: 768px) {
    .float-icon {
        font-size: 24px;
    }
}
