* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --prime-bg: #080808;
    --prime-bg-secondary: #1a242f;
    --prime-bg-card: #000000;
    --prime-blue: #00a8e1;
    --prime-text: #ffffff;
    --prime-text-secondary: #aaaaaa;
    --prime-text-muted: #889099;
    --prime-gold: #f5c518;
    --prime-border: rgba(255, 255, 255, 0.15);
    --prime-border-light: rgba(255, 255, 255, 0.08);
    --fable-button-primary-height-min: 48px;
    --fable-button-primary-padding-vertical: 5px;
    --fable-foundation-spacing-150: 12px;
    --fable-size-150: 24px;

}

body {
    font-family: 'Amazon Ember', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: #000000;
    color: var(--prime-text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.loading {
    overflow: hidden;
}

.page-loader {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: radial-gradient(circle at 20% 20%, rgba(0, 168, 225, 0.18), rgba(0, 0, 0, 0.92) 58%);
    z-index: 2000;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loader .loader-ring {
    width: 74px;
    height: 74px;
    border-radius: 999px;
    border: 4px solid rgba(255, 255, 255, 0.08);
    border-top-color: var(--prime-blue);
    border-right-color: var(--prime-blue);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 168, 225, 0.14);
    animation: spin 0.9s linear infinite;
}

.page-loader .loader-text {
    color: var(--prime-text);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 15px;
}

/* ===== HEADER PRIME VIDEO STYLE ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
    backdrop-filter: blur(10px);
    padding: 0 3%;
    transition: background-color 0.3s ease;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.288);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1920px;
    margin: 0 auto;
    height: 60px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--prime-text);
    font-size: 20px;
    font-weight: 700;
}

.logo-prime {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.logo-video {
    color: var(--prime-blue);
    font-weight: 700;
}

.nav-menu {
    display: flex;
    gap: 28px;
    list-style: none;
    margin-left: 40px;
}

.nav-menu a {
    color: var(--prime-text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
    padding: 20px 0;
    display: block;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--prime-blue);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 36px;
}

.search-container {
    position: relative;
    flex: 1;
    max-width: 500px;
    margin: 0 20px;
}

.search-input-wrapper {
    position: relative;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 10px 40px 10px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--prime-border-light);
    border-radius: 6px;
    color: var(--prime-text);
    font-size: 15px;
    outline: none;
    transition: all 0.3s;
}

.search-input::placeholder {
    color: var(--prime-text-secondary);
}

.search-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--prime-blue);
    box-shadow: 0 0 0 3px rgba(0, 168, 225, 0.1);
}

.search-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--prime-text-secondary);
    font-size: 14px;
    pointer-events: none;
    transition: color 0.3s;
}

.search-input:focus ~ .search-icon {
    color: var(--prime-blue);
}

.search-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--prime-bg-card);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.7);
    max-height: 70vh;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    border: 1px solid var(--prime-border-light);
}

.search-dropdown.active {
    display: block;
}

.search-result-item {
    display: flex;
    gap: 14px;
    padding: 12px 14px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid var(--prime-border-light);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.search-result-poster {
    width: 45px;
    height: 65px;
    border-radius: 2px;
    object-fit: cover;
    flex-shrink: 0;
}

.search-result-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.search-result-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--prime-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-meta {
    font-size: 12px;
    color: var(--prime-text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.search-empty,
.search-loading {
    text-align: center;
    padding: 30px 20px;
    color: var(--prime-text-secondary);
}

.search-loading .spinner {
    width: 30px;
    height: 30px;
    margin: 0 auto 10px;
}

.login-btn {
    padding: 8px 20px;
    background: var(--prime-blue);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: none;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.login-btn.show {
    display: flex;
}

.login-btn:hover {
    background: #0090c0;
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid var(--prime-blue);
    transition: all 0.3s;
    display: none;
}

.user-avatar.show {
    display: block;
}

.user-avatar:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 168, 225, 0.5);
}

/* ===== HERO BANNER PRIME STYLE ===== */
.hero-banner {
    position: relative;
    height: 80vh;
    min-height: 650px;
    margin-top: 60px;
    overflow: hidden;
    background: #000;
}

.banner-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner-slide.active {
    opacity: 1;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    filter: brightness(0.8);
    transition: all 0.5s ease;
}

.banner-slide:hover .banner-image {
    transform: scale(1.02);
    filter: brightness(0.6);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 35%,
        rgba(0, 0, 0, 0.2) 60%,
        rgba(0, 0, 0, 0) 100%
    ),
    linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.4) 90%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 4%;
    transform: translateY(-50%);
    max-width: 650px;
    z-index: 10;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(-40%) translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

@keyframes fadeInOverlay {
    from { opacity: 0; }
    to { opacity: 1; }
}

.banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: linear-gradient(135deg, var(--prime-blue) 0%, #0090c0 100%);
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 16px rgba(0, 168, 225, 0.4);
    animation: glow 2s infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(0, 168, 225, 0.4);
    }
    50% {
        box-shadow: 0 4px 24px rgba(0, 168, 225, 0.7);
    }
}

.banner-badge i {
    font-size: 14px;
}


.banner-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
    letter-spacing: -1px;
}

.banner-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    font-size: 14px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    color: var(--prime-text);
    font-weight: 500;
}

.meta-item span {
    display: inline;
}

.banner-site-logo {
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInDown 0.8s ease 0.3s forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.site-logo-img {
    height: 55px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.9));
}

.banner-header-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 0.8s ease 0.5s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.certification-badge {
    height: 38px;
    width: auto;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.7));
    transition: all 0.3s ease;
}

.certification-badge:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.9));
}

/* Aviso do anime */
.anime-warning-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 193, 7, 0.2);
    border: 1px solid rgba(255, 193, 7, 0.4);
    border-radius: 6px;
    color: #ffc107;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
    animation: fadeIn 1s ease;
}

.anime-warning-badge i {
    font-size: 14px;
}

/* Container de trailer no banner */
.banner-trailer-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.banner-trailer-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-trailer-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Descrição que aparece ao hover */
.banner-description-wrapper {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 0;
}

.banner-description-wrapper.show {
    max-height: 200px;
    opacity: 1;
    transform: translateY(0);
    margin-bottom: 24px;
}

.meta-rating {
    background: var(--prime-gold);
    color: #000;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 5px;
}

