/* style.css */
body { -webkit-tap-highlight-color: transparent; }
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.opt-btn { transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1); }
.opt-btn:active { transform: scale(0.98); background-color: #F0FDFA; }

.badge {
    width: 24px; height: 24px; border-radius: 6px; 
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 12px; flex-shrink: 0; margin-right: 12px;
}

.glass-effect { 
    backdrop-filter: blur(16px); 
    -webkit-backdrop-filter: blur(16px); 
    background: rgba(255, 255, 255, 0.8);
}
.dark .glass-effect { background: rgba(28, 25, 23, 0.8); }