/* Fontes */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
/* font-family: 'Montserrat', sans-serif; */

/* Cores globais */
:root {
    --primary-color: #0c0c0c;
    --secondary-color: #333333;
    --main-text-color: #fff;
    --vibrant-color: #b9b9b9;
    --white-hover: rgba(255, 255, 255, 0.05);
}

/* CUSTOM SCROLLBAR */

::-webkit-scrollbar {
    width: 5px;
    height: 8px;
}
::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
}
::-webkit-scrollbar-thumb {
    background: #e1e1e1;
    border: 12px solid #494949;
    border-radius: 30px;
}
::-webkit-scrollbar-thumb:hover {
    background: #ffffff;
}
::-webkit-scrollbar-thumb:active {
    background: #494949;
}
::-webkit-scrollbar-track {
    background: #666666;
    border: 11px solid var(--secondary-color);
    border-radius: 30px;
}
::-webkit-scrollbar-track:hover {
    background: #666666;
}
::-webkit-scrollbar-track:active {
    background: #333333;
}
::-webkit-scrollbar-corner {
    background: transparent;
}

/* Preloader da busca*/

#preloader {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

.loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #0f0f0f;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

article.article-fade-in,
a.article-fade-in {
    opacity: 0;
    margin-top: -55px;
}

.article-fade-in {
    animation: article-fade-in 750ms forwards;
}

@keyframes article-fade-in {
    0% {
        opacity: 0;
        margin-top: -55px;
    }
    47% {
        opacity: 0;
        margin-top: -55px;
    }
    100% {
        opacity: 1;
        margin-top: 0px;
    }
}

/* Configurações gerais */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
    font-weight: 400;
}

body {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    color: var(--main-text-color);
    background-color: var(--primary-color);
    background-image:
        radial-gradient(
            circle at 20% 30%,
            rgba(210, 212, 218, 0.07),
            transparent 52%
        ),
        radial-gradient(circle at top, #25262c 0%, #0a0a0b 65%),
        radial-gradient(ellipse at center, transparent 25%, #050505 75%);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(
        120% 80% at 50% -30%,
        rgba(120, 122, 130, 0.09),
        transparent 50%
    );
}

body > * {
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    body {
        background-attachment: scroll;
    }
}

@media (prefers-reduced-motion: reduce) {
    .search-bar,
    .search-bar #search-form,
    .search-results {
        transition: none !important;
    }
    .search-bar:not(.show) #search-form,
    .search-bar.show #search-form,
    .search-bar:not(.show) .search-results,
    .search-bar.show .search-results {
        transform: none !important;
        opacity: 1 !important;
    }
}

ul {
    list-style: none;
}

svg {
    cursor: default;
}

button svg,
a svg,
[role="button"] svg,
.comment-action-btn svg,
.spoiler-reveal-btn svg {
    cursor: pointer;
}

.spacing {
    width: 100%;
}

.spacing-small {
    height: 10px;
}

.spacing-medium {
    height: 20px;
}

.spacing-large {
    height: 200px;
}

.module.season svg {
    cursor: auto;
}

.active {
    opacity: 1 !important;
}

.max-dimensions {
    height: 100%;
    width: 100%;
}

h2.max-dimensions {
    text-align: center;
    font-size: 16px;
}

.hidden-gambiarra {
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
}
/* Header e menus*/

header {
    height: 100px;
    width: 100%;
    position: relative;
    z-index: 80;
    /* background-color: var(--secondary-color); */
}

.logo {
    max-width: 175px;
}

.logo img {
    width: 160px;
    height: 45px;
}

.header-wrapper {
    max-width: 1300px;
    padding: 0 10px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
}

.main-menu {
    display: flex;
}

.main-menu li:first-child {
    margin-left: 80px;
}

.main-menu li {
    margin-right: 35px;
    color: var(--main-text-color);
    font-size: 14px;
    opacity: 0.5;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.main-menu li a {
    padding: 5px 10px;
}

#closeBtn,
#notifyBtn,
#menuIcon {
    display: none;
}

.main-menu li:hover {
    opacity: 1;
}

.main-menu li:last-child {
    margin-right: 0;
}

.profile {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown {
    position: relative;
}

.dropdown-button {
    width: 36px;
    height: 36px;
    padding: 8px;
    border-radius: 50%;
    border: 0;
    background: transparent;
    color: #fbfbfb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.dropdown-button:hover,
.dropdown-button[aria-expanded="true"] {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.dropdown-button .ic-user-01 {
    display: inline-flex;
    line-height: 1;
    font-size: 18px;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 224px;
    background-color: var(--secondary-color);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 8px 0;
    display: none;
    flex-direction: column;
    gap: 4px;
    z-index: 200;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}

.dropdown-menu.show {
    display: flex;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-greeting {
    padding: 8px 14px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.dropdown-greeting .text-lead {
    color: #fff;
    font-weight: 600;
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.03);
    margin: 2px 0;
}

.dropdown-menu .btn-item {
    width: calc(100% - 16px);
    margin: 0 8px;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 10px;
    border-radius: 10px;
    font-size: 13px;
    cursor: pointer;
    text-align: left;
}

.dropdown-menu .btn-item:hover {
    background: var(--white-hover);
    color: #fff;
}

.dropdown-menu .btn-item .text-xl,
.dropdown-menu .btn-item .ic-user-01 {
    font-size: 17px;
    display: inline-flex;
    line-height: 1;
}

.btn-logout {
    width: calc(100% - 16px);
}

.dropdown-section-label {
    padding: 4px 14px 2px;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
}

.dropdown-menu .btn-item--admin {
    color: #f59e0b;
}

.dropdown-menu .btn-item--admin:hover {
    color: #fbbf24;
    background: rgba(245, 158, 11, .1);
}

#search-icon,
#notifyIcon {
    width: 36px;
    height: 36px;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 50%;
}

#search-icon:hover {
    background: rgba(255, 255, 255, 0.05);
}

#search-icon i {
    font-size: 18px;
    color: #fbfbfb;
    line-height: 1;
    vertical-align: middle;
}

#search-icon:hover i {
    color: #fff;
}

#menuIcon i {
    font-size: 18px;
    color: #fbfbfb;
    line-height: 1;
    vertical-align: middle;
}

#closeBtn {
    text-decoration: none;
}

#closeBtn i {
    font-size: 18px;
    color: #fbfbfb;
    line-height: 1;
    vertical-align: middle;
}

@keyframes showMessage {
    from {
        width: 0;
    }
    to {
        width: 410px;
    }
}

@keyframes showMagic {
    from {
        opacity: 0;
    }

    50% {
        opacity: 0.01;
    }

    to {
        opacity: 1;
    }
}

/* Search Bar */

.search-bar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 14px 24px;
    box-sizing: border-box;
    opacity: 0;
    pointer-events: none;
    background-color: rgb(8, 8, 10);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    will-change: opacity;
    transition: opacity 0.18s ease;
}

.search-bar.show {
    opacity: 1;
    pointer-events: auto;
}

.search-bar:not(.show) #search-form {
    opacity: 0;
    transform: translateY(-14px);
}

.search-bar.show #search-form {
    opacity: 1;
    transform: translateY(0);
}

.search-bar:not(.show) .search-results {
    opacity: 0;
}

.search-bar.show .search-results {
    opacity: 1;
}

.search-bar #notifyBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: absolute;
    bottom: 12px;
    padding: 12px 36px;
    font-weight: 600;
    opacity: 0.5;
    background: #141c25;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.search-bar #notifyBtn:hover {
    border: 1px solid rgba(255, 255, 255, 0.14);
    opacity: 1;
}

.search-bar #notifyBtn i {
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
}

.search-bar #search-form {
    display: flex;
    gap: 12px;
    padding: 0 0 0 10px;
    align-items: center;
    width: 100%;
    height: 130px;
    max-width: 1300px;
    margin: 0 auto;
    transition:
        opacity 0.18s ease,
        transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.search-bar input {
    width: calc(100% - 94px);
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 40px;
    border-radius: 50px;
    transition: background-color 0.3s;
    color: rgba(255, 255, 255, 1);
    padding-left: 20px;
}

.search-bar input::placeholder {
    color: rgba(255, 255, 255, 1);

    font-family: "Montserrat", sans-serif;
    font-weight: 400;
}

.search-bar input:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.search-bar input:focus-visible {
    outline: 1px solid rgba(255, 255, 255, 0.18);
}

/* type="search": esconde o "x" nativo (WebKit/Chrome) — fundo/hover em azul com texto */
.search-bar input[type="search"]::-webkit-search-cancel-button,
.search-bar input[type="search"]::-webkit-search-decoration,
.search-bar input[type="search"]::-webkit-search-results-button,
.search-bar input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
    appearance: none;
    display: none;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    pointer-events: none;
}

.search-bar input[type="search"] {
    -webkit-appearance: none;
    appearance: none;
}

/* Edge/IE: botão de limpar à direita */
.search-bar input::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}

.search-results {
    width: 100%;
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    background-color: rgba(22, 22, 26, 0.92);
    max-width: 1300px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    transition: opacity 0.18s ease;
}

/* Estado "Pesquisando…" — centrado, tipografia alinhada ao restante do site */
.search-results__state {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: min(42vh, 360px);
    padding: 2rem 1.5rem;
    box-sizing: border-box;
}

.search-results__state--loading {
    font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
    font-feature-settings: "ss01" 1, "cv02" 1;
    font-size: clamp(1.05rem, 2.4vw, 1.3rem);
    font-weight: 500;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.92);
    text-align: center;
    line-height: 1.4;
}

.search-results__loading-text {
    animation: search-loading-breathe 1.5s ease-in-out infinite;
}

.search-results__loading-dots {
    display: inline-block;
    margin-left: 0.12em;
    font-weight: 400;
    letter-spacing: 0;
    opacity: 0.85;
    animation: search-loading-breathe 1.5s ease-in-out infinite 0.12s;
}

@keyframes search-loading-breathe {
    0%,
    100% {
        opacity: 0.55;
    }
    50% {
        opacity: 1;
    }
}