.banner-genres {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.genre-badge {
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;
    font-size: 14px;
    color: var(--prime-text);
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.banner-description {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.banner-actions {
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.btn-watch,
.btn-secondary,
.btn-icon {
    padding: 14px 28px;
    border-radius: 100px;
    background: hsla(0, 0%, 100%, 0.2);
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-watch {
    align-items: center;
    border: none;
    cursor: pointer;
    display: inline-flex;
    font-family: Amazon Ember, Amazon Arabic Ember, Arial, sans-serif !important;
    font-size: 20px;
    font-weight: 700;
    justify-content: center;
    letter-spacing: 0;
    line-height: 1.5;
    min-width: 48px;
    transition-duration: 0.2s;
    transition-property: transform, background-color, color, outline;
    transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
    background: hsla(0, 0%, 100%, 0.2);
    border-radius: 8px;
    color: #fff;
    min-height: 48px;
    padding: 12px 12px;
    text-transform: none;
}

.btn-watch:hover {
    background: #f1f1f1;
    color: #00050d;
    transform: scale(1.05);
}

.btn-watch:active {
    transform: scale(0.95);
}

.btn-watch i {
    display: inline-flex;
    margin-right: 1px;
}

/* Label Container para botões de ícone */
.btn-icon-label {
    border-radius: 10000px;
    display: inline-flex;
    justify-content: center;
    position: relative;
    cursor: pointer;
    left: 9px;
    padding-left: 2px;
}

.btn-icon-label:focus-visible {
    outline: none;
}

.btn-icon-label:focus-visible:not(:hover) {
    border-radius: 10px;
    outline: 3px solid #fff;
    outline-offset: 0.1em;
    text-decoration: none;
}



.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}
/* Botões de Ícone */
.btn-icon {
    align-items: center;
    background: hsla(0, 0%, 100%, 0.2);
    border: none;
    border-radius: 10000px;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 24px;
    height: 58px;
    width: 58px;
    justify-content: center;
    padding: 0;
    transition-duration: 0.2s;
    transition-property: transform, background-color;
    transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.btn-icon:hover {
    background-color: rgb(255, 255, 255);
    transform: scale(1.05);
    color: #000;
}

.btn-icon:active {
    transform: scale(0.95);
}

.btn-icon.active {
    background: rgb(255, 255, 255);
    background-color: hsla(0, 0%, 100%, 0.2);
}

.btn-icon svg {
    display: block;
    height: 38px;
    width: 38px;
}

/* Estilos para o novo botão de mais detalhes */
.jDcAoh {
    border-radius: 10000px;
    display: inline-flex;
    justify-content: center;
    position: relative;
}

._39zede._2lS2e0 {
    height: 58px;
    width: 58px;
}

._39zede._2lS2e0 svg {
    height: 38px;
    width: 38px;
}

/* Remover estilos antigos do btn-secondary se não for usado */
.btn-secondary {
    display: none;
}

/* Banner Navigation */
.banner-nav {
    position: absolute;
    bottom: 40px;
    left: 3%;
    display: flex;
    gap: 10px;
    z-index: 20;
}

.banner-dot {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.banner-dot.active {
    background: var(--prime-blue);
    width: 60px;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
    padding: 20px 3% 8px;
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
    z-index: 1;
    isolation: isolate;
}

/* .content-section.compact-section {
    --compact-card-overlay-space: 320px;
    padding-bottom: calc(16px + var(--compact-card-overlay-space));
    margin-bottom: calc(var(--compact-card-overlay-space) * -1);
} */

/* Removido :hover e :focus-within para evitar conflito de z-index entre seções */
@supports selector(:has(*)) {
    .content-section:has(.anime-card.expanded),
    .content-section:has(.popular-card.expanded),
    .content-section:has(.compact-card.expanded) {
        z-index: 10000;
    }
}

.section-header {
    display: flex;
    justify-content: flex-start;  /* tudo encostado à esquerda */
    align-items: baseline;        /* alinha pelas “letras” */
    column-gap: 4px;              /* espaço mínimo entre título e link */
    margin-bottom: 12px;
}

/* garante que o h2 não tenha margens extras */
.section-header .section-title {
    margin: 0;
}

/* tira qualquer “empurrão” lateral do link */
.section-header .view-all-link {
    margin: 0;
    padding-left: 20px; /* se quiser um respiro bem pequeno */
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title i {
    color: var(--prime-blue);
}

.view-all-link {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    padding-left: 90px;
    gap: 8px;
    transition: all 0.3s;
}

.view-all-link:hover {
    gap: 12px;
}

/* ===== HORIZONTAL CAROUSEL ===== */
.carousel-container {
    position: relative;
    margin: 0 -10px 20px;
    overflow: visible;
    z-index: auto;
}

.carousel-wrapper {
    position: relative;
    overflow: visible;
    padding: 0 12px;
    scrollbar-width: none;
}
.carousel-wrapper::-webkit-scrollbar { display: none; }

.carousel-track {
    display: flex;
    gap: 12px;
    transition: transform 0.5s ease;
    cursor: grab;
    user-select: none;
    align-items: flex-start; /* Cards mantêm altura natural */
    overflow: visible;
    position: relative;
    z-index: auto;
}

.carousel-track.dragging {
    cursor: grabbing;
    transition: none;
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s;
    pointer-events: auto;
}


.carousel-nav-btn.prev {
    background-color: #ffffff00;
    left: 5px;
    width: 48px;
    height: 48px;
}

.carousel-nav-btn.next {
    background-color: #ffffff00;
    right: 5px;
    width: 48px;
    height: 48px;
}

/* ===== ANIME CARDS ===== */
.anime-card {
    flex: 0 0 auto;
    width: 200px;
    cursor: pointer;
    transition: transform 0.32s cubic-bezier(0.25, 0.9, 0.35, 1.1),
                box-shadow 0.32s ease,
                filter 0.25s ease,
                z-index 0s;
    will-change: transform, box-shadow;
    position: relative;
    border-radius: 8px;
    overflow: visible;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    transform-origin: center top;
    z-index: 1;
}

.anime-card:hover {
    transform: scale(1.04) translateY(-6px);
    box-shadow: 0 18px 36px rgba(0, 168, 225, 0.25), 0 12px 24px rgba(0,0,0,0.4);
    z-index: 150;
    transition-delay: 0s;
}

  .anime-card-poster {
      position: relative;
      width: 100%;
      aspect-ratio: 2/3;
      border-radius: 8px;
      overflow: hidden;
      background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
      transition: transform 0.24s ease;
  }

  .anime-card-poster img {
      position: relative;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border-radius: 10px;
      z-index: 2;
  }

.card-backdrop {
    position: absolute;
    inset: 0;
    display: block;
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 1;
    border-radius: inherit;
    overflow: hidden;
    background: #000;
}

.card-backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    display: block;
    filter: brightness(0.8);
}

.anime-card.expanded .anime-card-poster {
    aspect-ratio: 2/3;
    height: var(--card-poster-height, auto);
    padding-top: 0;
}

.anime-card.expanded .card-backdrop {
    opacity: 1;
}

.anime-card.expanded .anime-card-poster img {
    opacity: 0.4;
    filter: brightness(0.9);
}

.anime-card:hover .anime-card-poster img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.anime-card-poster img,
.popular-card-image,
.featured-card-bg {
    opacity: 1 !important;
}

/* Container de trailer no card */
.card-trailer-overlay {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 5;
}

.card-trailer-overlay iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.anime-card.trailer-active .card-trailer-overlay,
.featured-card.trailer-active .card-trailer-overlay {
    opacity: 1;
}

.anime-card.trailer-active .anime-card-poster img {
    opacity: 0.75 !important;
}

/* ===== TAG DO CARD ===== */
.card-tag {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--prime-blue);
    margin-bottom: 6px;
}

/* ===== PROGRESSO DE VISUALIZAÇÃO ===== */
.card-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255,255,255,0.2);
    z-index: 2;
}

.card-progress-bar {
    height: 100%;
    background: var(--prime-blue);
    transition: width 0.3s ease;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 1024px) {
    .popular-card.expanded {
        width: 100%;
        grid-template-columns: 1fr;
    }
}

/* Overlay do card melhorado */
.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 72px 18px 18px;
    background: linear-gradient(to top, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.9) 55%, rgba(0,0,0,0.2) 100%);
    opacity: 0;
    transition: opacity 0.36s ease, transform 0.36s ease;
    transform: translateY(14px);
    pointer-events: none; /* Bloqueia eventos quando invisível */
}

.card-overlay-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-overlay-content-other-session {
    display: flex;
    flex-direction: column;
    gap: 8px;
    top: 5px;
}

.anime-card:not(.compact-card):hover .card-overlay {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto; /* Permite interação quando visível */
}

.card-overlay-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;

    display: -webkit-box;
    -webkit-box-orient: vertical;

    /* Propriedade padrão para compatibilidade futura */
    line-clamp: 2;

    /* Propriedade WebKit (funciona hoje) */
    -webkit-line-clamp: 2;

    overflow: hidden;
    line-height: 1.3;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.card-overlay-title-other-sessions {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;

    display: -webkit-box;
    -webkit-box-orient: vertical;

    /* Propriedade padrão para compatibilidade futura */
    line-clamp: 2;

    /* Propriedade WebKit (funciona hoje) */
    -webkit-line-clamp: 2;

    overflow: hidden;
    line-height: 1.3;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.card-overlay-meta {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.card-overlay-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-overlay-meta i {
    font-size: 11px;
}

/* Badge novo episódio */
.card-badge-new {
    position: absolute;
    top: 8px;
    left: 8px;
    background: linear-gradient(135deg, #00a8e1 0%, #0090c0 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 168, 225, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(0, 168, 225, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 16px rgba(0, 168, 225, 0.7);
    }
}

/* Info do card (embaixo) */
.anime-card-info {
    padding: 14px 0 0;
}

.anime-card-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;

    display: -webkit-box;
    -webkit-box-orient: vertical;

    /* Propriedade padrão (compatibilidade futura / evita warning) */
    line-clamp: 2;

    /* Propriedade WebKit (funciona hoje) */
    -webkit-line-clamp: 2;

    overflow: hidden;
    line-height: 1.3;
    min-height: 36px;
}

.anime-card-meta {
    font-size: 12px;
    color: var(--prime-text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.anime-card-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}
/* ===== LARGE FEATURED CARDS ===== */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 25px;
}

.featured-grid .anime-card {
    width: 100%;
}

.featured-card {
    position: relative;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 168, 225, 0.3);
}

.featured-card-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;

    display: -webkit-box;
    -webkit-box-orient: vertical;

    /* Propriedade padrão (compatibilidade futura) */
    line-clamp: 2;

    /* Propriedade WebKit (funciona hoje) */
    -webkit-line-clamp: 2;

    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    line-height: 1.3;
    max-height: 3.1em;
}


