body {
    background-color: #111323;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
  }

  .container {
    max-width: 1600px;
    margin: 20px auto;
    padding: 0 20px;
  }

  /* === HERO === */
  .filme-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(81, 101, 255, 0.75);
    flex-wrap: wrap;
  }
  .filme-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(15px);
    opacity: 0.5;
    z-index: 0;
  }
  .filme-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex: 1;
  }
  .filme-poster {
    width: 130px;
    max-height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(81, 101, 255, 0.75);
  }
  .filme-meta {
    flex: 1;
    min-width: 0;
    max-width: calc(100% - 150px);
    overflow-wrap: break-word;
  }
  .filme-meta h1 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .filme-meta span {
    font-weight: normal;
    font-size: 13px;
    color: #bbb;
  }
  .filme-meta p {
    color: #ccc;
    font-size: 13px;
    font-style: italic;
    line-height: 1.4;
  }

  /* === LINKS CATEGORIAS (azul estilizado) === */
  a[href^="/categoria/"] {
    color: #63b3ff;
    background: linear-gradient(90deg, #63b3ff, #b0e0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    margin-right: 8px;
    transition: all 0.3s ease;
  }
  a[href^="/categoria/"]:hover {
    text-decoration: underline;
    -webkit-text-fill-color: #a8cfff;
  }

  /* === PLAYER === */
  .filme-audio {
    background: #1b1b2b;
    padding: 20px;
    border-radius: 12px;
    margin-top: 5px;
    box-shadow: 0 0 10px rgba(81, 101, 255, 0.75);
  }
  .filme-audio-titulo {
    margin-bottom: 10px;
    font-weight: 300;
    color: #ff0000;
  }
  .audio-opcoes, .canal-opcoes {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
  }
  .btn-neutro, .btn-canal {
    box-shadow: 0 0 10px rgb(231 8 8);
    padding: 8px 16px;
    border: none;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  .btn-neutro:hover, .btn-canal:hover {
    background: rgba(255,255,255,0.2);
  }
  .btn-neutro.ativo, .btn-canal.ativo {
    background: #e53935;
  }
  #player-container {
    margin-top: 20px;
    display: none;
    aspect-ratio: 16/9;
  }
  #player-iframe {
    width: 100%;
    height: 100%;
    border-radius: 12px;
  }

  /* === ELENCO/DIRETORES === */
  .filme-info-boxes {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    border-radius: 12px;
    margin-top: 10px;
    box-shadow: 0 4px 10px rgba(81, 101, 255, 0.75);
  }
  .info-box strong {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
  }
  .lista-pessoas {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .lista-pessoas li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }
  .lista-pessoas img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 6px rgba(81, 101, 255, 0.8);
  }

  /* === RELACIONADOS === */
  .filmes-relacionados {
    margin-top: 40px;
  }
  .relacionados-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .relacionado-item {
    width: 130px;
    text-align: center;
    color: #ccc;
    transition: transform 0.3s ease;
  }
  .relacionado-item img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(81, 101, 255, 0.5);
  }
  .relacionado-item:hover {
    transform: scale(1.05);
    color: #fff;
  }
  .relacionado-item span {
    display: block;
    margin-top: 8px;
    font-size: 0.9rem;
  }

  @media (max-width:300px){
    .filme-hero {flex-direction:column;text-align:center;}
    .filme-hero-content{flex-direction:column;align-items:center;}
    .filme-poster{width:120px;margin-bottom:10px;}
    .filme-meta h1{font-size:16px;}
    #player-iframe{height:70vh;}
  }
  
  /* === SEÇÃO INFORMAÇÕES === */
.filme-informacoes {
  margin-top: 40px;
  background: #1b1b2b;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 0 10px rgba(81, 101, 255, 0.75);
}

.filme-informacoes h2 {
  color: #63b3ff;
  font-size: 1.4rem;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(99,179,255,0.3);
  padding-bottom: 5px;
}

.filme-informacoes ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.filme-informacoes li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #ddd;
}

.filme-informacoes strong {
  color: #fff;
}

/* estiliza os links das categorias dentro da seção */
.filme-informacoes a[href^="/categoria/"] {
  color: #63b3ff;
  text-decoration: none;
  margin-right: 8px;
  transition: color 0.3s ease;
}
.filme-informacoes a[href^="/categoria/"]:hover {
  color: #a8cfff;
  text-decoration: underline;
}

#player-container {
  margin-top: 20px;
  display: none;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
}

#player-iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

/* 🔹 Aumenta verticalmente apenas em telas pequenas */
@media (max-width: 768px) {
  #player-container {
    aspect-ratio: unset; /* remove o limite fixo */
    height: 75vh;        /* ocupa 75% da altura da tela */
  }

  #player-iframe {
    height: 100%;
  }
}