/* Estado "Nenhuma novela encontrada" — mesmo alinhamento que o loading */
.search-results__state--empty {
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.search-results__empty-icon {
    display: block;
    font-size: 2.75rem;
    line-height: 1;
    margin: 0 0 0.9rem 0;
    color: rgba(255, 255, 255, 0.2);
    font-weight: 400;
}

.search-results__empty {
    margin: 0;
    max-width: 22rem;
    font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
    font-size: clamp(1.02rem, 2.2vw, 1.2rem);
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
    text-wrap: balance;
}

.result:first-child {
    margin-top: 24px !important;
}

.result:last-child {
    margin-bottom: 24px !important;
}

.result {
    position: relative;
    display: flex;
    gap: 15px;
    height: 140px;
    width: calc(100% - 48px);
    margin: 12px 24px;
    background-color: rgb(255 255 255 / 3%);
    border-radius: 5px;
    border: 2px solid rgb(255 255 255 / 4%);
    transition: all 0.3s ease-in-out;
}

.result:hover {
    background-color: rgba(255, 255, 255, 0.089);
}

.result .item-image {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    height: 100%;
    padding-left: 8px;
}

.result .item-image .lazy-poster--search-result-thumb,
.result--skeleton .lazy-poster--search-skeleton-thumb {
    width: 84px;
    height: 126px;
    border-radius: 8px;
    flex-shrink: 0;
}

.result .item-image .lazy-poster--search-result-thumb .lazy-poster__skeleton,
.result--skeleton .lazy-poster--search-skeleton-thumb .lazy-poster__skeleton {
    border-radius: 8px;
}

.result .item-image .lazy-poster--search-result-thumb .lazy-poster__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    max-height: none;
}

.result--skeleton {
    pointer-events: none;
}

.result-info--skeleton {
    display: flex !important;
    flex-direction: column;
    align-items: stretch !important;
    justify-content: center;
    flex: 1;
    padding: 12px 16px 12px 10px;
    gap: 12px;
}

.result-info--skeleton .search-skeleton-line {
    align-self: stretch !important;
}

.search-skeleton-line {
    display: block;
    height: 11px;
    border-radius: 4px;
    background: linear-gradient(
        110deg,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(255, 255, 255, 0.14) 45%,
        rgba(255, 255, 255, 0.06) 90%
    );
    background-size: 200% 100%;
    animation: lazy-poster-shimmer 1.25s ease-in-out infinite;
}

.search-skeleton-line--title {
    width: 75%;
    height: 14px;
}

.search-skeleton-line--text {
    width: 92%;
    opacity: 0.85;
}

.result .item-image img {
    border-radius: 8px;
    max-height: 100%;
}

.result-info {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
}
.result-info a,
.result-info div,
.result-info p,
.result-info span {
    display: flex;
    align-items: center;
}

.item-name-in-search {
    font-weight: 600;
    font-size: 14px;
}

.result-info div {
    flex-wrap: wrap;
    gap: 5px;
}

.item-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    position: absolute;
    top: calc(50% - 10px);
    right: 15px;
}

.search-results .item-rating i {
    font-size: 20px;
    color: #fcc54a;
    line-height: 1;
}

.item-status {
    width: 111px;
    height: 20px;
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-variant: small-caps;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(72, 74, 82, 0.92);
    border-radius: 3px;
}

.item-category {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    height: 30px !important;
    font-weight: 400;
    font-size: 11px;
    line-height: 13px;
    color: #ffffff;
    background: var(--white-hover);
    border-radius: 3px;
}

.item-episodes {
    font-size: 12px;
    font-weight: 400;
}

.search-bar .button {
    cursor: pointer;
    height: 40px;
    width: 40.33px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.search-bar .button:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.search-bar .button i {
    font-size: 22px;
    color: #fff;
    line-height: 1;
    opacity: 1;
}

/* MODULE CONTENT */

.module {
    max-width: 1300px;
    padding: 0 14px;
    margin: 24px auto;
}

/* First Slider */

.module header {
    display: flex;
    align-items: center;
    margin: 0 0 20px 0;
    height: 18px;
}

.module header h1,
.module header h2 {
    font-size: 14px;
    font-weight: 600;
}

.section-content h3 {
    font-size: 14px;
    font-weight: 400;
}

.module .slider-buttons {
    margin-left: auto;
}

.module .slider-buttons i {
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    color: #fff;
    line-height: 1;
    vertical-align: middle;
}
.module .slider-buttons i:hover {
    color: #fff;
    opacity: 0.85;
}
.module .slider-buttons i:last-child {
    margin-left: 5px;
}

/* First Slider Elements */

.base-article {
    max-width: 160px;
    margin: 0 10px;
}

.base-article .poster {
    position: relative;
    width: 160px;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
}

.base-article .poster img,
.base-article .poster .lazy-poster--item-slider .lazy-poster__img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

.base-article .poster .lazy-poster--item-slider {
    position: absolute;
    inset: 0;
    border-radius: 8px;
    z-index: 0;
}

.base-article .poster .lazy-poster--item-slider .lazy-poster__skeleton {
    border-radius: 8px;
}

.base-article .poster .poster-overlay {
    background: rgba(0, 0, 0, 0.75);
    opacity: 0;
    transition: all 0.5s;
    width: 160px;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(3px);
}

.base-article:hover .poster .poster-overlay {
    opacity: 1;
}

.base-article:hover .poster .poster-overlay .play-btn {
    opacity: 0.9;
}

.base-article:hover .data h3 {
    color: var(--vibrant-color);
}

.base-article .poster .poster-overlay .play-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    opacity: 0;
    transition: all 1s ease-in-out;
}

.base-article .poster .poster-overlay .play-btn svg {
    transition: all 1s ease-in-out;
}

.base-article:hover .poster .poster-overlay .play-btn svg {
    transform: scale(1.5);
}

.base-article .poster .poster-overlay .rating {
    position: absolute;
    bottom: 10px;
    right: 42px;
    display: flex;
    align-items: center;
    font-size: 12px;
}

.base-article .poster .poster-overlay .rating svg {
    margin-right: 5px;
}

.poster-favorite-btn {
    position: absolute;
    top: auto;
    bottom: 6px;
    right: 6px;
    z-index: 4;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    cursor: pointer;
    padding: 0;
    appearance: none;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.poster-favorite-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.45);
}

.poster-favorite-btn:active {
    transform: scale(0.96);
}

.poster-favorite-btn:disabled {
    opacity: 0.6;
    cursor: wait;
    pointer-events: none;
}

.poster-favorite-btn.is-favorited {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
}

.poster-favorite-btn i {
    font-size: 15px;
    line-height: 1;
}

.poster-favorite-btn.item-page-favorite {
    position: static;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.poster-favorite-btn.item-page-favorite i {
    font-size: 20px;
}

.item-title-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.item-page-comments-btn {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    right: auto !important;
    left: auto !important;
    z-index: auto !important;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.65) !important;
    text-decoration: none;
}

.item-page-comments-btn:hover {
    color: #fff !important;
}

.item-page-comments-btn i {
    font-size: 20px;
}

.item-comments-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    background: #fff;
    color: #111;
    font-size: 9px;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
    box-sizing: border-box;
    pointer-events: none;
}

.item-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
}

.item-title-row h1 {
    margin: 0;
    flex: 1;
    min-width: 0;
}

/* Wrapper de comentários dentro do item-container */
.item-comments-section {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 8px;
}

.item-comments-section > section {
    padding: 0;
    max-width: 100%;
}

.item-comments-section .comments-area {
    padding: 20px 24px 24px;
}

.item-comments-section .comments-title {
    font-size: 15px;
}

.item-comments-section .comment-respond {
    margin-top: 20px;
}

.base-article .data {
    text-align: center;
    margin-top: 10px;
}

.base-article .data h3 {
    font-weight: 500;
    font-size: 13px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: all 0.5s ease-in-out;
}

.base-article .data h4 {
    font-weight: 700;
    font-size: 9px;
    opacity: 0.5;
}

/* GRID QUE ENGLOBA OS ULTIMOS LANÇAMENTOS E O ASIDE */

.module-content {
    margin: 24px 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/*  últimos lançamentos e Recentemente Adicionados */

.module header .see-more {
    margin-left: auto;
    display: flex;
    align-items: center;
    color: #FFF;
    fill: rgba(255, 255, 255, 0.5);
    font-size: 10px;
    font-weight: 400;
    transition: all 0.3s ease-in-out;
    background: #555555;
    font-size: 10px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 3px;
}

.module header .see-more:hover {
    color: white;
    fill: white;
    background: #474747;
}

.module-content .section-content {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.section-min-height {
    min-height: 715px;
    height: 100%;
}

.module-content .section-content article {
    width: calc(100% / 4 - 15px);
}

.module-content .section-content article .poster {
    height: 175px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.module-content .section-content article .poster img,
.module-content .section-content article .poster .lazy-poster--home-episode .lazy-poster__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

.module-content .section-content article .poster .lazy-poster--home-episode {
    position: absolute;
    inset: 0;
    border-radius: 8px;
}

.module-content .section-content article .poster .lazy-poster--home-episode .lazy-poster__skeleton {
    border-radius: 8px;
}

.module-content .section-content article .poster a .poster-overlay {
    height: 100%;
    width: 100%;
    top: 0;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.05);
    opacity: 0;
    transition: all 0.5s;
    z-index: 2;
}

.module-content .section-content article:hover .poster a .poster-overlay {
    opacity: 1;
}

.module-content
    .section-content
    article
    .poster
    a
    .poster-overlay
    .play-btn
    svg {
    transition: all 0.5s;
}

.module-content
    .section-content
    article:hover
    .poster
    a
    .poster-overlay
    .play-btn
    svg {
    transform: scale(1.3);
}

.module-content .section-content article:hover .poster img,
.module-content .section-content article:hover .poster .lazy-poster__img {
    filter: blur(3px);
}

.module-content .section-content article:hover .data h3 {
    color: var(--main-text-color);
}

.module-content .section-content article .poster .language,
.module-content .section-content article .poster .release-timing {
    background-color: var(--primary-color);
    border-radius: 50px;
    font-size: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    transition: all 0.5s;
    opacity: 1;
}

.module-content .section-content article .poster .language {
    top: 10px;
    right: 10px;
    width: 50px;
    height: 22px;
}

.module-content .section-content article .poster .release-timing {
    left: 10px;
    bottom: 10px;
    width: 75px;
    height: 25px;
}

.module-content .section-content article .data h3 {
    font-weight: 500;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    transition: 0.5s;
    margin-top: 10px;
    margin-bottom: 5px;
}

.module-content .section-content article .data h3:hover {
    color: rgba(255, 255, 255, 1);
}

.module-content .section-content article .data h4 {
    font-size: 12px;
    font-weight: 500;
}

/* Footer */

footer {
    height: 110px;
    /* background-color: var(--secondary-color); */
}

footer .header-wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .left-side {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.right-side {
    display: flex;
    align-items: center;
    gap: 15px;
}

footer .left-side a {
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
}

footer .left-side a:hover {
    color: white;
}

footer p {
    position: absolute;
    width: fit-content;
    bottom: 10px;
    left: calc(50% - 204px / 2);
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: rgba(255, 255, 255, 0.5);
    /* background-color: var(--secondary-color); */
}

#twitterLogo,
#discordLogo {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#discordLogo {
    padding: 5px;
}

#twitterLogo i,
#discordLogo i {
    font-size: 24px;
    line-height: 1;
    display: block;
    padding: 3px;
}

#twitterLogo:hover,
#discordLogo:hover {
    color: #fff;
}

#twitterLogo:hover i,
#discordLogo:hover i {
    transform: scale(1.1);
    transition: transform 0.2s ease-in-out;
}