.featured-card-desc {
    font-size: 14px;
    color: var(--prime-text-secondary);
    line-height: 1.4;
    
    display: -webkit-box;
    -webkit-box-orient: vertical;

    /* Propriedade padrão (ainda experimental, mas esperada por linters) */
    line-clamp: 2;

    /* Propriedade específica do WebKit (funciona na prática) */
    -webkit-line-clamp: 2;

    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 15px;
    word-break: break-word;
    max-height: 2.8em;
}

.featured-card-btn {
    align-self: flex-start;
    padding: 10px 20px;
    background: var(--prime-blue);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.featured-card:hover .featured-card-btn {
    background: #0090c0;
    transform: scale(1.05);
}

/* ===== CATEGORY PILLS ===== */
.category-pills {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.category-pills::-webkit-scrollbar {
    height: 6px;
}

.category-pills::-webkit-scrollbar-thumb {
    background: var(--prime-blue);
    border-radius: 3px;
}

.category-pill {
    flex: 0 0 auto;
    padding: 10px 24px;
    background: var(--prime-bg-card);
    color: var(--prime-text-secondary);
    border: 2px solid transparent;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.category-pill:hover,
.category-pill.active {
    background: rgba(0, 168, 225, 0.15);
    border-color: var(--prime-blue);
    color: var(--prime-blue);
}

/* ===== LOADING ===== */
.loading {
    text-align: center;
    padding: 50px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--prime-border);
    border-top-color: var(--prime-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .banner-title {
        font-size: 42px;
    }

    .featured-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

/* ===== MENU HAMBÚRGUER MOBILE ===== */
.mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: relative;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--prime-text);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
}

.mobile-nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #0a0f1e 0%, #000000 100%);
    padding: 80px 0 20px;
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
}

.mobile-nav-menu.active {
    left: 0;
}

.mobile-nav-menu .nav-item {
    padding: 0;
}

.mobile-nav-menu .nav-item a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    color: var(--prime-text);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.mobile-nav-menu .nav-item a:hover,
.mobile-nav-menu .nav-item a.active {
    background: rgba(0, 168, 225, 0.1);
    border-left-color: var(--prime-blue);
    color: var(--prime-blue);
}

.mobile-nav-menu .nav-item i {
    width: 20px;
    text-align: center;
    font-size: 18px;
}

/* Pesquisa Mobile */
.mobile-search-btn {
    display: none;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: var(--prime-text);
    font-size: 18px;
    cursor: pointer;
    transition: color 0.2s;
}

.mobile-search-btn:hover {
    color: var(--prime-blue);
}

.mobile-search-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1100;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.mobile-search-overlay.active {
    opacity: 1;
}

.mobile-search-container {
    width: 100%;
    max-width: 600px;
    margin: 80px auto 0;
}

.mobile-search-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.mobile-search-close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--prime-text);
    font-size: 20px;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s;
}

.mobile-search-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.mobile-search-input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--prime-border-light);
    border-radius: 12px;
    color: var(--prime-text);
    font-size: 16px;
    outline: none;
    transition: all 0.3s;
}

.mobile-search-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--prime-blue);
    box-shadow: 0 0 0 4px rgba(0, 168, 225, 0.1);
}

.mobile-search-results {
    background: var(--prime-bg-card);
    border-radius: 12px;
    max-height: 60vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
    /* Header Mobile */
    .header {
        padding: 0 16px;
    }

    .header-content {
        height: 56px;
    }

    .logo {
        font-size: 18px;
        z-index: 1001;
    }

    .logo-prime {
        font-size: 20px;
    }

    .nav-menu {
        display: none;
    }

    .search-container {
        display: none;
    }

    .mobile-menu-btn,
    .mobile-search-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-nav-overlay,
    .mobile-nav-menu,
    .mobile-search-overlay {
        display: block;
    }

    .header-actions {
        gap: 8px;
    }

    .user-avatar {
        width: 32px;
        height: 32px;
    }

    /* Hero Banner Mobile */
    .hero-banner {
        height: 60vh;
        min-height: 400px;
        margin-top: 56px;
    }

    .banner-content {
        left: 16px;
        right: 16px;
        max-width: calc(100% - 32px);
        top: auto;
        bottom: 80px;
        transform: none;
    }

    .banner-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .banner-title-image {
        max-width: 100%;
        max-height: 80px;
        margin-bottom: 12px;
    }

    .banner-meta {
        gap: 10px;
        font-size: 12px;
        margin-bottom: 12px;
    }

    .meta-item {
        font-size: 13px;
    }

    .meta-rating {
        padding: 4px 8px;
        font-size: 12px;
    }

    .banner-genres {
        gap: 6px;
        margin-bottom: 16px;
    }

    .genre-badge {
        padding: 6px 12px;
        font-size: 12px;
    }

    .banner-description {
        font-size: 13px;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .banner-actions {
        flex-wrap: wrap;
        gap: 8px;
    }

    .btn-watch {
        font-size: 16px;
        min-height: 44px;
        padding: 10px 16px;
    }

    .btn-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .btn-icon svg {
        width: 28px;
        height: 28px;
    }

    .btn-icon-label {
        left: 6px;
    }

    .banner-nav {
        bottom: 20px;
        left: 50%;
    }

    .navigation-slider {
        padding: 8px 15px;
    }

    .banner-dot {
        height: 6px;
        width: 6px;
        margin-right: 6px;
    }

    .banner-dot.active {
        width: 20px;
        height: 6px;
    }

    /* Content Sections Mobile */
    .content-section {
        padding: 20px 16px;
    }

    .section-header {
        margin-bottom: 16px;
    }

    .section-title {
        font-size: 20px;
        gap: 8px;
    }

    .section-title i {
        font-size: 18px;
    }

    .view-all-link {
        font-size: 13px;
    }

    /* Carousel Mobile */
    .carousel-container {
        margin: 0 -8px 16px;
    }

    .carousel-wrapper {
        padding: 0 8px;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .carousel-wrapper::-webkit-scrollbar {
        display: none;
    }

    .carousel-track {
        gap: 10px;
        transition: none;
    }

    .carousel-track.dragging {
        cursor: default;
    }

    .carousel-nav-btn {
        display: none;
    }

    /* Anime Cards Mobile */
    .anime-card {
        width: 140px;
        scroll-snap-align: start;
        flex-shrink: 0;
    }

    .anime-card:hover {
        transform: scale(1.02) translateY(-4px);
    }

    .anime-card-title {
        font-size: 13px;
        min-height: 34px;
    }

    .anime-card-meta {
        font-size: 11px;
        gap: 8px;
    }

    .card-overlay-title {
        font-size: 18px;
    }

    .card-overlay-meta {
        font-size: 12px;
        gap: 8px;
    }

    .card-badge-new {
        top: 6px;
        left: 6px;
        padding: 4px 10px;
        font-size: 10px;
    }

    /* Featured Grid Mobile */
    .featured-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 12px;
    }

    .featured-card {
        height: 180px;
    }

    .featured-card-overlay {
        padding: 20px;
    }

    .featured-card-title {
        font-size: 16px;
    }

    .featured-card-desc {
        font-size: 12px;
        -webkit-line-clamp: 2;
    }

    .featured-card-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    /* Category Pills Mobile */
    .category-pills {
        gap: 8px;
        margin-bottom: 20px;
        padding-bottom: 8px;
    }

    .category-pill {
        padding: 8px 18px;
        font-size: 13px;
    }

    /* User Dropdown Mobile */
    .user-dropdown-menu {
        width: 260px;
        right: -10px;
        top: calc(100% + 8px);
    }

    .dropdown-header {
        padding: 12px 14px;
    }

    .dropdown-header img {
        width: 42px;
        height: 42px;
    }

    .dropdown-user-name {
        font-size: 14px;
    }

    .dropdown-user-email {
        font-size: 11px;
    }

    .user-dropdown-menu .dropdown-item {
        padding: 12px 14px;
        font-size: 13px;
    }

    /* Notifications Mobile */
    .notification-dropdown {
        width: calc(100vw - 32px);
        max-width: 360px;
        right: -10px;
    }

    .notification-trigger {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }

    .notification-dot {
        top: 4px;
        right: 4px;
        width: 8px;
        height: 8px;
    }

    /* Touch Improvements */
    .carousel-wrapper {
        cursor: default;
    }

    .anime-card,
    .featured-card,
    .category-pill,
    .btn-watch,
    .btn-icon {
        -webkit-tap-highlight-color: transparent;
    }

    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }

    /* Banner arrows mobile */
    .banner-nav-arrow {
        display: none;
    }

    /* Ajustes de espaçamento */
    .banner-site-logo {
        margin-bottom: 16px;
    }

    .certification-badge {
        height: 32px;
    }

    .banner-badge {
        padding: 6px 14px;
        font-size: 11px;
    }

    .anime-warning-badge {
        padding: 6px 12px;
        font-size: 12px;
        margin-bottom: 12px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero-banner {
        height: 50vh;
        min-height: 350px;
    }

    .banner-content {
        bottom: 60px;
    }

    .banner-title {
        font-size: 20px;
    }

    .banner-title-image {
        max-height: 60px;
    }

    .section-title {
        font-size: 18px;
    }

    .anime-card {
        width: 120px;
    }

    .featured-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 10px;
    }

    .featured-card {
        height: 160px;
    }

    .btn-watch {
        font-size: 14px;
        min-height: 40px;
        padding: 8px 14px;
    }

    .btn-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .mobile-nav-menu {
        width: 260px;
    }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--prime-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--prime-blue);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0090c0;
}

