﻿/* ============================================
   EPISODES PAGE SPECIFIC STYLES
   ============================================ */

:root {
    --black: #000000;
    --noir: #0a0608;
    --charcoal: #14101a;
    --slate: #1c1624;
    --steel: #2d2438;
    --silver: #9a8fa8;
    --pearl: #f0eaf5;
    --white: #ffffff;
    --ruby: #e31b54;
    --crimson: #c41040;
    --gold: #f5a623;
    --amber: #ffb347;
    --burgundy: #6b1c3a;
    --royal-purple: #4a1259;
    --deep-violet: #2d1b4e;
    --font-body: 'Vazirmatn', 'Tajawal', 'Cairo', sans-serif;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Theme: Ocean Blue */
[data-theme="ocean"] {
    --ruby: #0ea5e9;
    --crimson: #0284c7;
    --gold: #38bdf8;
    --amber: #7dd3fc;
    --burgundy: #0c4a6e;
    --royal-purple: #075985;
}

/* Theme: Emerald Green */
[data-theme="emerald"] {
    --ruby: #10b981;
    --crimson: #059669;
    --gold: #34d399;
    --amber: #6ee7b7;
    --burgundy: #064e3b;
    --royal-purple: #047857;
}

/* Theme: Purple Night */
[data-theme="purple"] {
    --ruby: #a855f7;
    --crimson: #9333ea;
    --gold: #c084fc;
    --amber: #d8b4fe;
    --burgundy: #4c1d95;
    --royal-purple: #6b21a8;
}

/* Theme: Sunset Orange */
[data-theme="sunset"] {
    --ruby: #f97316;
    --crimson: #ea580c;
    --gold: #fb923c;
    --amber: #fdba74;
    --burgundy: #7c2d12;
    --royal-purple: #9a3412;
}

/* Theme: Rose Pink */
[data-theme="rose"] {
    --ruby: #ec4899;
    --crimson: #db2777;
    --gold: #f472b6;
    --amber: #f9a8d4;
    --burgundy: #831843;
    --royal-purple: #9d174d;
}

/* Theme: Red */
[data-theme="red"] {
    --ruby: #ef4444;
    --crimson: #dc2626;
    --gold: #f87171;
    --amber: #fca5a5;
    --burgundy: #7f1d1d;
    --royal-purple: #991b1b;
}

/* Theme: Dark Red */
[data-theme="darkred"] {
    --ruby: #b91c1c;
    --crimson: #991b1b;
    --gold: #dc2626;
    --amber: #ef4444;
    --burgundy: #450a0a;
    --royal-purple: #7f1d1d;
}

/* Theme: Yellow */
[data-theme="yellow"] {
    --ruby: #eab308;
    --crimson: #ca8a04;
    --gold: #facc15;
    --amber: #fde047;
    --burgundy: #713f12;
    --royal-purple: #854d0e;
}

/* Theme: Dark Yellow */
[data-theme="darkyellow"] {
    --ruby: #a16207;
    --crimson: #854d0e;
    --gold: #ca8a04;
    --amber: #eab308;
    --burgundy: #422006;
    --royal-purple: #713f12;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: var(--noir);
    color: var(--pearl);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Background Wallpaper */
.bg-wallpaper {
    position: fixed;
    inset: 0;
    z-index: -2;
}

.bg-wallpaper__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(30px) saturate(1.2);
    transform: scale(1.1);
    opacity: 0.4;
}

.bg-wallpaper__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 12, 16, 0.3) 0%, rgba(10, 12, 16, 0.7) 40%, rgba(10, 12, 16, 0.95) 70%, var(--noir) 100%),
        radial-gradient(ellipse at 30% 20%, rgba(227, 27, 84, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(245, 166, 35, 0.1) 0%, transparent 50%);
}

/* Floating Particles */
.particles {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 20%;
    top: 60%;
    animation-delay: -3s;
    width: 3px;
    height: 3px;
}

.particle:nth-child(3) {
    left: 70%;
    top: 30%;
    animation-delay: -6s;
}

.particle:nth-child(4) {
    left: 80%;
    top: 70%;
    animation-delay: -9s;
    width: 5px;
    height: 5px;
}

.particle:nth-child(5) {
    left: 50%;
    top: 50%;
    animation-delay: -12s;
}

