/* Основные стили */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.footer {
    margin-top: auto;
}

/* Главная страница */
.hero-section {
    border-radius: 10px;
    margin-bottom: 2rem;
}

.video-container video {
    max-height: 500px;
    background: #000;
}

/* Фильтр категорий */
.filter-btn {
    margin: 2px;
}

.filter-btn.active {
    background-color: #0d6efd;
    color: white;
}

/* Карточка видео */
#videoInfo {
    height: 100%;
}

/* Кнопки навигации */
#prevVideo, #nextVideo {
    font-size: 2rem;
    padding: 10px 20px;
    border-radius: 50%;
}

#prevVideo:hover, #nextVideo:hover {
    background-color: #0d6efd;
    color: white;
}