.season-player-wrap {
    max-width: 1000px;
    margin: 10px auto; /* იყო 40px */
    font-family: 'Segoe UI', sans-serif;
}

/* Player */
#season-player {
    display: block;
    margin-top: 6px; /* პატარა დაშორება სეზონებიდან */
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    transition: opacity 0.3s ease;
    background: #000;
}

/* Scroll Container */
#seasons-ui {
    margin-top: 6px;   /* იყო 20px */
    margin-bottom: 6px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px; /* იყო 10px */
    scroll-behavior: smooth;
}

/* Scrollbar */
#seasons-ui::-webkit-scrollbar {
    height: 6px;
}
#seasons-ui::-webkit-scrollbar-thumb {
    background: #ff4b2b;
    border-radius: 10px;
}

/* Button */
.season-btn {
    flex: 0 0 auto;
    padding: 8px 18px; /* ოდნავ დავაპატარავე */
    border-radius: 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(135deg, #2b2b2b, #3a3a3a);
    color: #fff;
    transition: 0.25s;
    white-space: nowrap;
}

.season-btn:hover {
    transform: translateY(-2px);
}

.season-btn.active {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
}

.next-episode-box {
    background: #141414;
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
    color: #fff;
    border: 1px solid #2a2a2a;
}

.next-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 6px;
}

.next-date {
    color: #bbb;
    margin-bottom: 6px;
}

.next-count {
    color: #ffcc00;
    font-weight: bold;
}

.next-released {
    color: #4CAF50;
    font-weight: bold;
}