.particle:nth-child(6) {
    left: 30%;
    top: 80%;
    animation-delay: -15s;
    width: 3px;
    height: 3px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }

    25% {
        transform: translateY(-30px) translateX(10px);
        opacity: 0.5;
    }

    50% {
        transform: translateY(-10px) translateX(-15px);
        opacity: 0.2;
    }

    75% {
        transform: translateY(-40px) translateX(5px);
        opacity: 0.4;
    }
}

/* Series Cover */
.series-cover {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    padding-top: 120px;
    margin-top: -120px;
    overflow: hidden;
}

.series-cover__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}

.series-cover__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 6, 8, 0.2) 0%, rgba(10, 6, 8, 0.6) 50%, var(--noir) 100%);
    z-index: 1;
}

.series-cover::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, var(--ruby) 0%, transparent 60%);
    opacity: 0.1;
    mix-blend-mode: overlay;
    z-index: 2;
}

.series-cover__content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 48px;
    display: flex;
    align-items: flex-end;
    gap: 40px;
}

.series-cover__poster {
    flex-shrink: 0;
    width: 200px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.series-cover__poster img {
    width: 100%;
    display: block;
}

.series-cover__info {
    flex: 1;
    padding-bottom: 10px;
}

.series-cover__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: var(--pearl);
    font-size: 0.85rem;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.series-cover__back:hover {
    background: var(--ruby);
    border-color: var(--ruby);
}

.series-cover__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.series-cover__summary {
    color: var(--silver);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 600px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.series-cover__meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    transition: all 0.3s ease;
}

.series-cover__meta:hover {
    transform: translateX(-5px);
}

.series-cover__tag {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--pearl);
    transition: all 0.4s var(--ease-out-expo);
    cursor: pointer;
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-width: 100%;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.series-cover__tag::-webkit-scrollbar {
    display: none;
}

.series-cover__tag::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--ruby), var(--crimson));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.series-cover__tag i {
    color: var(--gold);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.series-cover__tag a {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    flex-shrink: 0;
    white-space: nowrap;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    margin: 2px;
}

.series-cover__tag a:hover {
    background: linear-gradient(135deg, var(--ruby), var(--crimson));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 27, 84, 0.3);
}


/* Scrollable Names Layout (like season-nav) */
.series-cover__tag-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--silver);
    font-size: 0.9rem;
    font-weight: 600;
    flex-shrink: 0;
    padding: 8px 16px 8px 0;
}

.series-cover__tag-label i {
    color: var(--gold);
    font-size: 1rem;
}

.series-cover__tag-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    flex: 1;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    padding: 4px 0;
}

.series-cover__tag-scroll::-webkit-scrollbar {
    display: none;
}

.series-cover__name {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--pearl);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
    flex-shrink: 0;
    white-space: nowrap;
}

.series-cover__name:hover {
    background: linear-gradient(135deg, var(--ruby), var(--crimson));
    border-color: var(--ruby);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(227, 27, 84, 0.3);
    color: var(--white);
}

@media (max-width: 768px) {
    .series-cover {
        min-height: 400px;
    }

    .series-cover__content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px 20px;
    }

    .series-cover__poster {
        width: 150px;
    }

    .series-cover__title {
        font-size: 1.8rem;
    }

    .series-cover__summary {
        max-width: 100%;
     /*   -webkit-line-clamp: 2;*/
        font-size: 0.9rem;
    }

        .series-cover__meta {
        justify-content: center;
        flex-wrap: wrap;
        overflow: visible;
        max-width: 100%;
    }


    .series-cover__tag {
        flex-wrap: wrap;
        white-space: normal;
        overflow: visible;
        max-width: 100%;
        border-radius: 20px;
    }

    .series-cover__tag a {
        white-space: nowrap;
        display: inline;
    }
}

/* Seasons Section */
.seasons-section {
    padding: 60px 40px 80px;
    position: relative;
    overflow: visible;
}

.seasons-section__title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.seasons-section__title i {
    color: var(--gold);
    font-size: 1.5rem;
}

.seasons-section__title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent);
    margin-right: 20px;
}

.season-block {
    max-width: 1400px;
    margin: 0 auto 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.season-block:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.season-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.season-title {
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 14px;
}

.season-title i {
    color: var(--gold);
    font-size: 1.4rem;
}

.season-views {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(227, 27, 84, 0.15);
    border-radius: 50px;
    color: var(--pearl);
    font-size: 0.85rem;
}

.season-views i {
    color: var(--ruby);
}

.season-content {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 32px;
    padding: 32px;
}

.season-poster {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.season-poster img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.season-poster:hover img {
    transform: scale(1.05);
}

.episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(85px, 1fr));
    gap: 14px;
}