.placeholder-image {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--prime-text-secondary);
    font-size: 48px;
}

/* Estilos para o novo botão de mais detalhes */
._39zede {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    align-items: center;
    background-color: transparent;
    border: none;
    border-radius: 10000px;
    display: inline-flex;
    justify-content: center;
    padding: 0;
    left: 20px;
    position: relative;
    transition-property: background-color, transform;
    transition-duration: 0.2s;
    will-change: transform, background-color;
    font-size: 24px;
}

._39zede._2lS2e0 {
    height: 58px;
    width: 58px;
}

._39zede._2lS2e0 svg {
    height: 38px;
    width: 38px;
}

._39zede._1HolZ4 {
    background-color: hsla(0, 0%, 100%, 0.2);
}

._39zede._1HolZ4:hover {
    background-color: #fff;
    transform: scale(1.1);
}

._39zede._1HolZ4:hover ._3G1q6i {
    color: #00050d;
}

._39zede._1HolZ4:active {
    background-color: #fff;
    transform: scale(0.9);
}

._39zede ._3G1q6i {
    align-items: center;
    border-radius: 10000px;
    color: #fff;
    display: inline-flex;
    justify-content: center;
}

._39zede:focus-visible {
    outline: none;
}

._39zede:focus-visible:not(:hover) {
    outline: 3px solid #fff;
    outline-offset: 4px;
}

.fbl-icon {
    pointer-events: none;
}

._30dE3d {
    font-size: 24px;
}

/* Logo do título do anime no banner */
.banner-title-image {
    max-width: 650px;
    max-height: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.9));
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

/* .banner-slide:hover .banner-title-image {
    filter: drop-shadow(0 6px 30px rgba(0, 168, 225, 0.6));
} */

@media (max-width: 1024px) {
    .banner-title-image {
        max-width: 500px;
        max-height: 140px;
    }
}

@media (max-width: 768px) {
    .banner-title-image {
        max-width: 100%;
        max-height: 100px;
    }
}

/* Botões de navegação do banner (setas) */
.banner-nav-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 15;
    pointer-events: none;
    padding: 0 20px;
}

.banner-nav-arrow {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.2, 0.45, 0, 1);
    width: 72px;
    pointer-events: auto;
}

.banner-nav-arrow.show {
    opacity: 1;
}

.banner-nav-arrow button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    width: 48px;
    height: 48px;
    background: #ffffff00;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
}

.banner-nav-arrow button:focus-visible {
    outline: none;
}

.banner-nav-arrow button:focus-visible svg {
    border-radius: 1px;
    outline: 2px solid #fff;
    outline-offset: 4px;
}

.banner-nav-arrow svg {
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3));
    pointer-events: none;
    width: 30px;
    height: 30px;
}

.banner-nav-arrow.left {
    justify-content: flex-start;
}

.banner-nav-arrow.right {
    justify-content: flex-end;
}

/* Mostrar setas ao hover no banner */
.hero-banner:hover .banner-nav-arrow {
    opacity: 1;
}

/* Loading do trailer */
.banner-trailer-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: none;
}

.banner-trailer-loading.show {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.banner-trailer-loading .spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--prime-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.banner-trailer-loading p {
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .banner-nav-arrow {
        width: 44px;
    }
    
    .banner-nav-arrow button {
        width: 40px;
        height: 40px;
    }
    
    .banner-nav-arrow svg {
        width: 20px;
        height: 20px;
    }
}

/* Banner Navigation - Prime Video Style Exato */
.banner-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.navigation-slider {
    align-items: center;
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 10px 20px;
    border-radius: 50px;
}

.banner-dot {
    background: hsla(0, 0%, 100%, .4);
    border-radius: 10000px;
    height: 8px;
    width: 8px;
    margin-right: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.banner-dot:hover {
    background: hsla(0, 0%, 100%, .6);
    transform: scale(1.1);
}

.banner-dot::marker {
    font-size: 0;
}

/* Dot ativo (largo) */
.banner-dot.active {
    background: #fff;
    width: 16px;
    height: 8px;
}

/* Dot antes do ativo (pequeno) */
.banner-dot.small {
    height: 6px;
    width: 6px;
}

/* Dot muito pequeno (penúltimo visível) */
.banner-dot.tiny {
    height: 4px;
    width: 4px;
}

/* Dots ocultos */
.banner-dot.hidden {
    height: 0;
    width: 0;
    margin-right: 0;
    opacity: 0;
    pointer-events: none;
}

/* Último dot visível sem margem */
.banner-dot:last-child:not(.hidden),
.banner-dot.last-visible {
    margin-right: 0;
}

/* Responsivo */
@media (max-width: 768px) {
    .navigation-slider {
        padding: 8px 15px;
    }
    
    .banner-dot {
        height: 6px;
        width: 6px;
        margin-right: 6px;
    }
    
    .banner-dot.active {
        width: 20px;
        height: 6px;
    }
    
    .banner-dot.small {
        height: 5px;
        width: 5px;
    }
    
    .banner-dot.tiny {
        height: 3px;
        width: 3px;
    }
}

/* Container do trailer ocupando todo o banner */
.banner-trailer-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: none;              /* começa escondido */
    opacity: 0;                 /* começa transparente */
    transition: opacity 0.3s ease;
    overflow: hidden;
}

/* Player ocupando toda a área do container */
.banner-trailer-container .banner-trailer-player,
.banner-trailer-container iframe {
    width: 100%;
    height: 100%;
    pointer-events: none;       /* bloqueia clique direto no iframe */
}

/* Overlay invisível para bloquear cliques no player */
.youtube-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: all;
    cursor: default;
}

