:root {
    --max: 1280px;
}

.film-page {
    padding: 1.35rem 0 2rem;
}
.watch-movies {
    margin-top: 1.5rem;
}

.watch-movies h2 {
    font-size: clamp(1.3rem, 2.4vw, 1.85rem);
    margin-bottom: 0.85rem;
    letter-spacing: 0.2px;
}

.watch-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.6rem;
}

.watch-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;
}

.watch-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.02);
}

.watch-thumb-wrap {
    position: relative;
}

.watch-card img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    display: block;
}

.watch-link {
    display: block;
}

.watch-meta {
    padding: 0.46rem 0.5rem 0.58rem;
}

.watch-title {
    font-size: 0.84rem;
    color: #edf4ff;
    line-height: 1.25;
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.watch-desc {
    color: #cdd5e2;
    font-size: 0.75rem;
    line-height: 1.35;
    margin-bottom: 0.24rem;
}

.watch-year-badge {
    position: absolute;
    top: 0.42rem;
    right: 0.42rem;
    padding: 0.14rem 0.45rem;
    border-radius: 999px;
    font-size: 0.69rem;
    font-weight: 700;
    color: #eaf6ff;
    background: rgba(8, 13, 22, 0.8);
    border: 1px solid rgba(110, 229, 210, 0.55);
    letter-spacing: 0.2px;
}

@media (max-width: 760px) {
    .watch-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Use four columns only between tablet and desktop widths. */
@media (min-width: 761px) and (max-width: 1180px) {
    .watch-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@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) {
}
