.containers__separator {
    gap: 1rem;
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem 0;
}

.lists-page {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem 0;
}

.all-lists-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
    border: 1px solid #3F3F3F;
    border-radius: 12px;
    padding: 3rem;
    box-sizing: border-box;
    position: relative;
}

.lists-top-container {
    display: flex;
    gap: 6.5px;
    align-items: center;
    position: absolute;
    top: -0.75rem;
}

.list-section-button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.25rem;
    color: #f1f1f1;
    background-color: #eb004b;
    font-weight: bold;
    font-size: 1rem;
}

.add-list-button {
    border: none;
    border-radius: 50%;
    background: #1f1f1f;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.plus-icon-fill,
.check-icon-fill,
.clock-icon-fill,
.heart-icon-fill,
.edit-icon-fill {
    height: 1.75rem;
    width: 1.75rem;
}

.plus-icon-fill:hover,
.check-icon-fill:hover,
.clock-icon-fill:hover,
.heart-icon-fill:hover,
.edit-icon-fill:hover {
    height: 2rem;
    width: 2rem;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.hero-carousel {
    position: relative;
    height: 85vh;
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: white;
}

.carousel-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(60%);
    z-index: 0;
    display: block;
}

.carousel-dots {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-details {
    position: relative;
    max-width: 550px;
    z-index: 1;
    padding: 2rem;
    border-radius: 12px;
    right: 10vh;
}

.carousel-details h2 {
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
}

.synopsis {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.info-group {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.watch-button {
    background-color: #EB004B;
    color: white;
    padding: 10px 14px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.watch-button:hover {
    background-color: #c8003f;
}

.icon-button {
    width: 36px;
    height: 36px;
    background-color: #1C1C1C;
    color: white;
    font-size: 1.2rem;
    border: 1px solid #303030;
    cursor: pointer;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.icon-button:hover {
    background-color: #303030;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 2;
}

.carousel-button {
    background-color: #EB004B;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    font-size: 1.2rem;
    cursor: pointer;
}

.arrow-hero {
    background-color: #EB004B;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    border-radius: 8px;
}

.rating-hero {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.9rem;
    color: #f1f1f1;
}

.rating-value-hero {
    margin-left: 8px;
    font-size: 1rem;
    font-weight: bold;
    color: #f1f1f1;
}

.star-rating-hero {
    position: relative;
    display: inline-block;
    --pct: 0%;
    width: auto;
    height: 16px;
}

.star-rating-hero img {
    display: block;
    width: auto;
    height: 16px;
}

.banner-buttons {
    display: flex;
    gap: 10px;
}

.banner-buttons .btn-play {
    display: flex;
    align-items: center;
    background-color: #EB004B;
    color: #fff;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: bold;
    margin-right: 10px;
}

.banner-buttons .btn-icon {
    display: flex;
    align-items: center;
    background-color: #333;
    color: #fff;
    padding: 14px;
    border-radius: 8px;
    font-size: 1.5rem;
}

.list-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
}

.list-details-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
    position: relative;
    margin-bottom: 1rem;
}

.list-description {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    overflow-x: auto;
}

.list-description p {
    font-weight: 700;
    font-size: 1.2rem;
    color: #f5f5f5;
    white-space: nowrap;
    margin: 0;
}

.list-description .material-symbols-outlined {
    font-size: 1.2rem;
    color: #eb004b;
    cursor: pointer;
}

.carousel-controls {
    display: flex;
    align-items: center;
    gap: 0rem;
    background-color: #2E2E2E;
    padding: 0.02rem;
    border-radius: 6px;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.carousel-controls .arrow img {
    width: 18px;
}

.arrow {
    background: none;
    border: none;
    cursor: pointer;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.arrow img {
    width: 1.5rem;
    height: 1.5rem;
}

.arrowLeft-icon {
    transform: rotate(180deg);
}

.arrow[style*="display: none"],
.indicators[style*="display: none"] {
    opacity: 0;
    pointer-events: none;
}

.indicators {
    display: flex;
    gap: 1.6px;
    margin: 0;
}

.dot {
    width: 0.8rem;
    height: 0.2rem;
    background: #3F3F3F;
    border-radius: 0.8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background: #EB004B;
}

.films-carousel {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 1.5rem;
    padding-bottom: 1rem;
    position: relative;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}

.films-carousel::-webkit-scrollbar {
    height: 8px;
}

.films-carousel::-webkit-scrollbar-track {
    background: #2a2a2a;
    border-radius: 10px;
}

.films-carousel::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.films-carousel::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.film-on-list {
    flex: 0 0 auto;
    width: 11rem;
    background: #3F3F3F;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    border-radius: 4px;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.film-on-list--animated {
    opacity: 1;
    transform: translateY(0);
}

.film-banner-list-carousel {
    cursor: pointer;
    width: 100%;
    height: 16.5rem;
    object-fit: cover;
    border-radius: 6px;
}

.film-on-list-details {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.star-rating {
    position: relative;
    display: inline-block;
    --pct: 0%;
    width: auto;
    height: 12px;
}

.star-rating img {
    display: block;
    width: auto;
    height: 12px;
}

.stars-full-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--pct);
    overflow: hidden;
}

.stars-full {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.list-details-timestamp,
.rating {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    font-size: 0.65rem;
    background: #1f1f1f;
    color: #f5f5f5;
    padding: 0.3rem 0.4rem;
    border-radius: 6px;
    border: 1px solid #555;
    gap: 0.6rem;
    margin-left: 0;
}

.duration-icon {
    width: 12px;
    height: 12px;
}

.rating-value,
.duration-value {
    font-weight: bold;
    font-size: 0.8rem;
    color: #f1f1f1;
}

.film-on-list-details .series-timestamp .duration-value {
    font-size: 0.5rem;
}

.categories-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-block: 3rem;
}

.categories-header {
    font-weight: 700;
    font-size: 1.2rem;
    color: #f5f5f5;
    white-space: nowrap;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.2rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
}

.section-subtitle {
    font-size: 0.875rem;
    color: #aaaaaa;
    max-width: 36rem;
    margin-top: 0.25rem;
}

.categories-carousel {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    overflow-x: auto;
    padding-block: 0.25rem;
}

.category-card {
    --card-size: 6.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: var(--card-size);
    height: var(--card-size);
    border: none;
    border-radius: 0.75rem;
    background: #EB004B;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    background: #EB004B;
}

.category-icon {
    width: 2.25rem;
    height: 2.25rem;
    margin-bottom: 0.5rem;
    filter: brightness(0) invert(1);
}

.category-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #ffffff;
    pointer-events: none;
}

.list-banner-match-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.list-banner-match {
    object-fit: cover;
    height: 8rem;
    width: 100%;
    border-radius: 0.5rem;
    margin: 0.5rem;
}

.match-cta {
    background-image: url('../img/Container.png');
    display: flex;
    justify-content: center;
    flex-direction: column;
    object-fit: cover;
    height: 11rem;
    width: 100%;
    border-radius: 0.5rem;
    margin: 0.5rem;
}

.open-serie-match-bakground {
    width: 100%;
    height: 100%;
}

.open-serie-match-description {
    display: flex;
    flex-direction: row;
    padding: 1rem 3rem 1rem 3rem;
    font-size: 1.2rem;
    justify-content: space-between;
}

.open-serie-match-button {
    background-color: #ff005c;
    font-weight: bold;
    color: #fff;
    padding: 15px 30px;
    font-size: 1rem;
    border-radius: 4px;
    margin-top: 20px;
}

.container-reviews {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px;
    background-color: #1f1f1f;
}

.reviews {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    gap: 20px;
    background-color: #2e2e2e;
    padding: 40px;
    border-radius: 8px;
}

.review-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.review-item {
    flex: 1 1 calc((100% - 20px) / 2);
    min-width: 540px;
    background-color: #2e2e2e;
    border-radius: 8px;
    padding: 20px;
    box-sizing: border-box;
    color: #ffffff;
    margin: 0 auto;
}

.card-film-title {
    font-size: 1rem;
    font-weight: bold;
}

.card-film-info {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
}

.card-film {
    flex: 0 1 auto;
    max-width: auto;
}

.card-info {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    width: auto;
    min-width: 156px;
}

.banner-film {
    width: 100%;
    max-width: 10rem;
    max-height: 12rem;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 16px;
}

.user-info {
    flex: 1;
}

.user-name {
    margin: 0;
    font-size: 1.2rem;
}

.user-ranking {
    margin: 4px 0 0;
    font-size: 0.9rem;
    color: #cccccc;
}

.user-ranking span {
    color: #ffffff;
}

.card-actions {
    margin: 16px 0;
}

.card-actions button {
    background: transparent;
    border: 1px solid #3F3F3F;
    color: #EB004B;
    padding: 8px 12px;
    border-radius: 4px;
    margin-right: 8px;
    cursor: pointer;
    font-size: 0.9rem;
}

.card-actions button:hover {
    background: rgba(235, 0, 75, 0.1);
}

.card-description {
    font-size: 0.95rem;
    line-height: 1.4;
    color: #cccccc;
    margin: 0;
}

.review-actions {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-check-reviews {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #EB004B;
    font-weight: bold;
    font-size: 16px;
    color: #fff;
    padding: 14px 20px;
    border-radius: 4px;
    gap: 4px;
}

.cast-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cast-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    color: #ffffff;
    gap: 10px;
}

.footer {
    margin-top: 100px;
}

/* --- Media Queries para Responsividade --- */

@media (max-width: 1200px) {
    .all-lists-container {
        padding: 2.5rem; /* Ajustado */
        gap: 1.5rem; /* Ajustado */
    }

    .list-section-button {
        font-size: 0.9rem; /* Ajustado */
        padding: 0.4rem 0.8rem; /* Ajustado */
    }

    .plus-icon-fill,
    .check-icon-fill,
    .clock-icon-fill,
    .heart-icon-fill,
    .edit-icon-fill {
        height: 1.5rem; /* Ajustado */
        width: 1.5rem; /* Ajustado */
    }

    .plus-icon-fill:hover,
    .check-icon-fill:hover,
    .clock-icon-fill:hover,
    .heart-icon-fill:hover,
    .edit-icon-fill:hover {
        height: 1.75rem; /* Ajustado */
        width: 1.75rem; /* Ajustado */
    }

    .hero-section {
        height: 70vh; /* Ajustado */
    }

    .hero-carousel {
        height: 75vh; /* Ajustado */
    }

    .carousel-details {
        right: 8vh; /* Ajustado */
        padding: 1.5rem; /* Ajustado */
    }

    .carousel-details h2 {
        font-size: 2rem; /* Ajustado */
    }

    .film-on-list {
        width: 10rem;
    }
    .film-banner-list-carousel {
        height: 15rem;
    }
    .films-carousel {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .all-lists-container {
        padding: 1.5rem; /* Ajustado para telas menores */
        gap: 1rem; /* Ajustado */
        border-radius: 8px; /* Arredondamento menor */
    }

    .lists-top-container {
        flex-wrap: wrap; /* Permite que os botões quebrem para a próxima linha */
        position: static; /* Remove o posicionamento absoluto para fluir com o documento */
        margin-bottom: 1rem; /* Adiciona espaço abaixo dos botões */
        top: unset; /* Remove o top anterior */
        justify-content: center; /* Centraliza os botões quando quebram a linha */
        gap: 10px; /* Aumenta o gap para melhor espaçamento em telas menores */
    }

    .list-section-button {
        font-size: 0.8rem; /* Fonte menor */
        padding: 0.3rem 0.6rem; /* Padding menor */
    }

    .add-list-button {
        width: 32px; /* Tamanho fixo para o botão de adicionar */
        height: 32px; /* Tamanho fixo para o botão de adicionar */
    }

    .plus-icon-fill,
    .check-icon-fill,
    .clock-icon-fill,
    .heart-icon-fill,
    .edit-icon-fill {
        height: 1.25rem; /* Ícones menores */
        width: 1.25rem; /* Ícones menores */
    }

    .plus-icon-fill:hover,
    .check-icon-fill:hover,
    .clock-icon-fill:hover,
    .heart-icon-fill:hover,
    .edit-icon-fill:hover {
        height: 1.5rem; /* Hover menor */
        width: 1.5rem; /* Hover menor */
    }

    .hero-section {
        height: 60vh; /* Ajustado */
    }

    .hero-carousel {
        height: 65vh; /* Ajustado */
    }

    .carousel-details {
        right: 0; /* Alinha mais à esquerda */
        padding: 1rem; /* Ajustado */
        text-align: center; /* Centraliza o texto no mobile */
        max-width: 100%; /* Ocupa toda a largura disponível */
    }

    .carousel-details h2 {
        font-size: 1.8rem; /* Ajustado */
    }

    .synopsis {
        font-size: 0.8rem; /* Ajustado */
    }

    .info-group {
        justify-content: center; /* Centraliza informações */
        font-size: 0.75rem; /* Ajustado */
    }

    .actions {
        justify-content: center; /* Centraliza botões */
    }

    .watch-button {
        padding: 8px 12px; /* Ajustado */
        font-size: 0.9rem; /* Ajustado */
    }

    .icon-button {
        width: 30px; /* Ajustado */
        height: 30px; /* Ajustado */
        font-size: 1rem; /* Ajustado */
    }

    .carousel-nav {
        padding: 0 0.5rem; /* Ajustado */
    }

    .carousel-button {
        width: 30px; /* Ajustado */
        height: 30px; /* Ajustado */
        font-size: 1rem; /* Ajustado */
    }

    .rating-hero {
        font-size: 0.8rem; /* Ajustado */
    }

    .rating-value-hero {
        font-size: 0.9rem; /* Ajustado */
    }

    .star-rating-hero {
        height: 14px; /* Ajustado */
    }

    .star-rating-hero img {
        height: 14px; /* Ajustado */
    }

    .banner-buttons {
        flex-direction: column; /* Botões empilham */
        align-items: center;
        gap: 10px;
    }

    .banner-buttons .btn-play,
    .banner-buttons .btn-icon {
        width: 100%;
        max-width: 200px;
        justify-content: center;
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .film-on-list {
        width: 9rem;
    }
    .film-banner-list-carousel {
        height: 13.5rem;
    }
    .films-carousel {
        gap: 0.8rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }
    .list-details-container {
        padding: 0 1rem;
    }
    .carousel-controls {
        right: 1rem;
    }
    .carousel-controls .arrow img {
        width: 16px;
        height: 16px;
    }
    .review-item {
        min-width: unset;
        flex: 1 1 100%;
    }

    .list-description p {
        font-size: 1.1rem; /* Ajustado */
    }
    .list-description .material-symbols-outlined {
        font-size: 1.1rem; /* Ajustado */
    }
    .categories-section {
        margin-block: 2rem; /* Ajustado */
        gap: 1.5rem; /* Ajustado */
    }
    .section-title {
        font-size: 1.8rem; /* Ajustado */
    }
    .section-subtitle {
        font-size: 0.8rem; /* Ajustado */
    }
    .category-card {
        --card-size: 5.5rem; /* Cartões menores */
        min-width: var(--card-size);
        height: var(--card-size);
        border-radius: 0.5rem;
    }
    .category-icon {
        width: 1.8rem; /* Ícone menor */
        height: 1.8rem; /* Ícone menor */
    }
    .category-label {
        font-size: 0.8rem; /* Fonte menor */
    }

    .open-serie-match-description {
        flex-direction: column; /* Empilha o texto e o botão */
        align-items: center;
        text-align: center;
        padding: 1rem;
        font-size: 1.1rem;
    }
    .open-serie-match-button {
        padding: 12px 24px;
        font-size: 0.9rem;
        margin-top: 10px;
    }

    .review-list {
        flex-direction: column; /* Itens da review empilham */
        gap: 15px;
    }
    .review-item {
        padding: 15px;
    }
    .card-film-info {
        flex-direction: column; /* Info do filme empilha */
        align-items: center;
        text-align: center;
    }
    .banner-film {
        max-width: 8rem; /* Imagem do filme menor */
        max-height: 10rem; /* Imagem do filme menor */
    }
    .card-info {
        min-width: unset; /* Remove min-width */
        width: 100%; /* Ocupa toda a largura */
    }
    .card-film-title {
        font-size: 0.9rem;
        margin-top: 10px;
    }
    .user-name {
        font-size: 1.1rem;
    }
    .user-ranking {
        font-size: 0.8rem;
    }
    .card-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .all-lists-container {
        padding: 1rem; /* Ainda menor */
        border-radius: 6px;
    }

    .lists-top-container {
        gap: 5px; /* Gap menor para os botões */
    }

    .list-section-button {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }

    .add-list-button {
        width: 28px;
        height: 28px;
    }

    .plus-icon-fill,
    .check-icon-fill,
    .clock-icon-fill,
    .heart-icon-fill,
    .edit-icon-fill {
        height: 1rem;
        width: 1rem;
    }

    .plus-icon-fill:hover,
    .check-icon-fill:hover,
    .clock-icon-fill:hover,
    .heart-icon-fill:hover,
    .edit-icon-fill:hover {
        height: 1.25rem;
        width: 1.25rem;
    }

    .hero-section {
        height: 45vh;
    }

    .hero-carousel {
        height: 50vh;
    }

    .carousel-details {
        padding: 0.8rem;
        right: 0;
    }

    .carousel-details h2 {
        font-size: 1.5rem;
    }

    .synopsis {
        font-size: 0.75rem;
    }

    .info-group {
        font-size: 0.7rem;
        gap: 0.5rem;
    }

    .watch-button {
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    .icon-button {
        width: 26px;
        height: 26px;
        font-size: 0.9rem;
    }

    .carousel-nav {
        padding: 0 0.25rem;
    }

    .carousel-button {
        width: 26px;
        height: 26px;
        font-size: 0.9rem;
    }

    .rating-hero {
        font-size: 0.7rem;
    }

    .rating-value-hero {
        font-size: 0.8rem;
    }

    .star-rating-hero {
        height: 12px;
    }

    .star-rating-hero img {
        height: 12px;
    }

    .banner-buttons .btn-play,
    .banner-buttons .btn-icon {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .film-on-list {
        width: 8rem;
    }
    .film-banner-list-carousel {
        height: 12rem;
    }
    .films-carousel {
        gap: 0.5rem;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }
    .list-details-container {
        padding: 0 0.5rem;
    }
    .carousel-controls {
        right: 0.5rem;
    }
    .list-description p {
        font-size: 1rem;
    }
    .list-description .material-symbols-outlined {
        font-size: 1rem;
    }
    .categories-section {
        margin-block: 1.5rem;
        gap: 1rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .section-subtitle {
        font-size: 0.75rem;
    }
    .category-card {
        --card-size: 4.5rem;
        min-width: var(--card-size);
        height: var(--card-size);
        border-radius: 0.4rem;
    }
    .category-icon {
        width: 1.5rem;
        height: 1.5rem;
    }
    .category-label {
        font-size: 0.7rem;
    }

    .open-serie-match-description {
        padding: 0.8rem;
        font-size: 1rem;
    }
    .open-serie-match-button {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .review-item {
        padding: 10px;
    }
    .card-film-title {
        font-size: 0.8rem;
    }
    .banner-film {
        max-width: 6rem;
        max-height: 8rem;
    }
    .user-name {
        font-size: 1rem;
    }
    .user-ranking {
        font-size: 0.7rem;
    }
    .card-description {
        font-size: 0.8rem;
    }
}