body {
    font-family: 'Hind Siliguri', sans-serif;
    background-color: #0f172a;
    color: #f8fafc;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1e293b; 
}

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

::-webkit-scrollbar-thumb:hover {
    background: #ef4444; 
}

.video-shadow {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.loader {
    border: 4px solid #1e293b;
    border-top: 4px solid #ef4444;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Reels Scroll Snap Specific Styles */
.reels-container {
    height: calc(100vh - 65px);
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
}

.reel-card {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    height: calc(100vh - 65px);
}
