body {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    @apply bg-mobile-bg md:bg-background-dark text-white min-h-screen overflow-x-hidden;
}

.custom-scrollbar::-webkit-scrollbar { width: 4px; }
.custom-scrollbar::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.02); }
.custom-scrollbar::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.1); border-radius: 2px; }

.glass-panel {
    background: rgba(17, 25, 40, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.glass-card:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 255, 255, 0.05);
}
.glass-glow {
    box-shadow: 0 0 20px rgba(17, 82, 212, 0.15);
    border-color: rgba(17, 82, 212, 0.3);
}
.glass-glow:hover {
    box-shadow: 0 0 30px rgba(17, 82, 212, 0.4);
    border-color: rgba(17, 82, 212, 0.6);
}
.list-item-hover { transition: all 0.2s ease; }
.list-item-hover:hover { transform: translateX(4px); background-color: rgba(255, 255, 255, 0.08); }

.mobile-card-hover {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-card-hover:hover {
    transform: scale(1.02);
    background-color: #232f48;
    border-color: rgba(255, 255, 255, 0.1);
}
.mobile-card-hover:active {
    transform: scale(0.98);
}