body {
    background-color: #050505; /* Глубокий черный */
    color: white;
    font-family: 'Arial Black', Gadget, sans-serif;
    display: flex;
    justify-content: center;
    padding: 20px 10px; /* Отступы сверху и по бокам */
    margin: 0;
    box-sizing: border-box;
}

.container {
    width: 100%;
    max-width: 500px; /* Ограничение ширины для ПК, на телефонах будет на весь экран */
}

.main-title {
    text-align: center;
    color: #e60000; /* Ярко-красный */
    text-shadow: 2px 2px 0px #000, 0 0 10px rgba(230, 0, 0, 0.5);
    text-transform: uppercase;
    font-size: clamp(18px, 5vw, 26px); /* Размер шрифта подстраивается под экран */
    margin-bottom: 25px;
}

/* Кнопка Сезона (Стиль костюма Леди Баг) */
.season-wrapper {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid #e60000;
    box-shadow: 0 0 20px rgba(230, 0, 0, 0.2);
    width: 100%
}

.season-header {
    padding: 18px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Красный фон с черными точками */
    background-color: #e60000;
    background-image: radial-gradient(#000 20%, transparent 20%);
    background-size: 30px 30px; 
    color: white;
    text-shadow: 1px 1px 3px #000;
    border-bottom: 3px solid #000;
    transition: filter 0.2s;
}

.season-header:hover {
    filter: brightness(1.2);
}

/* Список серий */
.episode-list {
    background: #1a1a1a;
    padding: 0; /* Убираем лишние отступы */
}

.episode-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #333;
}

.episode-item:last-child {
    border-bottom: none;
}

.ep-name {
    font-size: 14px;
    color: #eee;
    padding-right: 10px;
}

/* Кнопка Дивитися (Черная, как маска) */
.play-link {
    background: #000;
    color: #fff !important;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: bold;
    border: 1px solid #e60000;
    transition: 0.3s;
    white-space: nowrap; /* Чтобы текст кнопки не переносился */
}

.play-link:hover {
    background: #e60000;
    box-shadow: 0 0 15px #e60000;
}

/* Адаптивность для очень маленьких экранов */
@media (max-width: 350px) {
    .season-header { font-size: 16px; padding: 12px; }
    .play-link { padding: 8px 12px; font-size: 10px; }
}

/* Анимация появления */
.episode-list {
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}