/* Media queries da thumb dos episódios da página inicial */
@media (max-width: 1024px) {
    /*
     * body > * dá z-index: 1 ao header e ao .module; o .module vem depois e cobre o header.
     * O .main-menu fica dentro do header, então o overlay do menu ficava atrás dos posters.
     */
    header:has(.main-menu.show) {
        position: relative;
        z-index: 50;
    }

    #menuIcon {
        display: block;
        border-radius: 15px;
        cursor: pointer;
    }

    #closeBtn {
        cursor: pointer;
    }

    .main-menu.show {
        display: flex !important;
        animation: 0.8s showMenu forwards;
    }

    @keyframes showMenu {
        from {
            opacity: 0;
            height: 0;
        }
        to {
            height: 100%;
            opacity: 1;
        }
    }

    .main-menu.hide {
        animation: 0.6s hideMenu forwards;
    }

    @keyframes hideMenu {
        from {
            opacity: 1;
            height: 100%;
        }
        to {
            height: 0;
            opacity: 0;
        }
    }

    .search-bar #notifyBtn {
        display: none;
    }

    .profile {
        margin: 0;
    }

    #notifyIcon {
        display: none;
    }

    .profile svg,
    .profile [class^="ri-"] {
        margin-left: 0px;
    }

    .header-wrapper {
        justify-content: space-between;
    }

    .module-content .section-content article {
        width: calc(100% / 3 - 15px);
    }

    .main-menu {
        display: none;
        position: fixed;
        gap: 20px;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
        z-index: 15;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* Mesmo fundo do body (gradientes + halo), sem blur */
        background-color: var(--primary-color);
        background-image:
            radial-gradient(
                120% 80% at 50% -30%,
                rgba(120, 122, 130, 0.09),
                transparent 50%
            ),
            radial-gradient(
                circle at 20% 30%,
                rgba(210, 212, 218, 0.07),
                transparent 52%
            ),
            radial-gradient(circle at top, #25262c 0%, #0a0a0b 65%),
            radial-gradient(ellipse at center, transparent 25%, #050505 75%);
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: scroll;
    }

    .main-menu li {
        margin: 0 !important;
        padding: 10px;
    }

    #closeBtn {
        display: block;
        position: fixed;
        top: 24px;
        right: 18px;
    }

    #notifyBtn {
        position: fixed;
        bottom: 24px;
        right: 0;
        display: flex;
        align-items: center;
        font-weight: 600;
        font-size: 10px;
        line-height: 12px;
        background-color: var(--secondary-color);
        padding: 11px 24px 11px 11px;
        box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
        border-radius: 2px 0px 0px 2px;
    }

    #notifyBtn i {
        margin-left: 6px;
        font-size: 14px;
    }

    .main-menu li.active {
        width: calc(100% - 20px);
        background: var(--primary-color);
        box-shadow: 2px 2px 4px 1px rgba(0, 0, 0, 0.25);
        border-radius: 3px;
    }

    .main-menu li:hover {
        opacity: 1;
        width: calc(100% - 20px);
        background: var(--primary-color);
        box-shadow: 2px 2px 4px 1px rgba(0, 0, 0, 0.25);
        border-radius: 3px;
    }
}

@media (max-width: 425px) {
    .logo img {
        width: 140px;
        height: 28px;
    }
    header {
        height: 70px;
    }
    header .header-wrapper .logo {
        max-width: 140px;
    }

    .base-article {
        margin: 0 5px;
    }

    .episode iframe {
        height: 240px !important;
    }

    .episode iframe.warez-cdn {
        height: 355px !important;
    }

    .module.episode-html .episode iframe {
        height: 100% !important;
        width: 100% !important;
    }

    .item-info .item-bg .lazy-poster__img {
        left: 0 !important;
        top: auto !important;
        bottom: 0;
    }

    .module-content .section-content article {
        width: 100%;
    }

    .module-content .section-content article .poster {
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .module-content .section-content article .data h3 {
        margin-top: 5px;
    }

    .header-wrapper {
        padding: 0px;
    }

    #menuIcon {
        padding: 10px;
    }

    .item-rating {
        top: 375px;
        right: 0;
        z-index: 2;
        font-size: 13px;
        background-color: rgba(0, 0, 0, 0.7);
        padding: 2px 5px;
    }

    .search-bar {
        padding: 0 6px;
    }

    .result {
        flex-direction: column;

        height: fit-content;
        margin: 6px 6px 12px 6px;
        width: calc(100% - 12px);
    }

    .result .item-image {
        position: relative;
        width: 100%;
        height: 400px;
        overflow: hidden;
        padding-left: 0;
    }

    .result .item-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        object-fit: cover;
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 5px 5px 0 0;
    }

    .result .item-image .lazy-poster--search-result-thumb,
    .result--skeleton .lazy-poster--search-skeleton-thumb {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border-radius: 5px 5px 0 0;
    }

    .result .item-image .lazy-poster--search-result-thumb .lazy-poster__img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border: 1px solid rgba(255, 255, 255, 0.5);
        border-radius: 5px 5px 0 0;
    }

    .result-info {
        margin: 10px;
        border-radius: 0 5px 0 5px;
    }

    .result-info span,
    .result-info .item-episodes {
        margin: 10px 0;
    }

    footer {
        height: fit-content;
    }

    footer p {
        font-size: 12px;
        position: relative;
        left: 0;
        bottom: 0;
        margin: 0 auto;
    }

    footer .header-wrapper {
        padding: 20px 0;
        flex-direction: column;
        gap: 20px;
    }

    footer .left-side {
        margin: 0 auto;
        flex-direction: column;
        gap: 20px;
    }

    footer .left-side a {
        font-size: 12px;
    }

    #twitterLogo {
        display: none;
    }
}

/* Lista de items + Lista de filmes + Calendário*/
/* Organização dos filtros de ordem alfabética */

.border-left-blue {
    border-left: 3px solid #fff;
    padding-left: 10px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.filters svg {
    cursor: auto;
}

.module.items-html {
    margin: 20px auto 0 auto;
    overflow: hidden;
}

.module.calendar {
    margin: 0 auto !important;
}

.module .abc {
    width: 1270px;
    overflow: auto;
    display: flex;
    background: var(--secondary-color);
    border-radius: 8px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
    gap: 5.5px;
    white-space: nowrap;
    padding: 0 6px;
}

.module .abc-wrapper {
    width: 100%;
    overflow: auto;
}

.module .abc li {
    height: 40px;
    min-width: 36px;
    padding: 0 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    white-space: nowrap;
    transition: opacity 0.3s, background-color 0.3s;
    border-radius: 6px;
}

.module .abc li:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.06);
}

.module .abc li.active {
    opacity: 1;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
}

/* Organização dos outros filtros */

.item-list {
    margin: 20px 0;
}

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

.item-list-header h1 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    color: var(--main-text-color);
}

.item-list-count {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--main-text-color);
    opacity: 0.55;
    background-color: var(--secondary-color);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 4px 12px;
}

.item-list-count i {
    font-size: 14px;
}

.item-list .filters .filter-type {
    display: flex;
    align-items: center;
    gap: 20px;
}

.item-list .filters .filter-type li {
    opacity: 0.5;
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s;
}
.item-list .filters .filter-type li:hover {
    opacity: 1;
}
.item-list .filters .filter-type p {
    opacity: 1;
    font-size: 14px;
    font-weight: 600;
    cursor: default;
}

.item-list .filters .week-days {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 2px;
}

.item-list .filters .week-days li {
    height: 30px;
    opacity: 0.5;
    font-weight: 400;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 120px;
    height: 30px;
    background: var(--secondary-color);
    transition: opacity 0.3s;
    cursor: pointer;
}

.item-list .filters .week-days li.active,
.item-list .filters .week-days li:hover {
    opacity: 1;
    background: var(--secondary-color);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

/* Organização dos resultados da filtragem */

.item-list .filter-results {
    display: flex;
    margin: 20px 0;
    gap: 20px;
    flex-wrap: wrap;
    min-height: 410px;
}

.filter-results .base-article {
    margin: 0;
}

@media (max-width: 500px) {
    .filter-results .base-article {
        max-width: none;
    }
    .filter-results .base-article .poster {
        width: auto;
        height: 250px;
    }
    .filter-results .base-article .poster .poster-overlay {
        width: 100%;
    }
}

.item-list article {
    width: calc(100% / 7 - 17.15px);
}

.item-list article .poster {
    position: relative;
    width: 165.7px;
    height: 249.52px;
    overflow: hidden;
    border-radius: 8px;
}

.item-list article .poster img,
.item-list article .poster .lazy-poster--item-grid .lazy-poster__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease-in-out;
}

.item-list article .poster .lazy-poster--item-grid {
    position: absolute;
    inset: 0;
    border-radius: 8px;
    z-index: 0;
}

.item-list article .poster .lazy-poster--item-grid .lazy-poster__skeleton {
    border-radius: 8px;
}

.item-list article .poster > a {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.item-list article .poster .poster-overlay {
    background: rgba(0, 0, 0, 0.75);
    opacity: 0;
    transition: all 0.5s ease-in-out;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.item-list article:hover .poster .poster-overlay {
    opacity: 0.75;
}

.item-list article:hover .poster img,
.item-list article:hover .poster .lazy-poster__img {
    filter: blur(3px);
}

.item-list article:hover .poster .poster-overlay .play-btn {
    opacity: 1;
}

.item-list article .poster .poster-overlay .play-btn svg {
    transition: all 1s ease-in-out;
}

.item-list article:hover .poster .poster-overlay .play-btn svg {
    transform: scale(1.5);
}

.item-list article .poster .poster-overlay .play-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    /* background-color: var(--secondary-color); */
    opacity: 0;
    transition: all 1s ease-in-out;
}

.item-list article .poster .poster-overlay .rating {
    position: absolute;
    bottom: 10px;
    right: 42px;
    display: flex;
    align-items: center;
    font-size: 10px;
}

.item-list article .poster .poster-overlay .rating svg {
    margin-right: 5px;
}

.item-list article .data {
    text-align: center;
    margin-top: 5px;
}

.item-list article .data h3 {
    font-weight: 500;
    font-size: 13px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: all 0.5s;
}

.item-list article:hover .data h3 {
    color: var(--vibrant-color);
}

.item-list article .data h4 {
    font-weight: 700;
    font-size: 9px;
    line-height: 11px;
    color: rgba(255, 255, 255, 0.5);
}

/* paginação */

.item-list .pagination-nav,
.popular .popular-pagination .pagination-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.popular .popular-pagination .pagination-nav {
    margin-top: 16px;
    flex-wrap: wrap;
    gap: 6px;
}

.item-list .pagination-btn,
.popular .popular-pagination .pagination-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 8px;
    background-color: var(--secondary-color);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--main-text-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.6;
    transition: opacity 0.3s, background-color 0.3s;
    cursor: pointer;
    flex-shrink: 0;
}