/* Esconder elementos do YouTube via CSS */
.banner-trailer-container .ytp-chrome-top,
.banner-trailer-container .ytp-chrome-bottom,
.banner-trailer-container .ytp-gradient-top,
.banner-trailer-container .ytp-gradient-bottom,
.banner-trailer-container .ytp-title,
.banner-trailer-container .ytp-show-cards-title,
.banner-trailer-container .ytp-pause-overlay,
.banner-trailer-container .ytp-watermark,
.banner-trailer-container .ytp-cards-teaser,
.banner-trailer-container .ytp-endscreen-content {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* ===== MENU DROPDOWN ===== */

.user-menu-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.user-menu-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--prime-text);
}

.user-menu-trigger:focus-visible {
    outline: 2px solid var(--prime-blue);
    outline-offset: 4px;
    border-radius: 999px;
}

.user-menu-caret {
    color: var(--prime-text-secondary);
    font-size: 12px;
    transition: transform .2s ease;
}

.user-menu-trigger[aria-expanded="true"] .user-menu-caret {
    transform: rotate(180deg);
    color: var(--prime-blue);
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 300px;
    padding: 16px;
    background: radial-gradient(circle at 10% 10%, rgba(0,168,225,0.08), transparent 45%), radial-gradient(circle at 80% 0%, rgba(255,255,255,0.04), transparent 35%), #0c1018;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(0,168,225,0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px) scale(0.98);
    transform-origin: top right;
    transition: all .26s cubic-bezier(0.4,0,0.2,1);
    z-index: 1000;
    overflow: visible;
    backdrop-filter: blur(16px) saturate(140%);
    pointer-events: none;
}

.user-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.user-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 26px;
    width: 14px;
    height: 14px;
    background: linear-gradient(145deg, rgba(20,20,20,0.96), rgba(12,12,12,0.9));
    transform: rotate(45deg);
    border-left: 1px solid rgba(255,255,255,0.08);
    border-top: 1px solid rgba(255,255,255,0.08);
    z-index: 0;
}

.dropdown-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(0,168,225,0.12), rgba(0,168,225,0.05));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
    margin-bottom: 12px;
}

.dropdown-header img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--prime-blue);
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0,168,225,0.25);
}

.dropdown-user-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown-user-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--prime-text);
}

.dropdown-user-email {
    font-size: 12px;
    color: var(--prime-text-secondary);
}

.dropdown-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    margin: 10px 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 16px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    color: var(--prime-text);
    transition: .2s;
    background: transparent;
    border-radius: 10px;
}

.dropdown-item:hover {
    background: rgba(0,168,225,0.09);
    box-shadow: 0 10px 22px rgba(0,0,0,0.35);
}

.dropdown-item:focus-visible {
    outline: 2px solid var(--prime-blue);
    outline-offset: -2px;
    background: rgba(0,168,225,0.14);
}

.dropdown-item i {
    width: 18px;
    text-align: center;
    color: var(--prime-blue);
    opacity: 0.9;
}

.dropdown-item span {
    line-height: 1.35;
}

.dropdown-item + .dropdown-item {
    margin-top: 6px;
}

.dropdown-divider {
    margin: 12px 0;
}

.dropdown-item-button {
    width: 100%;
    border: none;
    background: transparent;
    text-align: left;
    padding: 0;
    color: inherit;
    font: inherit;
}

.dropdown-item-danger {
    color: #ef4444;
}

.dropdown-item-danger:hover {
    background: rgba(239,68,68,0.1);
}

.user-dropdown-menu .dropdown-item {
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    background: rgba(255,255,255,0.02);
    transition: background .16s ease, border-color .16s ease, transform .16s ease, box-shadow .16s ease;
}

.user-dropdown-menu .dropdown-item + .dropdown-item {
    margin-top: 10px;
}

.user-dropdown-menu .dropdown-item + .dropdown-item.dropdown-item-danger {
    margin-top: 14px;
}

.user-dropdown-menu .dropdown-item:not(.dropdown-item-danger):hover {
    background: rgba(0,168,225,0.12);
    border-color: rgba(0,168,225,0.35);
    box-shadow: 0 14px 30px rgba(0,0,0,0.38);
    transform: translateX(3px);
}

.user-dropdown-menu .dropdown-item-danger {
    border: 1px solid rgba(239,68,68,0.2);
    background: rgba(239,68,68,0.05);
}

.user-dropdown-menu .dropdown-item-danger:hover {
    background: rgba(239,68,68,0.12);
    border-color: rgba(239,68,68,0.35);
    box-shadow: 0 12px 24px rgba(239,68,68,0.16);
    transform: translateX(3px);
}

.user-avatar {
    cursor: pointer;
    transition: .3s;
}

.user-avatar:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .user-dropdown-menu {
        width: 260px;
        right: -10px;
    }
}

/* ===== NOTIFICACOES HEADER ===== */
.notification-bell-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-right: 12px;
}

.notification-trigger {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffffff00;
    color: var(--prime-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 16px;
}

.notification-dot {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff4757;
    box-shadow: 0 0 0 4px rgba(255,71,87,0.2);
    display: none;
}

.notification-dot.active {
    display: inline-block;
}

.notification-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 360px;
    background: linear-gradient(160deg, rgba(18,18,18,0.98), rgba(12,12,12,0.95));
    border: 1px solid var(--prime-border);
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,255,255,0.04);
    backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all .2s ease;
    z-index: 1200;
    padding: 12px;
}

.notification-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.notification-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 6px 12px;
    border-bottom: 1px solid var(--prime-border);
}

.notification-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 8px;
    margin: 12px 0;
}

.notification-filters input,
.notification-filters select {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--prime-border);
    color: var(--prime-text);
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 12px;
    outline: none;
}

.notification-list {
    max-height: 320px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification-item {
    padding: 10px 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--prime-border);
    border-radius: 10px;
    transition: background 0.2s, border-color 0.2s;
}

.notification-item.unread {
    border-color: var(--prime-blue);
    background: rgba(0,168,225,0.05);
}

