@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #2563eb;
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.video-tab-btn {
    transition: all 0.2s ease-in-out;
}

.video-tab-btn:hover {
    transform: translateX(5px);
}

.video-tab-btn.active {
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

@media (max-width: 1023px) {
    #videoTabs {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    .video-tab-btn {
        flex-shrink: 0;
        margin-right: 10px;
        border-radius: 12px !important;
        border-left: none !important;
        border-bottom: 3px solid transparent;
    }
    .video-tab-btn.active {
        border-bottom-color: #2563eb !important;
    }
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}