.item-list .pagination-btn:hover:not(.disabled):not(.active),
.popular .popular-pagination .pagination-btn:hover:not(.disabled):not(.active) {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.1);
}

.item-list .pagination-btn.active,
.popular .popular-pagination .pagination-btn.active {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.12);
}

.item-list .pagination-btn.disabled,
.popular .popular-pagination .pagination-btn.disabled {
    opacity: 0.2;
    cursor: default;
    pointer-events: none;
}

.popular .popular-pagination .pagination-btn {
    min-width: 30px;
    height: 32px;
    font-size: 12px;
    padding: 0 6px;
}

/* Media Queries de items.html */

@media (max-width: 1024px) {
    .item-list .filters {
        gap: 10px;
    }
    .item-list .filters .filter-result {
        text-wrap: nowrap;
    }

    .item-list .filter-results {
        gap: 10px;
    }

    .item-list article .poster {
        width: auto;
        height: 280px;
    }

    .item-list article {
        width: calc(100% / 5 - 8px);
    }

    .module .filter-wrapper {
        padding-right: 5px;
        width: 100%;
        overflow: auto;
    }
}

@media (max-width: 768px) {
    .item-list .filters {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        height: auto;
    }

    .item-list .filters .filter-type {
        width: 750px;
    }

    .item-llist .filters .filter-type li {
        width: fit-content;
    }

    .item-list article {
        width: calc(100% / 5 - 8px);
    }

    .item-list .filters .week-days {
        width: 850px;
    }

    .item-list article .poster {
        height: 350px;
    }

    .item-list article {
        width: calc(100% / 3 - 6.67px);
    }
}

@media (max-width: 425px) {
    .item-list article {
        width: calc(100% / 2 - 5px);
    }

    .item-list article .poster {
        width: auto;
        height: 280px;
    }
}

@media (max-width: 375px) {
    .item-list article .poster {
        height: 260px;
    }
}

@media (max-width: 320px) {
    .item-list article .poster {
        height: 230px;
    }
}

/* CSS da Página do episódio ( episodio.html ) */

.module.episode-html {
    margin: 10px auto;
}

.module.episode-html header {
    margin-bottom: 0;
}

.ep-content {
    display: flex;
    gap: 10px;
}

.ep-content .ep-data {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ep-content .ep-data header {
    width: 100%;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    background-color: var(--secondary-color);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 7px;
}

.ep-content .ep-data header h1 {
    font-weight: 600;
    font-size: 14px;
}

.ep-content .ep-data header span {
    font-weight: 300;
    font-size: 12px;
    color: var(--main-text-color);
    opacity: 0.5;
}

.ep-content .ep-data .episode {
    position: relative;
    display: flex;
    align-items: stretch;
    box-sizing: border-box;
    padding: 20px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 7px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: min(85vh, 1080px);
}

.episode iframe {
    flex: 1 1 auto;
    align-self: stretch;
    width: 100%;
    min-height: 0;
    height: 100%;
    transition: all 0.3s;
    opacity: 1;
    border: none;
}

.module.episode-html .episode .iframe-thumbnail {
    inset: 20px;
    width: auto;
    height: auto;
}

.episode iframe.active {
    opacity: 1;
}

.episode .iframe-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
}

.episode .iframe-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.episode .iframe-thumbnail svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
    opacity: 0.7;
    transition: all 0.3s;
}

.episode .iframe-thumbnail:hover svg {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.314);
}

.ep-content .ep-data .episode video {
    height: 100%;
    width: 100%;
}

.ep-content .ep-data .episode .ep-overlay {
    position: absolute;
}

.ep-content .ep-data .episode-nav {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
    box-sizing: border-box;
}

.ep-content .ep-data .episode-nav > a {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: stretch;
}

.ep-content .ep-data .episode-nav > .ep-list {
    flex: 2 1 0;
    min-width: 0;
}

.ep-info,
.ep-erro,
.ep-list .prev,
.ep-list .next {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.ep-content .ep-data .episode-nav .ep-info,
.ep-content .ep-data .episode-nav .ep-erro {
    height: 40px;
    width: 100%;
    opacity: 0.5;
    background-color: var(--secondary-color);
    border-left: 1px solid rgba(255, 255, 255, 0.03);
    border-right: 1px solid rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 2px;
    font-weight: 300;
    font-size: 12px;
    line-height: 20px;
    transition: opacity 0.3s;
}

.ep-info.active,
.ep-erro.active,
.ep-list.active,
.prev.active,
.list.active,
.next.active {
    background-color: var(--primary-color);
    border-left: 1px solid rgba(255, 255, 255, 0.03);
    border-right: 1px solid rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: none !important;
}

.ep-content .ep-data .episode-nav .ep-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.03);
    width: 100%;
    height: 40px;
    border-radius: 2px;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
}

.ep-content .ep-data .episode-nav .ep-list > a:first-child,
.ep-content .ep-data .episode-nav .ep-list > a:last-child {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ep-content .ep-data .episode-nav .ep-list > a:nth-child(2) {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ep-content .ep-data .episode-nav .ep-list .prev,
.ep-content .ep-data .episode-nav .ep-list .next {
    width: 100%;
    font-size: 12px;
    font-weight: 300;

    height: 40px;
    opacity: 0.5;
    transition: opacity 0.3s;
    background-color: var(--secondary-color);
}

.ep-content .ep-data .episode-nav .ep-list .list {
    height: 40px;
    width: 75px;
    opacity: 0.5;
    transition: opacity 0.3s;
    background-color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.ep-content .ep-data .episode-nav .ep-list .list:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.03);
}
.ep-content .ep-data .episode-nav .ep-info:hover,
.ep-content .ep-data .episode-nav .ep-erro:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.05);
}
.ep-content .ep-data .episode-nav .ep-list .prev:hover,
.ep-content .ep-data .episode-nav .ep-list .next:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.ep-content .ep-item-list {
    width: 100%;
    height: 625px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    background-color: var(--secondary-color);
}

/* Sidebar com a lista dos eps */
.ep-item-list {
    display: flex;
    flex-direction: column;
    width: 320px !important;
}
.ep-item-list h2 {
    width: 100%;
    height: 40px;
    background: var(--secondary-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-weight: 400;
    gap: 5px;
    color: #e7e7e7;
    font-size: 12px;
    display: flex;
    align-items: center;
    padding-left: 10px;
}

.ep-item-list .thumb-wrapper {
    width: 140px !important;
}

.module .ep-wrapper ul li span {
    font-weight: 600;
    font-size: 20px;
    height: 60px;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.module .ep-wrapper ul li div p {
    font-weight: 300;
    font-size: 10px;
    color: var(--main-text-color);
    opacity: 0.5;
}

.module .ep-wrapper ul li div h3 {
    font-weight: 400;
    font-size: 12px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ep-item-list .thumb-wrapper img {
    object-fit: contain;
}
.module .ep-wrapper {
    width: 100%;
    height: 585px;
    overflow: auto;
}

/* .module .ep-wrapper ul li {
    opacity: 0.5;
    transition: opacity 0.3s;
} */

.module .ep-wrapper ul li a {
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 5px;
    gap: 5px;
    width: 100%;
    display: flex;
    background-color: var(--primary-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    justify-content: flex-start;
    align-items: center;
    transition: all 0.3s;
    opacity: 0.4;
}

.module .ep-wrapper ul li a:hover,
.module .ep-wrapper ul li a.active {
    background-color: var(--secondary-color);
    opacity: 1;
}

.module .ep-wrapper ul li a div {
    max-width: calc(100% - 65px);

    display: flex;
    flex-direction: column;
}

.module .ep-wrapper ul li.active {
    background: rgba(255, 255, 255, 0.05);
    opacity: 1;
}

.module .ep-wrapper ul li span {
    font-weight: 700;
    font-size: 22px;
    line-height: 29px;
    height: 45px;
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.comment-warn {
    padding: 20px;
    margin: 10px 0;
    background-color: var(--secondary-color);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 2px;
    width: calc(100% - 330px);
    font-weight: 300;
    font-size: 14px;
    opacity: 0.8;
}

.module.episode-html .ep-data .comment-warn {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-left: 0;
    margin-right: 0;
    border-radius: 7px;
}

.module.episode-html .ep-data #disqus_thread {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border-radius: 7px;
    overflow: hidden;
}

.module .ep-wrapper ul li .item-description {
    max-width: calc(100% - 145px);
    gap: 5px;
}

.module .ep-wrapper ul li .item-description p {
    font-weight: 300;
    font-size: 12px;
    line-height: 15px;
    color: #cccccc;
}

.module .ep-wrapper ul li .item-description h3 {
    font-weight: 500;
    max-height: 35px;
    font-size: 13px;
    line-height: 17px;
    overflow: hidden;
    word-break: break-word;
    word-wrap: break-word;
    /* white-space: nowrap; */
    text-overflow: ellipsis;
}

/* DISQUS */

#disqus_thread {
    width: calc(100% - 330px);
    margin-top: 10px;
    padding: 20px 15px 5px 15px;
    background-color: var(--secondary-color);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

/* ============================================
   AUTH MODALS
   ============================================ */

.auth-modal {
    position: fixed;
    inset: 0;
    margin: auto;
    padding: 0;
    border: none;
    background: transparent;
    width: 100%;
    max-width: 460px;
    max-height: 100dvh;
    overflow: visible;
    z-index: 1000;
}

/* Bottom-sheet on mobile */
@media (max-width: 600px) {
    .auth-modal {
        max-width: 100%;
        margin: auto 0 0;
        border-radius: 20px 20px 0 0;
        align-self: flex-end;
    }
}

.auth-modal::backdrop {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(3px);
}

.auth-modal[open] {
    display: flex;
    flex-direction: column;
    animation: authModalIn 0.28s cubic-bezier(0.34, 1.1, 0.64, 1) both;
}

@keyframes authModalIn {
    from { opacity: 0; transform: translateY(28px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes authModalInMobile {
    from { opacity: 0; transform: translateY(100%); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
    .auth-modal[open] {
        animation-name: authModalInMobile;
    }
}

.auth-modal-box {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    width: 100%;
    max-height: 96dvh;
    overflow-y: auto;
    scrollbar-width: none;
}

.auth-modal-box::-webkit-scrollbar { display: none; }

@media (max-width: 600px) {
    .auth-modal-box {
        border-radius: 20px 20px 0 0;
        max-height: 92dvh;
        border-bottom: none;
    }
}

/* Head */
.auth-modal-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 32px 16px;
    position: relative;
}

.auth-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.2s, color 0.2s;
}

.auth-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.auth-modal-logo {
    margin: 0;
    line-height: 0;
}

.auth-modal-logo img {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.auth-modal-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-align: center;
}

/* Form */
.auth-modal-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 8px 32px 28px;
}

@media (max-width: 600px) {
    .auth-modal-head { padding: 18px 20px 12px; }
    .auth-modal-form { padding: 8px 20px 32px; }
}

/* Floating label input */
.auth-control-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.auth-float-label {
    position: relative;
}

.auth-float-label input {
    width: 100%;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px 14px 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

.auth-float-label label {
    position: absolute;
    left: 14px;
    top: 50%;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
    transform: translateY(-50%);
    transform-origin: left top;
    transition: transform 0.13s ease, color 0.13s ease;
    will-change: transform;
}

.auth-float-label input:focus,
.auth-float-label input:not(:placeholder-shown) {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.07);
}

.auth-float-label input:focus + label,
.auth-float-label input:not(:placeholder-shown) + label {
    transform: translateY(-130%) scale(0.79);
    color: #fff;
}

/* Password wrapper */
.auth-inp-wrapper input {
    padding-right: 52px;
}

.auth-btn-password {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    font-size: 18px;
    transition: color 0.2s;
    border-radius: 0 10px 10px 0;
}

.auth-btn-password:hover { color: rgba(255, 255, 255, 0.7); }

/* Hide "off" icon by default; show it when toggled */
.auth-btn-password .ri-eye-off-line { display: none; }
.auth-btn-password.is-visible .ri-eye-line { display: none; }
.auth-btn-password.is-visible .ri-eye-off-line { display: inline; }

/* Hint */
.auth-hint {
    font-size: 12px;
    color: #f87171;
    display: block;
    padding-left: 4px;
    min-height: 0;
    line-height: 1.4;
}

.auth-hint:empty { display: none; }

/* Alert */
.auth-alert {
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.5;
}

.auth-alert.is-error {
    background: rgba(248, 113, 113, 0.1);
    border: 1px solid rgba(248, 113, 113, 0.25);
    color: #f87171;
}

.auth-alert.is-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #4ade80;
}

.auth-alert.hidden { display: none; }

/* Remember */
.auth-remember {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    user-select: none;
}

.auth-remember input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    flex-shrink: 0;
}

/* Submit button */
.auth-btn-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: #fff;
    color: #111;
    border: none;
    border-radius: 9999px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
    margin-top: 4px;
}

.auth-btn-main:hover { opacity: 0.88; transform: translateY(-1px); }
.auth-btn-main:active { opacity: 1; transform: none; }
.auth-btn-main:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.auth-btn-text {}
.auth-btn-loading { display: flex; align-items: center; }
.auth-btn-loading.hidden { display: none !important; }

/* Spin animation */
@keyframes authSpin {
    to { transform: rotate(360deg); }
}
.ri-spin { animation: authSpin 0.7s linear infinite; }

/* Switch link */
.auth-switch {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.auth-btn-link {
    background: none;
    border: none;
    padding: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity 0.2s;
}

.auth-btn-link:hover { opacity: 0.75; }

/* ============================================
   COMMENTS COMPONENT
   ============================================ */

.comments-area {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 0 12px;
}

.comments-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 20px;
    padding-bottom: 0;
    border-bottom: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ---- Empty state ---- */

.comments-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background-color: var(--secondary-color);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    gap: 12px;
}

.comments-empty-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.4);
}

