/* ============================
   OSCAR CAROUSEL – PRETO TOTAL
   Card quadrado • Sem borda
============================ */

/* FUNDO GERAL */
body,
html{
  background:#000 !important;
}

/* Seção inteira */
.aurora-block{
  padding: 26px 18px;
  background:#000 !important;
}

/* Título */
.aurora-title h2{
  margin:0 0 18px;
  font-size:22px;
  font-weight:900;
  color:#fff;
}

/* Carrossel */
.aurora-track{
  display:flex;
  gap:16px;
  overflow-x:auto;
  scroll-behavior:smooth;
  padding: 4px 0 16px;
  background:#000 !important;

  scroll-snap-type: x mandatory;
}

.aurora-track::-webkit-scrollbar{
  height:6px;
}
.aurora-track::-webkit-scrollbar-thumb{
  background:#111;
  border-radius:999px;
}

/* Card */
.aurora-frame{
  flex:0 0 auto;
  width:190px;
  scroll-snap-align:start;
}

/* Link */
.aurora-jump{
  display:block;
  text-decoration:none;
  color:inherit;
}

/* Card visual QUADRADO, SEM BORDA */
.aurora-shell{
  position:relative;
  margin:0;
  border-radius:0;           /* 🔥 QUADRADO */
  overflow:hidden;
  background:#000;
  aspect-ratio:2/3;
}

/* Imagem */
.aurora-shell img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* Remove qualquer degradê */
.aurora-shell::after{
  display:none;
}

/* Badge */
.aurora-seal{
  position:absolute;
  left:12px;
  bottom:48px;

  padding:10px 16px;
  border-radius:999px;

  background:#111;
  color:#f4e7b6;

  font-size:12px;
  font-weight:900;

  border:none;
  box-shadow:none;
}

/* Nome do filme */
.aurora-name{
  position:absolute;
  left:12px;
  right:12px;
  bottom:14px;

  color:#fff;
  font-size:15px;
  font-weight:900;

  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* Hover leve */
.aurora-frame:hover{
  transform:scale(1.02);
}