.notification-item .title {
    font-weight: 600;
    color: var(--prime-text);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.notification-item .meta {
    font-size: 12px;
    color: var(--prime-text-secondary);
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.notification-level {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.notification-level.urgente { background: rgba(255,71,87,0.15); color: #ff6b81; border: 1px solid rgba(255,71,87,0.4); }
.notification-level.alerta { background: rgba(255,165,0,0.12); color: #ffb347; border: 1px solid rgba(255,165,0,0.4); }
.notification-level.aviso { background: rgba(255,215,0,0.12); color: #ffd369; border: 1px solid rgba(255,215,0,0.35); }
.notification-level.informacao { background: rgba(0,168,225,0.12); color: #6bdcff; border: 1px solid rgba(0,168,225,0.35); }
.notification-level.sistema, .notification-level.atualizacao { background: rgba(120,120,255,0.12); color: #9aa0ff; border: 1px solid rgba(120,120,255,0.35); }
.notification-media img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    max-height: 220px;
    margin: 6px 0;
}
.notification-mini-card {
    display: flex;
    gap: 10px;
    border: 1px solid var(--prime-border);
    border-radius: 10px;
    padding: 10px;
    background: rgba(255,255,255,0.03);
}
.notification-mini-card img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 10px;
}
.notification-mini-card .mini-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.notification-mini-card .mini-title {
    font-weight: 600;
    color: var(--prime-text);
}
.notification-mini-card .mini-description {
    font-size: 13px;
    color: var(--prime-text-secondary);
}
.notification-attachment {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--prime-text-secondary);
    margin: 6px 0;
}
.notification-attachment a {
    color: var(--prime-text);
    text-decoration: underline;
}
.notification-popup-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(3px);
    padding: 16px;
    z-index: 1400;
    animation: fadeInOverlay 0.25s ease;
}
.notification-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}
.notification-popup .notification-media img {
    max-height: 200px;
}
.notification-popup .notification-mini-card {
    margin: 8px 18px 0;
}
.notification-popup .meta-row {
    font-size: 12px;
    color: var(--prime-text-secondary);
    margin: 6px 0;
}

.btn-compact {
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 10px;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #0ea5e9 0%, #22d3ee 100%);
    color: #0b1220;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 30px rgba(34,211,238,0.25);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 36px rgba(34,211,238,0.32);
    filter: brightness(1.05);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 8px 24px rgba(34,211,238,0.2);
}

.btn-ghost {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--prime-text);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.18);
}

.notification-popup {
    --notif-accent: #38bdf8;
    --notif-accent-soft: rgba(56,189,248,0.18);
    --notif-glow: 0 15px 40px rgba(56,189,248,0.25);
    position: relative;
    width: min(540px, 92vw);
    max-height: min(80vh, 680px);
    overflow-y: auto;
    background: #06080f;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.65), var(--notif-glow);
    animation: fadeInUp 0.3s ease;
    color: var(--prime-text);
    padding: 0;
}

.notification-popup .popup-hero {
    position: relative;
    padding: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    background: radial-gradient(circle at 20% 20%, var(--notif-accent-soft), transparent 55%), #0a0f1e;
    overflow: hidden;
}

.notification-popup.has-hero-image .popup-hero {
    background-image: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.7) 100%), var(--notif-hero);
    background-size: cover;
    background-position: center;
}

.notification-popup .popup-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 100%);
    pointer-events: none;
}

.notification-popup .hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    color: #fff;
    position: relative;
    z-index: 1;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04), var(--notif-glow);
}

.notification-popup .hero-chip i {
    color: var(--notif-accent);
}

.notification-popup .hero-body {
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

.notification-popup .hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 11px;
    color: var(--prime-text-secondary);
    margin-bottom: 4px;
}

.notification-popup .hero-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    text-shadow: 0 10px 25px rgba(0,0,0,0.45);
}

.notification-popup .hero-meta {
    margin-top: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
}

.notification-popup .ghost-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    width: 34px;
    height: 34px;
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: 0.2s ease;
    z-index: 2;
}

.notification-popup .ghost-icon:hover {
    transform: scale(1.05);
    border-color: rgba(255,255,255,0.15);
}

.notification-popup .content {
    color: var(--prime-text);
    font-size: 14px;
    line-height: 1.5;
    padding: 16px 18px 8px;
}

.notification-popup .actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 0 18px 16px;
}

.notification-popup .meta-row.subtle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 18px 8px;
    color: var(--prime-text-secondary);
}

.notification-popup .meta-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--notif-accent);
}

.notification-popup .notification-attachment {
    margin: 10px 18px 0;
}

.notification-icon {
    width: 25px;   /* largura do ícone */
    height: 25px;  /* altura do ícone */
    object-fit: contain; /* mantém a proporção */
}

/* ===== POPULAR CARDS ===== */
.popular-carousel-wrapper {
    position: relative;
}

.popular-card {
    display: flex;
    flex-direction: column;
    width: 240px;
    min-width: 240px;
    height: 360px;
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.2, 0.45, 0, 1);
    position: relative;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    background: #0a0a0a;
}

.popular-card:hover,
.popular-card.expanded {
    transform: scale(1.05);
    box-shadow: none;
    z-index: 100;
}

.popular-card.expanded {
    width: 640px;
    height: 360px;
}

/* Container visual - ocupa todo o card quando expandido */
.popular-card-visual {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    z-index: 0;
}

/* Imagem poster (visível quando não expandido) */
.popular-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.4s ease;
    z-index: 1;
}

/* Quando expandido, esconder o poster */
.popular-card.expanded .popular-card-image {
    opacity: 0;
    pointer-events: none;
}

/* Container do vídeo/trailer - aparece no fundo quando expandido */
.popular-card-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
    pointer-events: none;
}

.popular-card.expanded .popular-card-video {
    opacity: 1;
}

.popular-card.trailer-active .popular-card-video {
    opacity: 1;
}

.popular-card-video iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* Fallback: imagem de backdrop quando não tem trailer */
.popular-card-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.popular-card.expanded .popular-card-backdrop {
    opacity: 1;
}

.popular-card-backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    gap: 20px;

    filter: brightness(0.5);
    border-radius: 7px;
}

/* Overlay gradiente para melhor contraste */
.popular-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, 
        rgba(0,0,0,0.95) 0%, 
        rgba(0,0,0,0.8) 30%,
        rgba(0,0,0,0.5) 60%,
        rgba(0,0,0,0.2) 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 3;
    pointer-events: none;
}

.popular-card.expanded::before {
    opacity: 1;
}

/* Painel de informações - lateral esquerda quando expandido */
.popular-card-info {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    width: 0;
    overflow: hidden;
    padding: 0;
    transition: all 0.5s cubic-bezier(0.2, 0.45, 0, 1);
    z-index: 10;
    pointer-events: none;
}

.popular-card.expanded .popular-card-info {
    opacity: 1; /* 10 */
    visibility: visible;
    width: 420px;
    padding: 32px 25px; /* 32px 15px */
    pointer-events: auto;
}

/* Logo do site no topo */
.popular-card-site-logo {
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease 0.2s;
}

.popular-card.expanded .popular-card-site-logo {
    opacity: 1;
    transform: translateY(0);
}

.popular-card-site-logo img {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.9));
}

/* Badge de destaque */
.popular-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: linear-gradient(135deg, var(--prime-blue) 0%, #0090c0 100%);
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
    align-self: flex-start;
    box-shadow: 0 4px 16px rgba(0, 168, 225, 0.4);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease 0.25s;
}

.popular-card.expanded .popular-card-badge {
    opacity: 1;
    transform: translateY(0);
}

.popular-card-badge i {
    font-size: 14px;
}

/* Container do título */
.popular-card-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease 0.3s;
}

.popular-card.expanded .popular-card-title-wrap {
    opacity: 1;
    transform: translateY(0);
}

/* Logo do título do anime */
.popular-title-image {
    max-width: 280px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    align-self: flex-start;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.9));
}

/* Título texto (fallback se não tiver imagem) */
.popular-card-title {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

/* Info header (classificação) */
.popular-card-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease 0.35s;
}

.popular-prime-badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

.prime-text {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.verified-icon {
    width: 18px;
    height: 18px;
}

.popular-prime-badge .classificacao-img {
    display: flex;
    align-items: center;
}

/* tamanho reduzido da classificação */
.popular-prime-badge .classificacao-img img {
    width: 20px; /* diminua ou aumente como quiser */
    height: auto;
}

.popular-prime-badge {
    display: flex;
    align-items: center;
    gap: 1px; /* espaçamento entre os itens */
}

.popular-prime-badge .verified-icon {
    width: 18px;
    height: 18px;
}


.popular-card.expanded .popular-card-header-info {
    opacity: 1;
    transform: translateY(0);
}

.popular-card-certification {
    height: 32px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.7));
}

/* Meta informações */
.popular-card-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease 0.4s;
}

.popular-card.expanded .popular-card-meta {
    opacity: 1;
    transform: translateY(0);
}

.meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.meta-chip i {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}

.meta-chip.rating {
    background: var(--prime-gold);
    color: #000;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 800;
}

/* Descrição */
.popular-card-desc {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;

    display: -webkit-box;
    -webkit-box-orient: vertical;

    /* Propriedade padrão (compatibilidade futura / evita warnings) */
    line-clamp: 3;

    /* Propriedade WebKit (funciona atualmente) */
    -webkit-line-clamp: 3;

    overflow: hidden;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);

    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease 0.45s;
}


.popular-card.expanded .popular-card-desc {
    opacity: 1;
    transform: translateY(0);
}