.comments-empty-icon svg {
    width: 24px;
    height: 24px;
}

.comments-empty-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin: 0;
}

/* ---- Comment list ---- */

.comment-list-container {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ---- Comment item ---- */

.comment-item {
    list-style: none;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comment-item:last-child {
    border-bottom: none;
}

.comment-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

/* Avatar */

.comment-avatar-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.comment-avatar-wrapper .lazy-poster--comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.08);
}

.comment-avatar-wrapper .lazy-poster--comment-avatar .lazy-poster__skeleton {
    border-radius: 50%;
}

.comment-avatar-wrapper .lazy-poster--comment-avatar .lazy-poster__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.comment-thread-line {
    width: 2px;
    flex: 1;
    min-height: 20px;
    background: rgba(255, 255, 255, 0.06);
    margin-top: 6px;
    border-radius: 1px;
}

.comment-item.is-reply .comment-thread-line {
    min-height: 14px;
    background: rgba(255, 255, 255, 0.08);
}

/* Main content */

.comment-main {
    flex: 1;
    min-width: 0;
}

.comment-header {
    margin-bottom: 6px;
}

.comment-user-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.comment-role-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 4px;
    line-height: 1.25;
    flex-shrink: 0;
}

.comment-role-badge--admin {
    background: rgba(245, 158, 11, 0.18);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.38);
}



.comment-username {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

a.comment-username:hover {
    color: rgba(255, 255, 255, 0.65);
}

.comment-time {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.comment-time-icon {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

/* Comment body */

.comment-body-content {
    margin-bottom: 8px;
}

.comment-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
    word-break: break-word;
}

.comment-body-content p {
    margin: 0;
}

/* ---- Spoiler ---- */

.spoiler-box {
    background: rgba(255, 200, 0, 0.04);
    border: 1px solid rgba(255, 200, 0, 0.18);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.spoiler-box.inherited-spoiler {
    background: rgba(255, 120, 0, 0.04);
    border-color: rgba(255, 120, 0, 0.18);
}

.spoiler-alert-box {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.spoiler-alert-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.spoiler-alert-title {
    font-size: 12px;
    font-weight: 700;
    color: #f59e0b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.spoiler-alert-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

.spoiler-hidden-content {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
    word-break: break-word;
}

.spoiler-hidden-content p {
    margin: 0;
}

.spoiler-hidden-content.hidden {
    display: none;
}

.spoiler-reveal-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 20px;
    color: #f59e0b;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    align-self: flex-start;
}

.spoiler-reveal-btn:hover {
    background: rgba(245, 158, 11, 0.22);
    border-color: rgba(245, 158, 11, 0.5);
}

.spoiler-reveal-btn svg {
    width: 14px;
    height: 14px;
}

/* ---- Comment actions ---- */

.comment-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.comment-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    text-decoration: none;
}

.comment-action-btn svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

.comment-action-btn:hover {
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
}

.comment-reply-link {
    color: rgba(255, 255, 255, 0.65);
    border-color: rgba(255, 255, 255, 0.22);
}

.comment-reply-link:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.12);
}

.comment-delete-btn:hover {
    color: #f87171;
    border-color: rgba(248, 113, 113, 0.35);
    background: rgba(248, 113, 113, 0.07);
}

/* ---- Replies ---- */

.comment-replies {
    list-style: none;
    margin: 10px 0 0;
    padding: 0 0 0 30px;
    margin-left: 20px;
    border-left: 2px solid rgba(255, 255, 255, 0.09);
    display: flex;
    flex-direction: column;
    gap: 0;
    box-sizing: border-box;
}

.comment-item.is-reply {
    padding: 12px 0;
    border-bottom-color: rgba(255, 255, 255, 0.04);
}

.comment-item.is-reply .comment-avatar-wrapper .lazy-poster--comment-avatar {
    width: 32px;
    height: 32px;
}

/* ---- Form ---- */

.comment-respond {
    margin-top: 28px;
    background: var(--secondary-color);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 24px;
}

.comment-reply-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.comment-reply-title small {
    font-size: inherit;
    font-weight: 400;
}

.comment-reply-title small a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s;
}

.comment-reply-title small a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* Tip box */

.comment-tip {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 16px 18px;
    margin-bottom: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.comment-tip-icon {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
    margin-top: 1px;
}

.comment-tip-icon svg {
    width: 16px;
    height: 16px;
}

.comment-tip-label {
    font-weight: 600;
    color: #fff;
}

/* Alert */

.comment-alert {
    border-radius: 8px;
    font-size: 13px;
}

/* Textarea */

.comment-form-comment {
    margin: 0 0 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
}

.comment-form-comment textarea {
    width: 100%;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 14px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-family: inherit;
    line-height: 1.6;
    resize: vertical;
    min-height: 110px;
    transition: border-color 0.2s;
    outline: none;
}

.comment-form-comment textarea:focus {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.06);
}

.comment-form-comment textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.comment-counter {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-align: right;
    display: block;
}

/* Spoiler checkbox */

.comment-form-cookies-consent {
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.comment-form-cookies-consent input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #e5e7eb;
    cursor: pointer;
    flex-shrink: 0;
}

.comment-spoiler-checkbox,
.auth-remember input[type="checkbox"] {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.comment-spoiler-checkbox:hover,
.auth-remember input[type="checkbox"]:hover {
    border-color: rgba(255, 255, 255, 0.56);
    background: rgba(255, 255, 255, 0.08);
}

.comment-spoiler-checkbox:focus-visible,
.auth-remember input[type="checkbox"]:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.75);
}

.comment-spoiler-checkbox:checked,
.auth-remember input[type="checkbox"]:checked {
    border-color: #fff;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5.2 4.2 8.4 11 1.6' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 11px 9px;
}

.comment-spoiler-checkbox:active,
.auth-remember input[type="checkbox"]:active {
    transform: scale(0.96);
}

.comment-form-cookies-consent label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    user-select: none;
}

.comment-spoiler-label {
    line-height: 1.35;
    transition: color 0.2s ease;
}

.comment-spoiler-label:hover {
    color: rgba(255, 255, 255, 0.82);
}

/* Submit */

.form-submit {
    margin: 0;
}

.comment-form .submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background: #fff;
    color: #111;
    border: none;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
}

.comment-form .submit:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.comment-form .submit:active {
    transform: translateY(0);
    opacity: 1;
}

/* ---- Guest CTA ---- */

.comment-guest-cta {
    margin-top: 28px;
    background: var(--secondary-color);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}

.comment-guest-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.comment-guest-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.comment-guest-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 6px;
}

.comment-guest-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 28px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s, background 0.2s, border-color 0.2s;
    background: #fff;
    color: #111;
    border: 2px solid transparent;
}

.comment-guest-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.comment-guest-btn:active {
    transform: translateY(0);
    opacity: 1;
}

.comment-guest-btn--outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.2);
}

.comment-guest-btn--outline:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.4);
    opacity: 1;
}

/* ---- Responsive ---- */

@media (max-width: 600px) {
    .comment-replies {
        margin-left: 17px;
        padding-left: 22px;
    }

    .comment-avatar-wrapper .lazy-poster--comment-avatar {
        width: 34px;
        height: 34px;
    }

    .comment-respond,
    .comment-guest-cta {
        padding: 18px 14px;
    }

    .comment-card {
        gap: 9px;
    }

    .comments-title {
        font-size: 16px;
    }
}

/*  */

.item-information {
    padding: 20px;
    background-color: var(--secondary-color);
    border-left: 1px solid rgba(255, 255, 255, 0.03);
    border-right: 1px solid rgba(255, 255, 255, 0.03);
    border-top: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 2px;
    width: 100%;
    font-weight: 400;
}