.episode-btn {
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 14px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    transition: all 0.3s var(--ease-out-expo);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.episode-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--ruby), var(--crimson));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.episode-btn:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--ruby);
    box-shadow: 0 15px 40px rgba(227, 27, 84, 0.3);
}

.episode-btn:hover::before {
    opacity: 1;
}

.episode-btn__label {
    font-size: 0.7rem;
    color: var(--silver);
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.episode-btn:hover .episode-btn__label {
    color: rgba(255, 255, 255, 0.8);
}

.episode-btn__number {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--pearl);
    position: relative;
    z-index: 1;
}

/* Season Quick Navigation */
.season-nav {
    max-width: 1400px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

/* Go to seasons button inside each season block */
.goto-seasons-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--pearl);
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
}

.goto-seasons-btn i {
    color: var(--gold);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: bounceUp 2s ease-in-out infinite;
}

.goto-seasons-btn:hover {
    background: linear-gradient(135deg, var(--ruby), var(--crimson));
    border-color: var(--ruby);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(227, 27, 84, 0.4);
}

.goto-seasons-btn:hover i {
    color: var(--white);
    animation: none;
    transform: translateY(-2px);
}

@keyframes bounceUp {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.season-nav__label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--silver);
    font-size: 0.9rem;
    font-weight: 600;
    flex-shrink: 0;
}

.season-nav__label i {
    color: var(--gold);
    font-size: 1.1rem;
}

.season-nav__buttons {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    flex: 1;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    padding: 4px 0;
}

.season-nav__buttons::-webkit-scrollbar {
    display: none;
}

.season-nav__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--pearl);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
    font-family: var(--font-body);
    flex-shrink: 0;
    white-space: nowrap;
}

.season-nav__btn i {
    color: var(--gold);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.season-nav__btn:hover {
    background: linear-gradient(135deg, var(--ruby), var(--crimson));
    border-color: var(--ruby);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(227, 27, 84, 0.3);
}

.season-nav__btn:hover i {
    color: var(--white);
}

.season-nav__btn .btn-text-full {
    display: inline;
}

.season-nav__btn .btn-text-short {
    display: none;
}

@media (max-width: 768px) {
    .season-nav {
        padding: 14px 16px;
        gap: 12px;
    }

    .season-nav__label {
        font-size: 0.8rem;
    }

    .season-nav__btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .season-nav__btn i {
        display: none;
    }

    .season-nav__btn .btn-text-full {
        display: none;
    }

    .season-nav__btn .btn-text-short {
        display: inline;
    }
}

/* Season Block Highlight Animation */
.season-block.highlight {
    animation: highlightPulse 2s ease;
}

@keyframes highlightPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(227, 27, 84, 0.4);
    }

    50% {
        box-shadow: 0 0 40px 10px rgba(227, 27, 84, 0.2);
        border-color: var(--ruby);
    }

    100% {
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }
}

/* Related Section */
.related-section {
    padding: 80px 40px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.4));
    position: relative;
}

.related-section__title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 14px;
}

.related-section__title i {
    color: var(--gold);
}

.related-section__title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent);
    margin-right: 20px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.related-card {
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
}

.related-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--ruby), var(--gold));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.related-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.related-card:hover::before {
    opacity: 0.1;
}

.related-card__poster {
    aspect-ratio: 2/3;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.related-card__poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-card:hover .related-card__poster img {
    transform: scale(1.08);
}

.related-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--ruby), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.related-card:hover .related-card__play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.related-card__info {
    padding: 16px;
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.3);
}

.related-card__title {
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 8px;
}

.related-card__meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--silver);
}

/* Mobile */
@media (max-width: 900px) {
    .season-content {
        grid-template-columns: 1fr;
    }

    .season-poster {
        max-width: 140px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {

    .seasons-section,
    .related-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .series-cover__content {
        padding: 40px 20px;
    }

    .episodes-grid {
        grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
        gap: 10px;
    }

    .episode-btn {
        padding: 14px 10px;
    }

    .related-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 16px;
    }

    /* Season header mobile fix */
    .season-header {
        padding: 14px 16px;
        gap: 10px;
    }

    .season-title {
        font-size: 0.9rem;
        gap: 8px;
    }

    .season-title i {
        font-size: 1rem;
    }

    .goto-seasons-btn {
        width: 30px;
        height: 30px;
    }

    .goto-seasons-btn i {
        font-size: 0.8rem;
    }

    .season-views {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
}