/* Botões de ação */
.popular-card-actions {
    display: flex;
    gap: 1px;
    align-items: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease 0.5s;
}

.popular-card.expanded .popular-card-actions {
    opacity: 1;
    transform: translateY(0);
}

.popular-card-actions .card-overlay-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: none;
}

.compact-card .card-overlay-actions .popular-play-style {
    font-size: 16px;
    padding: 12px 24px;
    font-weight: 700;
    height: 50px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.compact-card .card-overlay-actions .popular-play-style:hover {
    background: #fff;
    color: #000;
}


.popular-card-actions .card-overlay-btn.play:hover {
    background: hsla(0, 0%, 100%, 0.2);
    color: #ffffff;
    transform: scale(1.05);
}

.popular-card-actions .card-overlay-btn.play i {
    font-size: 20px;
}

/* Botões de ícone (favorito, info, áudio) */
.popular-card-actions .card-overlay-btn:not(.play) {
    width: 48px;
    height: 48px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
    background: hsla(0, 0%, 100%, 0.2)
}

.popular-card-actions .card-overlay-btn:not(.play):hover {
    background: rgba(255,255,255,1);
    color: #000;
    transform: scale(1.1);
}

.popular-card-actions .card-overlay-btn:not(.play) i {
    font-size: 18px;
}

/* Prime badge */
.popular-prime-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin-top: 8px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease 0.55s;
}

.popular-card.expanded .popular-prime-badge {
    opacity: 1;
    transform: translateY(0);
}

.popular-prime-badge i {
    color: var(--prime-blue);
    font-size: 14px;
}

/* Responsivo */
@media (max-width: 1024px) {
    .popular-card.expanded {
        width: 540px;
    }
    
    .popular-card.expanded .popular-card-info {
        width: 340px;
    }
}

@media (max-width: 768px) {
    .popular-card {
        width: 200px;
        height: 300px;
    }
    
    .popular-card.expanded {
        width: 100%;
        max-width: 480px;
        height: 300px;
    }
    
    .popular-card.expanded .popular-card-info {
        width: 280px;
        padding: 24px 20px;
    }
    
    .popular-title-image {
        max-width: 200px;
        max-height: 60px;
    }
}

/* ===== COMPACT CARDS (demais sessões) ===== */

.compact-card {
    width: 288px;
    height: 162px; /* Altura fixa - não muda NUNCA */
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                z-index 0s;
    transform: translateY(0);
    z-index: 1;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(8px);
    flex-shrink: 0; /* Não encolhe no flex */
}


.compact-card:hover:not(.expanded) {
    z-index: 150;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 168, 225, 0.2), 0 6px 12px rgba(0, 0, 0, 0.5);
}

.compact-card .anime-card-poster {
    width: 100%;
    height: 160px;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    flex-shrink: 0; /* Não encolhe */
}

.compact-card .anime-card-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.compact-card:hover .anime-card-poster img {
    transform: scale(1.05);
}

/* Informações do compact-card */
.compact-card .anime-card-info {
    padding: 6px 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1 1 auto;
    overflow: hidden;
    min-height: 0;
    max-height: 35px; /* Limita altura do info para caber em 120px total */
}

.compact-card .anime-card-title {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.1;
    min-height: auto;
    margin-bottom: 1px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    overflow: hidden;
}

.compact-card .anime-card-meta {
    font-size: 10px;
    color: var(--prime-text-secondary);
    opacity: 0.8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-overlay-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 12px;
}

.card-overlay-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.16);
    border: none;
    border-radius: 999px;
    padding: 10px 14px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.card-overlay-actions .card-overlay-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.16);
    border: none;
    border-radius: 999px;
    padding: 10px 14px;
    color: #fff;
    transition: all 0.2s ease;
}

.card-overlay-btn.play {
    width: 100%;
    justify-content: center;
    background: #3d3d3d;
    color: #fff;
    font-weight: 700;
}

.card-overlay-btn.play:hover {
    background: #575757;
    transform: scale(1.05);
}

.card-overlay.compact .card-overlay-actions .card-overlay-btn:not(.play) {
    width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    background: rgba(255,255,255,0.14);
}

.card-overlay.compact .card-overlay-actions .card-overlay-btn:not(.play):hover {
    background: rgba(255,255,255,0.24);
    transform: scale(1.08);
}
.card-overlay.compact .card-overlay-actions {
    background: rgba(0,0,0,0.25);
    padding: 8px 10px;
    border-radius: 12px;
}
.card-overlay.compact .card-meta-row {
    background: rgba(0,0,0,0.25);
    padding: 6px 10px;
    border-radius: 10px;
}
.card-overlay-btn i {
    font-size: 14px;
}

.card-overlay-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.35);
    background: rgba(255,255,255,0.25);
}

.card-overlay-actions .card-overlay-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.35);
}

.card-overlay-actions .card-overlay-btn i {
    font-size: 14px;
}

.card-meta-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.card-certification {
    height: 20px;
    width: auto;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
}

.card-quick-row {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 8px;
}
  
.prime-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    margin-top: 8px;
}

.prime-badge i {
    color: var(--prime-blue);
}
/* Badge de ano/temporada */
.year-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(198, 66, 82, 0.9);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}

/* Responsivo */
@media (max-width: 1024px) {
    .popular-card.expanded {
        width: 350px;
    }
}

@media (max-width: 768px) {
    .popular-card.expanded {
        width: 100%;
        max-width: 350px;
    }
}

.compact-card .card-overlay.compact {
    position: absolute;
    top: -20px; /* Cresce para cima também */
    left: -35px; /* Cresce muito para os lados */
    right: -35px;
    min-height: 565px; /* Muito maior - expande bastante para baixo */
    width: calc(100% + 70px);
    opacity: 0;
    visibility: hidden;
    overflow: visible;
    transform: translateY(10px) scale(0.94); /* Scale menor inicial para efeito de crescimento */
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.97) 0%, rgba(0, 0, 0, 0.99) 50%, #000 100%);
    padding: 194px 18px 18px; /* 🔸 antes 115px */
    border-radius: 14px;
    pointer-events: none !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px) saturate(130%);
    z-index: -1;
    will-change: transform, opacity;
}

.compact-card .card-overlay.compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 170px; /* ou o valor que você estiver usando */
    
    /* 3 layers:
       1) gradient
       2) imagem do anime (var(--card-overlay-image))
       3) logo Wave no canto
    */
    background-image:
        linear-gradient(180deg, rgba(0,0,0,0.1) 30%, rgba(0,0,0,0.9) 100%),
        var(--card-overlay-image, linear-gradient(135deg, #1a1a1a, #222)),
        url('/images/Wave-white.png');
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size:
        cover,          /* gradient */
        cover,          /* imagem do anime */
        70px 70px;      /* tamanho do logo (ajusta se quiser) */
    background-position:
        center center,               /* gradient */
        center center,               /* imagem do anime */
        right 8px bottom 8px;        /* logo no canto direito embaixo */
    
    border-radius: 14px 14px 10px 10px;
    z-index: 1;
}


.compact-card .anime-card-poster::after {
    content: '';
    position: absolute;
    top: 100px;
    right: 8px;
    bottom: 8px;
    width: 70px;
    height: 70px;
    background-image: url('/images/Wave-white.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    pointer-events: none;
    z-index: 2;
}

/* Logo Wave dentro do overlay dos cards compact (favoritos/continue assistindo) */
.compact-card .fav-wave-logo-overlay {
    position: absolute;
    right: 8px;
    top: 108px;
    width: 70px;
    height: 70px;
    background-image: url('/images/Wave-white.png'); /* caminho relativo ao /public */
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    pointer-events: none;
    z-index: 3; /* acima do ::before/::after do overlay */
}


.compact-card .card-overlay.compact::after {
    content: '';
    position: absolute;
    inset: 360px 0 0 0; /* 85px poster + 20px do top negativo */
    background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.99) 50%, #000 100%);
    z-index: 1;
}

.compact-card .card-overlay-content-other-session,
.compact-card .card-overlay.compact .card-overlay-content,
.compact-card .card-overlay.compact .card-overlay-actions,
.compact-card .card-overlay.compact .card-meta-row,
.compact-card .card-overlay.compact .fav-prime-badge {
    position: relative;
    z-index: 2;
}

/* Estilos específicos para hover removidos - já estão definidos acima */

.compact-card:hover:not(.expanded) .card-backdrop {
    opacity: 0;
}

.compact-card.expanded .card-overlay.compact {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1.02); /* Scale ligeiramente maior para efeito de zoom */
    pointer-events: auto !important;
    overflow: visible;
    z-index: 13000 !important;
}