.item-information .item-container {
    max-width: 100%;
    background-color: var(--secondary-color);
    border: none;
}

.divider {
    border: 1px solid rgba(255, 255, 255, 0.03);
    margin-bottom: 20px;
}

.divider:last-child {
    margin: 20px 0 !important;
}

.divider-interno {
    margin: 5px 0;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.name-status {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.name-status .item-status {
    text-transform: uppercase;
    margin: 0 !important;
    height: fit-content;
    width: fit-content;
    padding: 3px 12px;
}

.item-container .item-info .item-text {
    width: 100%;
}

.item-container .item-info .item-text h3 {
    font-weight: 400 !important;
    font-size: 12px;
}

.item-container .item-info .item-text a {
    font-size: 16px;
    color: #e0bb00;
}

.item-container .item-info .item-text .ep-item-info p {
    font-size: 16px;
}

.item-container .item-info .item-text .sinopse {
    height: auto;
}

.item-information
    .item-container
    .item-info
    .item-details
    div:first-of-type {
    margin: 0 !important;
    gap: 0 !important;
}

.item-container .item-info .item-details .ep-item-info {
    display: flex;
    flex-direction: column;
}

.item-container .item-info .item-text p {
    font-size: 12px;
    font-weight: 300;
}

.item-status.censurado {
    background-color: #e53935;

    border-radius: 4px;
}

.item-information .item-info {
    gap: 20px;
}

.item-information .item-info > .item-info-poster-wrap {
    margin: 0;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.item-information .item-info .item-text {
    margin: 0;
}

/* Formulário de reportar erros */



/* Media Queries da página do episódio */

@media (max-width: 1300px) {
    .ep-content {
        flex-direction: column;
    }

    .ep-content .ep-data {
        width: 100%;
    }

    .episode-nav {
        flex-direction: column;
    }

    .ep-content .ep-data .episode-nav > a,
    .ep-content .ep-data .episode-nav > .ep-list {
        flex: none;
        width: 100%;
    }

    .episode-nav > a {
        width: 100%;
    }

    .ep-content .ep-data .episode-nav .ep-info,
    .ep-content .ep-data .episode-nav .ep-erro {
        width: 100%;
    }

    .ep-content .ep-data .episode-nav .ep-list {
        width: 100%;
        flex-wrap: nowrap;
    }

    /* âncoras dentro de .ep-list ficam em linha (não 100% cada uma) */
    .ep-content .ep-data .episode-nav .ep-list > a {
        width: auto;
    }

    .ep-content .ep-data .episode-nav .ep-list > a:first-child,
    .ep-content .ep-data .episode-nav .ep-list > a:last-child {
        flex: 1 1 0;
        min-width: 0;
    }

    .ep-content .ep-data .episode-nav .ep-list > a:nth-child(2) {
        flex: 0 0 auto;
    }

    .ep-content .ep-data .episode-nav .ep-list .prev,
    .ep-content .ep-data .episode-nav .ep-list .next {
        width: 100%;
        box-sizing: border-box;
        padding-left: 6px;
        padding-right: 6px;
        gap: 4px;
    }

    .ep-content .ep-data .episode-nav .ep-list .list {
        width: 75px;
        box-sizing: border-box;
    }

    .item-information {
        width: 100%;

        border-bottom: none;
    }

    #disqus_thread {
        width: 100%;
    }

    .comment-warn {
        width: 100%;
        font-size: 12px;
    }
}


/* SVG */

@media (max-width: 425px) {
    .ep-content .ep-data header {
        padding: 0 10px;
    }
    .ep-content .ep-data header h1 {
        font-size: 12px;
    }

    .ep-content .ep-data header span,
    .episode-nav p {
        font-size: 10px;
    }

    .ep-content .ep-data .episode-nav .ep-list .prev,
    .ep-content .ep-data .episode-nav .ep-list .next {
        min-width: 0;
    }

    .ep-content .ep-data .episode-nav .ep-list .prev p,
    .ep-content .ep-data .episode-nav .ep-list .next p {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        min-width: 0;
    }

    .item-information {
        font-size: 14px;
        text-align: justify;
    }

    .ep-content .ep-data .episode .ep-overlay {
        height: 60px;
        width: 60px;
    }

    .name-status h1 {
        font-size: 17px !important;
    }

    .name-status h3 {
        font-size: 13px !important;
    }

    .item-information .item-info .item-text {
        padding: 0 !important;
    }

    .item-container .item-info .item-text h3,
    .item-container .item-info .item-text a,
    .item-container .item-info .item-text .ep-item-info p,
    .item-container .item-info .item-text p {
        font-size: 12px;
    }
}

/* TEMPORADAS */

.season-content {
    width: 100%;
    display: flex;
    gap: 20px;
}
.item-data {
    width: calc(100% - 338px);
}

.item-container {
    /* background: var(--secondary-color); */
    border: 1px solid rgba(255, 255, 255, 0.03);
    max-width: calc(100% - 338px);
    width: 100%;
    min-height: 603px;
    border-radius: 7px;
}

.item-info {
    width: 100%;
    position: relative;
    display: flex;
}

/* lazyload + esqueleto (posters página da série) */
.lazy-poster {
    position: relative;
    display: block;
    overflow: hidden;
}

.lazy-poster__skeleton {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(
        110deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.12) 45%,
        rgba(255, 255, 255, 0.05) 90%
    );
    background-size: 200% 100%;
    animation: lazy-poster-shimmer 1.25s ease-in-out infinite;
    border-radius: inherit;
}

.lazy-poster__img {
    position: relative;
    z-index: 1;
    display: block;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.lazy-poster__img.lazyloaded {
    opacity: 1;
}

.lazy-poster:has(.lazy-poster__img.lazyloaded) .lazy-poster__skeleton {
    opacity: 0;
    transition: opacity 0.35s ease;
}

@keyframes lazy-poster-shimmer {
    0% {
        background-position: 100% 0;
    }
    100% {
        background-position: -100% 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lazy-poster__skeleton {
        animation: none;
        background: rgba(255, 255, 255, 0.07);
    }

    .lazy-poster__img {
        transition: none;
    }

    .search-skeleton-line {
        animation: none;
        background: rgba(255, 255, 255, 0.08);
    }
}

.item-info > .item-info-poster-wrap {
    width: 210px;
    height: 315px;
    margin: 40px;
    z-index: 2;
    flex-shrink: 0;
    border-radius: 8px;
    box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.25);
}

.item-info-poster-wrap .lazy-poster__skeleton {
    border-radius: 8px;
}

.item-info-poster-wrap .item-info-poster-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.item-info .item-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 300px;
    width: 100%;
    overflow: hidden;
    border-radius: 7px;
}

.item-info .item-bg .item-bg-overlay {
    z-index: 1;
    width: 100%;
    height: 100%;
    position: absolute;
    box-shadow: inset 1px 1px 15px var(--secondary-color);
}

.item-info .item-bg .lazy-poster--bg {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.item-info .item-bg .lazy-poster--bg .lazy-poster__img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.item-info .item-bg .lazy-poster--bg .lazy-poster__skeleton {
    border-radius: 7px 7px 0 0;
}

.item-info .item-bg::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.item-info .item-bg::after {
    content: "";
    background: url(../img/pattern-populares.png);
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    opacity: 0.05;
    z-index: 1;
}

.item-info .item-text {
    z-index: 2;
    margin: 40px 40px 40px 0;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.item-info .item-text h1 {
    font-weight: 500;
    font-size: 18px;
    text-transform: capitalize;
    color: #ffffff;
}
.item-info .item-text h2 {
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    text-transform: capitalize;
    color: #ffffff;
}
.item-info .item-text h3 {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
}
.item-info .item-text p {
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    /* text-transform: capitalize; */
}

.item-info .item-text .sinopse {
    height: 100px;
    overflow: auto;
}

.item-info .item-text .item-status {
    margin-top: 10px;
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
    display: flex;
    align-items: center;
    text-align: center;
    font-variant: small-caps;
    color: rgba(255, 255, 255, 0.9);
}

.item-info .item-rating {
    z-index: 2;
    top: 40px;
    right: 40px;
    font-size: 14px;
    font-weight: 600;
}

.item-info .item-details {
    display: flex;
    z-index: 2;
    flex-direction: column;
    gap: 8px;
}

.item-info .item-details div:first-of-type {
    margin-top: 15px;
    gap: 15px;
}

.item-info .item-details div {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

/* Parte das temporadas e episodios */

.seasons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 40px 35px 40px;
}

.seasons h2 {
    font-weight: 500;
    font-size: 18px;
    color: #ffffff;
}

.seasons .seasons-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.seasons ul {
    display: flex;
    list-style: none;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    width: fit-content;
    overflow: hidden;
}

.seasons ul li {
    height: 30px;
    min-width: 100px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
    text-align: center;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.5);
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
}

.seasons ul li.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

.seasons ul li:hover:not(.active) {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

/* Controles de episódios (busca + ordem) */

.seasons .ep-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.seasons .ep-search-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: var(--secondary-color);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 0 10px;
    height: 34px;
}

.seasons .ep-search-wrapper i {
    font-size: 14px;
    opacity: 0.45;
    flex-shrink: 0;
}

.seasons .ep-search-wrapper input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--main-text-color);
    font-size: 13px;
    width: 100%;
}

.seasons .ep-search-wrapper input::placeholder {
    opacity: 0.35;
}

.seasons .ep-order-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 34px;
    padding: 0 12px;
    border-radius: 8px;
    background-color: var(--secondary-color);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--main-text-color);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.3s;
}

.seasons .ep-order-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.seasons .ep-order-btn i {
    font-size: 15px;
}

/* Parte dos episódios */

.seasons .episodios {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* height: 550px; */
    overflow: auto;
}

.seasons .episodios .season-panel {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.seasons .episodios .episodio {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    /* margin-right: 5px; */
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 5px;
    transition: background-color 0.3s;
}

.seasons .episodios .episodio:hover {
    background: rgba(0, 0, 0, 0.05);
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
}

.seasons .episodios .episodio .lazy-poster--ep {
    max-width: 125px;
    max-height: 70px;
    width: 125px;
    height: 70px;
    border-radius: 5px;
    flex-shrink: 0;
}

.seasons .episodios .episodio .lazy-poster--ep .lazy-poster__skeleton {
    border-radius: 5px;
}

.seasons .episodios .episodio .lazy-poster--ep .ep-thumb {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    border-radius: 5px;
}

.seasons .episodios .episodio div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.seasons .episodios h3 {
    font-weight: 500;
    font-size: 12px;
}
.seasons .episodios p {
    font-weight: 300;
    font-size: 14px;
    color: var(--main-text-color);
    opacity: 0.8;
}
.seasons .episodios p strong {
    font-weight: 400;
    font-size: 12px;
}

.seasons .episodios .episodio #ep-play-btn {
    position: absolute;
    cursor: pointer;
    top: calc(50% - 15px);
    right: 15px;
}

