:root {
    --max: 1280px;
}

.series-page {
    padding: 1.35rem 0 2rem;
}
.series-banner {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: linear-gradient(120deg, rgba(47, 128, 255, 0.2), rgba(34, 197, 94, 0.16));
    padding: 1.05rem;
}
.series-banner h1 {
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    margin-bottom: 0.35rem;
}
.series-banner p {
    color: #dde6f5;
}

.filter-panel {
    margin-top: 1.1rem;
}

.watch-series {
    margin-top: 1.45rem;
}
.watch-series h2 {
    font-size: clamp(1.3rem, 2.4vw, 1.85rem);
    margin-bottom: 0.8rem;
    letter-spacing: 0.2px;
}
.series-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.65rem;
}
.series-card {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.02);
    padding: 0.55rem;
}
.series-card img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 0.45rem;
}
.series-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ecf3ff;
    margin-bottom: 0.2rem;
}
.series-desc {
    color: #cfd8e6;
    font-size: 0.78rem;
    line-height: 1.4;
}
.series-actions {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}
.more-btn {
    border: 1px solid rgba(47, 128, 255, 0.65);
    background: rgba(47, 128, 255, 0.14);
    color: #eaf1ff;
    border-radius: 999px;
    padding: 0.55rem 1.1rem;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
}
.more-btn:hover,
.more-btn:focus-visible {
    background: rgba(47, 128, 255, 0.24);
    border-color: rgba(47, 128, 255, 0.95);
    outline: none;
}

@media (max-width: 1180px) {
    .series-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
@media (max-width: 760px) {
    .series-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.6rem;
        padding-bottom: 0.25rem;
    }
}

@media (max-width: 760px) {
    body {
        font-size: 15px;
        line-height: 1.62;
    }

    h1 {
        font-size: clamp(1.25rem, 6vw, 1.62rem);
        line-height: 1.24;
    }

    h2 {
        font-size: clamp(1.12rem, 5.4vw, 1.42rem);
        line-height: 1.3;
    }

    h3 {
        font-size: clamp(1rem, 4.9vw, 1.16rem);
        line-height: 1.35;
    }

    p,
    li,
    summary {
        font-size: 0.92rem;
        line-height: 1.65;
    }
}

@media (max-width: 760px) {
}