.compact-card.expanded {
    /* Mantém posição no layout mas aparece acima de tudo */
    height: 120px !important; /* Força altura fixa de 120px - NÃO cresce */
    overflow: visible;
    transform: translateY(-8px); /* Move mais para cima para efeito dramático */
    z-index: 12000;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8), 0 10px 20px rgba(0, 168, 225, 0.3);
}

.card-hover-description {
    max-height: 80px;
    overflow: hidden;
    color: var(--prime-text-secondary);
    font-size: 13px;
    line-height: 1.5;
    margin-top: 6px;

    display: -webkit-box;
    -webkit-box-orient: vertical;

    /* Propriedade padrão (compatibilidade futura) */
    line-clamp: 3;

    /* Propriedade WebKit (funciona hoje) */
    -webkit-line-clamp: 3;
}


.card-hover-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.card-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(255,255,255,0.08);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.01em;
}

.card-quick-row .card-overlay-btn {
    width: 48px;
    height: 48px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
}

.card-quick-row .card-overlay-btn span {
    display: none;
}

.card-quick-row .card-overlay-btn:hover {
    background: rgba(255,255,255,0.25);
    transform: scale(1.1);
}

.card-hover-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 999px;
    font-size: 12px;
    color: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.1);
}

.card-hover-badge.prime {
    background: linear-gradient(135deg, var(--prime-blue), #0090c0);
    font-weight: 600;
    border-color: transparent;
}

.card-hover-badge.rating {
    background: rgba(245,197,24,0.2);
    color: var(--prime-gold);
    font-weight: 600;
    border-color: rgba(245,197,24,0.3);
}

.card-overlay.compact .card-overlay-actions {
    margin-top: 12px;
}

.anime-card-poster {
    border-radius: 10px;
}

/* ===== FAVORITES COMPACT CARD – AÇÕES ===== */

.compact-card .fav-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-top: 12px;
}

/* Play do favoritos (pode herdar .card-overlay-btn.play, só refino aqui se quiser) */
.compact-card .fav-play-btn {
    font-weight: 700;
}

/* Botão de favorito (ícone circular) */
.compact-card .fav-btn-icon-label {
    border-radius: 10000px;
    display: inline-flex;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.compact-card .fav-btn-icon {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: hsla(0, 0%, 100%, 0.2);
    color: #fff;
    transition: all 0.2s ease;
}

.compact-card .fav-btn-icon svg {
    height: 24px;
    width: 24px;
}

.compact-card .fav-btn-icon:hover {
    background: #fff;
    color: #000;
    transform: scale(1.05);
}

.compact-card .fav-btn-icon.active {
    background: var(--prime-blue);
    color: #000;
}

/* Botão de detalhes (ícone circular) */
.compact-card .fav-details-label {
    border-radius: 10000px;
    display: inline-flex;
    justify-content: center;
    position: relative;
}

.compact-card .fav-details-btn {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: hsla(0, 0%, 100%, 0.2);
    color: #fff;
    transition: all 0.2s ease;
}

.compact-card .fav-details-btn:hover {
    background: #fff;
    color: #000;
    transform: scale(1.05);
}

.compact-card .fav-details-icon-wrap svg {
    height: 24px;
    width: 24px;
}

/* ===== FAVORITES – BADGE "INCLUÍDO NO WAVE" + CLASSIFICAÇÃO ===== */

.compact-card .fav-prime-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin-top: 8px;
}

.compact-card .fav-verified-icon {
    width: 18px;
    height: 18px;
}

.compact-card .fav-prime-text {
    color: #fff;
    font-size: 15px;
}

.compact-card .fav-classificacao-img {
    display: flex;
    align-items: center;
}

/* tamanho reduzido da classificação dentro do favoritos */
.compact-card .fav-classificacao-img .fav-card-certification {
    width: 20px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.7));
}

/* ===== ÍCONES FAVORITOS/DETALHES – OUTRAS SESSÕES (CLONE DOS POPULARES) ===== */

/* Label que envolve o botão de favorito */
.btn-icon-label-other-sessions {
    border-radius: 10000px;
    display: inline-flex;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.btn-icon-label-other-sessions:focus-visible {
    outline: none;
}

.btn-icon-label-other-sessions:focus-visible:not(:hover) {
    border-radius: 10px;
    /* mesmo comportamento do original, sem precisar de tudo */
}

/* Botão de favorito circular */
.btn-icon-other-sessions {
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 10000px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;    
    justify-content: center;
    font-size: 24px;
    height: 54px;
    width: 54px;
    padding: 0;
    line-height: 0;         
    transition-duration: 0.2s;
    transition-property: transform, background-color;
    transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
    background: hsla(0, 0%, 100%, 0.15);
}

/* garante que o svg não crie espaçamento estranho */
.fbl-icon-other-sessions {
    display: block;
}


.btn-icon-other-sessions:hover {
    transform: scale(1.1);
    background: #fff;
    color: #000;
}

.btn-icon-other-sessions.active {
    background: var(white);
    color: black;
}

/* Ícone interno do SVG */
.fbl-icon-other-sessions {
    font-size: 24px;
    align-items: center;
}

/* Label do botão de detalhes (container externo) */
.jDcAoh-other-sessions {
    border-radius: 10000px;
    display: inline-flex;
    justify-content: center;
    position: relative;
}

/* Botão circular de detalhes (tamanho igual ao popular) */
._39zede-other-sessions._2lS2e0-other-sessions {
    height: 54px;
    width: 54px;
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 10000px;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    transition-duration: 0.2s;
    transition-property: transform, background-color;
    transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
    background: hsla(0, 0%, 100%, 0.15);
}

._39zede-other-sessions._2lS2e0-other-sessions:hover {
    transform: scale(1.1);
    background: #fff;
    color: #000;
}

/* Tamanho do svg dentro do botão de detalhes */
._39zede-other-sessions._2lS2e0-other-sessions svg {
    height: 38px;
    width: 38px;
}

/* Wrapper do ícone de detalhes (equivalente a ._3G1q6i) */
._3G1q6i-other-sessions {
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-label-card-other-session {
    font-size: 18px;
}

.fav-meta-row {
    display: flex;
    align-items: center;         /* alinha verticalmente */
    gap: 8px;                    /* espaço entre ano e classificação */
    margin-top: 6px;             /* opcional */
    position: relative;
    z-index: 2;                  /* garante que fica acima do overlay */
}

.fav-meta-row .card-overlay-meta {
    display: flex;
    align-items: center;
    gap: 5px;
}

.fav-meta-row .fav-classificacao-img img,
.fav-meta-row .fav-card-certification {
    width: 24px;                 /* Ajuste do tamanho do selo */
    height: auto;
    display: block;
}

.card-overlay-description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    font-size: 17px;
    -webkit-line-clamp: 3; /* ajuste aqui */
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    max-height: calc(1.4em * 3); /* mesmo número do clamp */
}

.popular-card-actions .card-overlay-btn.play span {
    font-size: 18px;
}


._39zede ._3G1q6i {
    align-items: center;
    border-radius: 10000px;
    color: #fff;
    display: inline-flex;
    justify-content: center;
}
._39zede ._3G1q6i svg {
    pointer-events: none;
}
._1a_Ljt {
    line-height: 0;
    pointer-events: none;
}
._30dE3d {
    height: var(--fable-size-150);
    width: var(--fable-size-150);
}