.seasons .episodios details {
    padding: 15px 10px;
    background-color: var(--secondary-color);
    opacity: 0.8;
    transition: all 0.5s ease-in-out;
    max-height: 49px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
}

.seasons .episodios details:hover {
    opacity: 1;
}

.seasons .episodios details[open] {
    max-height: 4000px;
}

.seasons .episodios details[open],
.seasons .episodios details {
    user-select: none;
}

.seasons .episodios details[open] summary {
    margin-bottom: 15px;
}

.seasons .episodios details summary {
    cursor: pointer;
    list-style: none; /* Remove o ícone padrão */
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-left: 5px;
}

.seasons .episodios details summary::after {
    padding-right: 5px;
    content: "\25B6"; /* Código unicode para uma seta direcional à direita */
    font-size: 14px; /* Tamanho do ícone */
    transition: transform 0.3s ease-in-out; /* Adiciona transição para o ícone */
}

.seasons .episodios details[open] summary::after {
    transform: rotate(
        90deg
    ); /* Rotaciona o ícone quando o summary estiver ativo */
}

/* items populares */

.popular {
    width: 318px;
    /* background-color: var(--secondary-color); */
    height: fit-content;
    /* border: 1px solid rgba(255, 255, 255, 0.03); */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
    gap: 10px;
    border-radius: 7px;
}

.popular .items-populares {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}

.popular .items-populares li {
    flex: 1 1 calc(50% - 10px);
    list-style: none;
    position: relative;
}

.popular .items-populares li div {
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.popular .poster .lazy-poster--popular-poster {
    width: 144px;
    height: 216px;
    margin: 0 auto;
    flex-shrink: 0;
    border-radius: 8px;
    z-index: 0;
}

.popular .poster-container .poster {
    position: relative;
    width: 144px;
    margin: 0 auto;
}

.popular .poster .lazy-poster--popular-poster .lazy-poster__skeleton {
    border-radius: 8px;
}

.popular .poster .lazy-poster--popular-poster .lazy-poster__img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    border-radius: 8px;
    vertical-align: middle;
}

.popular .items-populares img {
    max-width: 95%;
    border-radius: 10px;
}

.popular .title {
    height: 40px;
    font-size: 18px;
    border-radius: 5px;
    display: flex;
    font-weight: 500;
    align-items: center;
}

.poster-container .poster .poster-overlay {
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.75);
    opacity: 0;
    transition: all 0.5s ease;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(3px);
}

.poster-container:hover .poster .poster-overlay {
    opacity: 1;
}


.poster-container .poster .poster-overlay .play-btn svg {
    transition: all 1s ease-in-out;
}

.poster-container:hover .poster .poster-overlay .play-btn svg {
    transform: scale(1.5);
}

.poster-container .poster .poster-overlay .rating {
    position: absolute;
    bottom: 10px;
    right: 42px;
    display: flex;
    align-items: center;
    font-size: 12px;
}

.poster-container .poster .poster-overlay .rating svg {
    margin-right: 5px;
}

.popular .items-populares img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.popular .items-populares li div h3 {
    font-weight: 500;
    font-size: 13px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: all 0.5s ease-in-out;
}

.popular .items-populares li a:hover {
    color: #c4c4c4;
}

.popular .items-populares li a > div {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.tooltip {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    display: none; /* Oculto inicialmente */
    z-index: 10;
}

.popular .items-populares li a h3 {
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s;
    opacity: 0.75;
    transition: all 0.5s ease-in-out;
    text-align: center;
    margin-top: 10px;
}

.popular .items-populares li:hover h3 {
    color: var(--vibrant-color);
}

.popular .items-populares li a:hover h3 {
    font-weight: 500;
    opacity: 1;
}
.popular .items-populares li a div .items-rating {
    position: absolute;
    font-size: 10px;
    right: 4px;
    top: 4px;
}

.popular .items-populares li a div .items-rating svg {
    height: 12px;
    width: 12px;
}

/* Media Querie da página do item */

@media (max-width: 1024px) {
    .season-content {
        flex-direction: column;
        align-items: center;
    }

    .item-container {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .item-info .item-text {
        margin: 20px 20px 20px 0;
    }

    .item-info > .item-info-poster-wrap {
        margin: 20px;
    }

    .item-info .item-details div:first-of-type {
        margin-top: 50px;
    }
}

@media (max-width: 500px) {
    .item-info .item-details div:first-of-type {
        margin-top: 0px;
    }
    .item-info {
        flex-direction: column;
        align-items: center;
    }

    .item-info .item-bg .item-bg-overlay {
        box-shadow: inset 0 0 50px black;
    }

    .item-info > .item-info-poster-wrap {
        margin: 40px auto 20px auto;
        box-shadow: 3px -3px 15px 2px rgb(0 0 0);
    }

    .item-container .item-info .item-text h3 {
        margin-right: auto;
    }

    .item-info .item-rating {
        z-index: 2;
        top: 275px;
        right: 5px;
    }

    .item-info .item-text {
        margin: 0;
        text-align: center;
        max-width: 100%;
        padding: 0 10px;
    }

    .item-info .item-details div:last-child {
        padding-bottom: 10px;
    }

    .item-info .item-rating {
        background-color: transparent;
        font-size: 12px;
        font-weight: 500;
    }

    .seasons .episodios details {
        padding: 5px;
        font-size: 12px;
        font-weight: 400;
    }

    .item-category {
        width: fit-content;
        white-space: nowrap;
    }

    .item-info .item-details {
        overflow: hidden !important;
    }

    .item-category-wrapper {
        flex-wrap: nowrap !important;
        overflow: auto;
    }

    .seasons h2 {
        font-size: 14px;
    }

    .item-info .item-details {
        overflow: auto;
    }

    .item-info .item-text .sinopse {
        text-align: justify;
    }

    .item-info .item-text .item-status {
        margin: 0 auto 0 0;
    }

    .seasons {
        margin: 0;
        padding: 10px;
    }

    .seasons .episodios .episodio .lazy-poster--ep {
        max-width: 100px;
        max-height: 56px;
        width: 100px;
        height: 56px;
    }

    .seasons .episodios .episodio #ep-play-btn {
        display: none;
    }

    .seasons .seasons-wrapper {
        width: 100%;
        padding: 10px 0;
        overflow: auto;
    }

    .popular {
        width: 100%;
    }

    .popular .items-populares li a {
        height: auto;
    }

    .popular .item-rating {
        background-color: rgba(0, 0, 0, 0) !important;
    }
}

@media (max-width: 375px) {
    .module.season {
        margin: 10px auto;
    }
}

/* ============================================
   PROFILE PAGE
   ============================================ */

body:has(.profile-layout) {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
}

body:has(.profile-layout) > header,
body:has(.profile-layout) > footer {
    flex: 0 0 auto;
    width: 100%;
    min-width: 0;
}

body:has(.profile-layout) > .profile-layout {
    flex: 1 0 auto;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

body:has(.profile-layout) .profile-page.module {
    flex: 1 0 auto;
    width: 100%;
    min-width: 0;
}

/* Admin users / comments — mesmo sticky footer que o perfil */
body:has(.users-layout),
body:has(.comments-layout) {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
}

body:has(.users-layout) > header,
body:has(.users-layout) > footer,
body:has(.comments-layout) > header,
body:has(.comments-layout) > footer {
    flex: 0 0 auto;
    width: 100%;
    min-width: 0;
}

body:has(.users-layout) > .users-layout,
body:has(.comments-layout) > .comments-layout {
    flex: 1 0 auto;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

body:has(.users-layout) .profile-page.module,
body:has(.comments-layout) .profile-page.module {
    flex: 1 0 auto;
    width: 100%;
    min-width: 0;
}

.profile-page {
    padding-bottom: 60px;
}

/* Hero */
.profile-hero {
    position: relative;
    background: var(--secondary-color);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    overflow: hidden;
    margin: 16px 0 0;
}

.profile-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 60%);
    pointer-events: none;
}

.profile-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 32px 24px;
    flex-wrap: wrap;
}

/* Avatar */
.profile-avatar {
    flex-shrink: 0;
    position: relative;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--secondary-color);
    margin: 0;
}

.profile-avatar .lazy-poster--profile-avatar {
    position: absolute;
    inset: 0;
    border-radius: 50%;
}

.profile-avatar .lazy-poster--profile-avatar .lazy-poster__skeleton {
    border-radius: 50%;
}

.profile-avatar .lazy-poster--profile-avatar .lazy-poster__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Meta */
.profile-meta {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.profile-username {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.profile-email {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.profile-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 2px;
}

.profile-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 3px 8px;
    line-height: 1.4;
}

.profile-badge i {
    font-size: 12px;
}

.profile-badge--green {
    color: rgba(74, 222, 128, 0.85);
    border-color: rgba(74, 222, 128, 0.18);
    background: rgba(74, 222, 128, 0.07);
}

/* Actions */
.profile-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    margin-left: auto;
}

.profile-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 8px 16px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
    white-space: nowrap;
}

.profile-action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
    transform: translateY(-1px);
}

.profile-action-btn:active {
    transform: translateY(0);
}

.profile-action-btn--primary {
    background: #fff;
    border-color: #fff;
    color: #111;
}

.profile-action-btn--primary:hover {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(255, 255, 255, 0.88);
    color: #111;
}

/* Body */
.profile-body {
    padding-top: 36px;
}

.profile-section-header {
    margin-bottom: 20px;
}

.profile-section-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-section-title i {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
}

/* Wrapper de itens: herda os seletores .item-list article/.poster sem o header/padding do .item-list */
.profile-item-list {
    padding: 0;
    border: none;
}

.profile-item-list .filter-results {
    min-height: 0;
    margin: 0;
}

/* Estado vazio do perfil */
.profile-body .empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 60px 20px;
    text-align: center;
}

.profile-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 10px 22px;
    background: #fff;
    color: #111;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 600;
    transition: opacity 0.2s, transform 0.15s;
}

.profile-cta-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

/* Divisor do modal */
.profile-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    margin: 4px 0;
}

.profile-divider::before,
.profile-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.profile-divider small {
    font-size: 11px;
}

/* Responsive */
@media (max-width: 600px) {
    .profile-hero-content {
        padding: 20px 16px;
        gap: 14px;
    }

    .profile-avatar {
        width: 56px;
        height: 56px;
        border-radius: 50%;
    }

    .profile-username {
        font-size: 17px;
    }

    .profile-badges {
        gap: 5px;
    }

    .profile-badge {
        font-size: 10px;
        padding: 3px 7px;
    }

    .profile-actions {
        margin-left: 0;
        width: 100%;
        gap: 6px;
    }

    .profile-action-btn {
        flex: 1;
        font-size: 12px;
        padding: 9px 12px;
    }
}

/* ==========================================================================
   Admin Panel
   ========================================================================== */

.admin-page-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.admin-page-title-icon-wrap {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

.admin-page-title-icon {
    font-size: 18px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.9);
}

.admin-page-title-text {
    letter-spacing: 0.01em;
}

.profile-badges.admin-hero-metrics {
    margin-top: 12px;
    gap: 12px;
    align-items: stretch;
    flex-wrap: wrap;
}

.admin-hero-stat,
.admin-hero-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1 1 200px;
    min-width: 0;
    min-height: 42px;
    height: 42px;
    box-sizing: border-box;
    padding: 0 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.25;
}

.admin-hero-stat {
    max-width: 100%;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.admin-hero-stat.admin-hero-nav--active {
    color: rgba(255, 255, 255, 0.95);
    border-color: rgba(245, 158, 11, 0.5);
    background: rgba(245, 158, 11, 0.18);
    box-shadow: none;
}

.admin-hero-stat.admin-hero-nav--active > i:first-child {
    color: #fbbf24;
}

.admin-hero-stat > i:first-child {
    font-size: 17px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.55);
    flex-shrink: 0;
}

.admin-hero-stat-text {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px 6px;
    line-height: 1.25;
    min-width: 0;
    justify-content: center;
    text-align: center;
}

.admin-hero-stat-sub {
    display: inline;
    margin-left: 4px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
}

.admin-hero-stat-sub strong {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.admin-hero-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-decoration: none;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.admin-hero-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.admin-hero-link i {
    font-size: 17px;
    line-height: 1;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.5);
}

.admin-hero-link:hover i {
    color: rgba(255, 255, 255, 0.75);
}

/* Filtros */
.admin-filters {
    margin-bottom: 24px;
}

.admin-filter-group {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

/* Alinha a altura do input de busca com o select e o botão */
.admin-filter-group .auth-float-label {
    flex: 1;
    min-width: 200px;
}

.admin-filter-group .auth-float-label input {
    padding: 10px 14px;
    height: 42px;
    box-sizing: border-box;
}

.admin-filter-group .auth-float-label label {
    top: 50%;
    font-size: 13px;
}

.admin-filter-group .profile-action-btn {
    height: 42px;
    padding-top: 0;
    padding-bottom: 0;
    transition: none;
}

.admin-filter-group .profile-action-btn:hover {
    transform: none;
}

.admin-filter-group .profile-action-btn:active {
    transform: none;
}

/* Select */
.admin-select {
    background: rgba(255, 255, 255, .05) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,.4)' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 12px center;
    border: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .85);
    border-radius: 10px;
    padding: 0 34px 0 14px;
    height: 42px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    cursor: pointer;
    min-width: 160px;
    box-sizing: border-box;
    transition: border-color .2s, background-color .2s;
    appearance: none;
    -webkit-appearance: none;
}

.admin-select:focus {
    border-color: rgba(255, 255, 255, .35);
    background-color: rgba(255, 255, 255, .07);
}

.admin-select option {
    background-color: #1a1a1a;
    color: rgba(255, 255, 255, .85);
}

.admin-select--full {
    width: 100%;
    margin-top: 6px;
}

.admin-select-label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 2px;
}

/* Tabela de usuários */
.admin-table-wrap {
    overflow-x: auto;
    border-radius: 14px;
    border: 1px solid var(--line-color, #2a2a2a);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.admin-table thead tr {
    border-bottom: 1px solid var(--line-color, #2a2a2a);
}

.admin-table th {
    padding: 12px 16px;
    text-align: left;
    color: rgba(255, 255, 255, .45);
    font-weight: 500;
    white-space: nowrap;
}

.admin-table td {
    padding: 12px 16px;
    color: rgba(255, 255, 255, .8);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    vertical-align: middle;
}

.admin-table tbody tr:last-child td {
    border-bottom: none;
}

.admin-table tbody tr:hover td {
    background: rgba(255, 255, 255, .03);
}

/* Célula de usuário */
.admin-user-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    background: #333;
    flex-shrink: 0;
}

.admin-username {
    font-weight: 500;
    font-size: 14px;
}

.admin-email {
    color: rgba(255, 255, 255, .5);
    font-size: 13px;
}

.admin-date {
    color: rgba(255, 255, 255, .4);
    font-size: 13px;
    white-space: nowrap;
}

/* Badges */
.admin-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .55);
    white-space: nowrap;
}

.admin-badge--admin {
    background: rgba(239, 68, 68, .15);
    color: #f87171;
}

.admin-badge--user {
    background: rgba(99, 102, 241, .15);
    color: #a5b4fc;
}

.admin-badge--green {
    background: rgba(34, 197, 94, .12);
    color: #4ade80;
}

.admin-badge--you {
    background: rgba(234, 179, 8, .12);
    color: #facc15;
}

.admin-comments-filter-user {
    align-self: center;
    padding: 6px 10px;
    font-size: .8rem;
}

.admin-comments-filter-user-remove {
    margin-left: 6px;
    color: inherit;
    opacity: .75;
    text-decoration: none;
}

.admin-comments-filter-user-remove:hover {
    opacity: 1;
}

/* Botões de ação */
.admin-actions {
    display: flex;
    gap: 6px;
}

.admin-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    transition: background .15s, color .15s;
    background: transparent;
    color: rgba(255, 255, 255, .5);
    flex-shrink: 0;
}

.admin-btn:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.admin-link-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255, 255, 255, .6);
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0;
    transition: color .15s;
}

.admin-link-btn:hover {
    color: #f87171;
}

/* Paginação */
.admin-pagination {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}

.admin-pag-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

.admin-pag-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    flex-shrink: 0;
    line-height: 1;
    user-select: none;
}

.admin-pag-btn:hover:not(.disabled):not(.active):not(.dots) {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.admin-pag-btn.active {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 600;
    cursor: default;
    pointer-events: none;
}

.admin-pag-btn.disabled {
    opacity: 0.2;
    cursor: default;
    pointer-events: none;
}

.admin-pag-btn.dots {
    background: transparent;
    border-color: transparent;
    cursor: default;
    pointer-events: none;
    color: rgba(255, 255, 255, 0.3);
    min-width: 24px;
    padding: 0;
}

/* Loading */
.admin-loading {
    display: flex;
    justify-content: center;
    padding: 32px;
    font-size: 24px;
    color: rgba(255, 255, 255, .4);
}

/* Modal de favoritos */
.admin-favorites-list {
    padding: 0;
    margin: 0;
}

.admin-favs-ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admin-fav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 10px 14px;
    background: rgba(255, 255, 255, .04);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .06);
}

.admin-fav-title {
    flex: 1;
    min-width: 0;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, .92);
    line-height: 1.35;
}

a.admin-fav-title--link {
    color: #a5b4fc;
    text-decoration: none;
}

a.admin-fav-title--link:hover {
    text-decoration: underline;
}

.admin-fav-id {
    color: rgba(255, 255, 255, .4);
    font-size: 12px;
    white-space: nowrap;
    margin-left: auto;
}

.admin-favs-empty {
    text-align: center;
    padding: 8px 0 0;
    color: rgba(255, 255, 255, .5);
}

.admin-favs-empty--error {
    color: #ef4444;
}

/* Lista de comentários */
.admin-comment-id {
    color: rgba(255, 255, 255, .25);
    font-size: 11px;
}

.admin-comments-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.admin-comment-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .15s;
}

.admin-comment-card:hover {
    border-color: rgba(255, 255, 255, .12);
}

.admin-comment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    background: rgba(255, 255, 255, .02);
}

.admin-comment-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    flex: 1;
}

.admin-comment-user {
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
    transition: color .15s;
}

.admin-comment-user:hover {
    color: #fff;
    text-decoration: underline;
}

.admin-comment-body {
    padding: 14px 16px;
}

.admin-comment-text {
    color: rgba(255, 255, 255, .75);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    white-space: pre-wrap;
    word-break: break-word;
}

.admin-comment-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    margin-left: auto;
}

a.admin-comment-page-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    max-width: 220px;
    font-size: 12px;
    font-weight: 500;
    color: #a5b4fc;
    text-decoration: none;
}

a.admin-comment-page-link:hover {
    color: #c4b5fd;
    text-decoration: underline;
}

/* `[hidden]` do HTML é sobrescrito se definirmos `display` na mesma classe */
.admin-comment-spoiler-wrap[hidden] {
    display: none !important;
}

.admin-comment-spoiler-wrap:not([hidden]) {
    display: inline-flex;
    align-items: center;
}

.admin-comment-textarea {
    width: 100%;
    box-sizing: border-box;
    min-height: 140px;
    padding: 12px 14px;
    margin-top: 6px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    color: rgba(255, 255, 255, .9);
    font-size: 14px;
    font-family: inherit;
    outline: none;
    resize: vertical;
    transition: border-color .2s, background .2s;
}

.admin-comment-textarea:focus {
    border-color: rgba(255, 255, 255, .35);
    background: rgba(255, 255, 255, .07);
}

.admin-modal-comment-edit.auth-modal-box {
    max-width: 460px;
}

.admin-modal-confirm-delete.auth-modal-box {
    max-width: 400px;
}

.admin-confirm-delete__body {
    padding: 0 24px 24px;
}

.admin-confirm-delete__text {
    font-size: 12px;
    line-height: 1.55;
    color: rgba(255, 255, 255, .62);
    margin: 0 auto 18px;
    max-width: 38ch;
    text-align: center;
}

.admin-confirm-delete__actions {
    display: flex;
    gap: 12px;
}

.admin-confirm-delete__btn {
    flex: 1;
    justify-content: center;
}

.profile-action-btn.admin-confirm-delete__btn:not(.admin-confirm-delete__btn-remove) {
    transition: none;
}

.profile-action-btn.admin-confirm-delete__btn:not(.admin-confirm-delete__btn-remove):hover {
    transform: none;
}

.profile-action-btn.admin-confirm-delete__btn:not(.admin-confirm-delete__btn-remove):active {
    transform: none;
}

.profile-action-btn.admin-confirm-delete__btn-remove {
    font-weight: 600;
    color: #fff;
    background: #dc2626;
    border-color: #dc2626;
    transition: none;
}

.profile-action-btn.admin-confirm-delete__btn-remove:hover {
    background: #ef4444;
    border-color: #ef4444;
    color: #fff;
    transform: none;
}

.profile-action-btn.admin-confirm-delete__btn-remove:active {
    transform: none;
}

.profile-action-btn.admin-confirm-delete__btn-remove i {
    color: inherit;
}

/* Admin — Responsivo */
@media (max-width: 640px) {
    .admin-filter-group {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-filter-group .auth-float-label {
        min-width: unset;
        width: 100%;
    }

    .admin-select {
        min-width: unset;
        width: 100%;
    }

    .admin-table th,
    .admin-table td {
        padding: 10px 12px;
        font-size: 13px;
    }

    .admin-comment-header {
        flex-wrap: wrap;
        gap: 8px;
    }
}

