/*
    Theme Name: GoCine Premium
    Author: Seu Nome
    Description: Tema de Filmes Offshore
    Version: 1.0
    */
	
	/* --- CORREÇÃO DEFINITIVA DE VAZAMENTO LATERAL (MOBILE) --- */
html, body { 
    overflow-x: hidden !important; 
    width: 100% !important; 
    max-width: 100vw !important; 
    position: relative; 
    scroll-behavior: smooth; 
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { background-color: #050505; color: #ffffff; font-family: 'Poppins', sans-serif; font-size: 14px; }
a { text-decoration: none; color: inherit; }

/* --- HEADER ESTILO SUPERFLIX (TRANSPARENTE COM SOMBRA) --- */
header {
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%;
  padding: 15px 50px; 
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100; 
  background-color: transparent; 
  background-image: linear-gradient(to bottom, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
  font-family: 'Poppins', sans-serif;
}

/* LADO ESQUERDO: LOGO + MENU */
.header-left {
  display: flex;
  align-items: center;
  gap: 50px; 
}

.logo {
  font-weight: 900;
  font-size: 26px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  letter-spacing: -1px; 
}
.logo span { color: #fbc531; }

/* Menu de Navegação */
.nav-menu {
  display: flex;
  gap: 30px;
}
.nav-item {
  color: #ddd; 
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}
.nav-item:hover { color: #fff; }

/* Item Ativo */
.nav-item.active {
  color: #fff;
  font-weight: 700;
}
.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: -8px; 
  left: 50%;
  transform: translateX(-50%);
  width: 25px;
  height: 3px;
  background-color: #fbc531;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(251, 197, 49, 0.5); 
}

/* LADO DIREITO: FERRAMENTAS */
.header-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

/* Busca */
.search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.search-icon-trigger {
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  z-index: 2;
}
.search-input-flix {
  position: absolute;
  right: 0;
  background: rgba(0,0,0,0.9);
  border: 1px solid #555;
  color: #fff;
  padding: 8px 35px 8px 15px;
  border-radius: 30px;
  width: 0; 
  opacity: 0;
  transition: all 0.3s ease;
  outline: none;
}
.search-wrapper:hover .search-input-flix,
.search-input-flix:focus {
  width: 220px;
  opacity: 1;
  border-color: #fbc531;
  right: -10px; 
}

/* Botão Aleatório */
.btn-random {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3); 
  padding: 8px 25px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
  background: transparent; 
}
.btn-random:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

/* --- BOTÃO DE PERFIL --- */
.btn-account {
  background: linear-gradient(135deg, #fbc531 0%, #c2950b 100%); 
  color: #111;
  padding: 5px 20px 5px 5px; 
  border-radius: 50px;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(251, 197, 49, 0.25);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  z-index: 100;
}
.btn-account::after {
  content: '';
  position: absolute;
  top: 0; left: -150%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  transform: skewX(-20deg);
  transition: 0.5s;
}
.btn-account:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(251, 197, 49, 0.5); 
  border-color: #fff;
  color: #000;
}
.btn-account:hover::after {
  left: 150%; 
  transition: 0.7s ease-in-out;
}
.btn-account img {
  width: 26px !important;
  height: 26px !important;
  border-radius: 50%;
  border: 2px solid #fff !important; 
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  object-fit: cover;
}
.btn-account i {
  font-size: 16px;
  margin-left: 5px;
}

/* MOBILE HEADER */
@media (max-width: 900px) {
  .nav-menu, .btn-random, .btn-account { display: none; }
  .logo { position: absolute; left: 50%; transform: translateX(-50%); }
  header { padding: 15px 20px; }
  .search-wrapper:hover .search-input-flix { width: 150px; }
}
      .user-avatar { color: #00e5ff; } 

      /* --- HERO SECTION --- */
      .hero-section {
        position: relative;
        height: 75vh; 
        width: 100%;
        background-image: url('https://images.unsplash.com/photo-1509347528160-9a9e33742cd4?q=80&w=1000&auto=format&fit=crop'); 
        background-size: cover;
        background-position: center;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        padding-bottom: 40px;
      }
      .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(5,5,5,0.3) 0%, rgba(5,5,5,1) 100%);
        z-index: 1;
      }
      .hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        width: 90%;
        max-width: 600px;
      }
      .movie-title {
        font-size: 4rem;
        font-weight: 800;
        letter-spacing: 5px;
        margin-bottom: 20px;
        text-transform: uppercase;
        font-family: 'Courier New', monospace; 
        opacity: 0.9;
        text-shadow: 0 0 10px rgba(0,0,0,0.8);
      }
      .btn-play {
        background: #ffffff;
        color: #000000;
        padding: 12px 30px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 14px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        cursor: pointer;
        transition: transform 0.2s;
      }
      .btn-play:hover { transform: scale(1.05); }

      /* --- MOOD SECTION --- */
      .mood-section { padding: 20px; text-align: left; max-width: 800px; }
      .mood-title { font-size: 16px; margin-bottom: 20px; font-weight: 400; }
      .mood-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
      .mood-card { background: #8c52ff; border-radius: 12px; aspect-ratio: 1 / 1; display: flex; flex-direction: column; align-items: center; justify-content: center; cursor: pointer; transition: opacity 0.2s; }
      .mood-card:hover { opacity: 0.9; }
      .mood-icon { font-size: 20px; margin-bottom: 8px; color: #ffeb3b; }
      .mood-text { font-size: 12px; font-weight: 600; }

      @media (min-width: 768px) {
        .hero-section { height: 85vh; } 
        .mood-grid { gap: 20px; }
        .mood-card { aspect-ratio: auto; padding: 30px; } 
        .logo { font-size: 24px; position: static; transform: none; }
        header { justify-content: space-between; max-width: 1200px; margin: 0 auto; position: relative; }
        .logo { position: static; transform: none; }
      }
      @media (max-width: 360px) {
        .mood-text { font-size: 10px; }
        .movie-title { font-size: 2.5rem; }
      }

/* --- ESTILO GERAL DAS SEÇÕES --- */
.app-section { padding: 20px 0; margin-bottom: 10px; background-color: #050505; overflow: hidden; }
.section-header { display: flex; justify-content: space-between; align-items: center; padding: 0 20px 15px 20px; }
.section-title { color: #fff; font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin: 0; display: flex; align-items: center; gap: 8px; }
.ver-mais { color: #888; font-size: 11px; font-weight: 600; text-transform: uppercase; transition: color 0.3s; }
.ver-mais:hover { color: #fff; }
.horizontal-list { display: flex; gap: 15px; overflow-x: auto;  padding: 0 20px 20px 20px; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.horizontal-list::-webkit-scrollbar { display: none; }

/* --- CARD PADRÃO --- */
.movie-card { flex: 0 0 auto; width: 130px; display: flex; flex-direction: column; align-items: center; gap: 5px; cursor: pointer; }
.poster-wrapper { position: relative; width: 100%; border-radius: 6px; overflow: hidden; aspect-ratio: 2/3; transition: transform 0.3s; }
.poster-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.poster-wrapper:hover { transform: scale(1.05); }

.movie-name { position: absolute; bottom: 0; left: 0; width: 100%; padding: 25px 8px 8px 8px; background: linear-gradient(to top, rgba(0,0,0,0.9) 10%, rgba(0,0,0,0) 100%); color: #fff; font-size: 12px; font-weight: 500; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; z-index: 2; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; }

/* --- SEÇÃO TOP 10 --- */
.top10-card { flex: 0 0 auto; width: 160px; display: flex; align-items: flex-end; position: relative; margin-right: 10px; }
.rank-number { font-size: 100px; font-weight: 900; line-height: 0.8; position: absolute; left: -15px; bottom: 0; z-index: 2; font-family: 'Arial Black', sans-serif; color: #000; -webkit-text-stroke: 2px #ffffff; text-shadow: 2px 2px 10px rgba(0,0,0,0.8); }
.top10-poster { width: 110px; margin-left: auto; z-index: 1; border-radius: 6px; overflow: hidden; }

@media (min-width: 768px) {
  .movie-card { width: 180px; }
  .top10-card { width: 240px; }
  .top10-poster { width: 150px; }
  .rank-number { font-size: 140px; left: -20px; }
}

.top10-wrapper { flex: 0 0 auto; display: flex; align-items: flex-end; width: 150px; position: relative; margin-right: 0px; }
.top10-title { position: absolute; bottom: 0; left: 0; width: 100%; padding: 25px 5px 5px 5px; background: linear-gradient(to top, rgba(0,0,0,1) 20%, rgba(0,0,0,0) 100%); color: #fff; font-size: 11px; font-weight: 500; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; z-index: 3; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; }

/* --- CSS DA PÁGINA DO FILME --- */
.item-view .app-section { display: none !important; } 
.item-view .hero-section { display: none !important; }
.item-view .mood-section { display: none !important; }

.movie-hero-wrapper { position: relative; width: 100%; min-height: 100vh; background: #111; color: #fff; overflow: hidden; padding-bottom: 50px; }
.movie-backdrop { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; filter: blur(15px) brightness(0.4); z-index: 0; transform: scale(1.1); }
.movie-container { position: relative; z-index: 2; max-width: 1000px; margin: 0 auto; padding: 80px 20px 20px 20px; display: flex; flex-direction: column; gap: 30px; }
.movie-poster-large { width: 180px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.2); align-self: center; }
.movie-info { flex: 1; text-align: center; }
.movie-title-h1 { font-size: 26px; font-weight: 800; margin-bottom: 10px; text-shadow: 0 2px 5px rgba(0,0,0,0.8); }
.movie-meta-tags { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.meta-tag { background: rgba(255,255,255,0.15); padding: 4px 10px; border-radius: 4px; font-size: 11px; font-weight: 700; border: 1px solid rgba(255,255,255,0.1); opacity: 0.8; }
.tag-green { color: #00e676; border-color: #00e676; background: rgba(0, 230, 118, 0.1); }
.movie-actions { display: flex; gap: 15px; justify-content: center; margin: 25px 0; }
.btn-action { flex: 1; max-width: 200px; padding: 12px; border-radius: 50px; font-weight: 700; text-transform: uppercase; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; color: #000; }
.btn-assistir { background-color: #00e676; box-shadow: 0 0 15px rgba(0,230,118,0.3); }
.btn-trailer { background-color: #ffb300; }
.section-marker { text-align: left; border-left: 4px solid #00e676; padding-left: 10px; margin: 30px 0 10px 0; font-size: 16px; font-weight: 700; }
.movie-synopsis { text-align: justify; color: #ccc; font-size: 13px; line-height: 1.6; }
.cast-list { display: flex; gap: 15px; overflow-x: auto; padding-bottom: 10px; }
.cast-item { width: 70px; text-align: center; flex-shrink: 0; }
.cast-img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 2px solid #333; margin-bottom: 5px; }
.cast-name { font-size: 10px; color: #fff; }

@media (min-width: 768px) {
  .movie-container { flex-direction: row; align-items: flex-start; text-align: left; }
  .movie-info { text-align: left; }
  .movie-poster-large { width: 240px; align-self: flex-start; }
  .movie-meta-tags, .movie-actions { justify-content: flex-start; }
  .movie-title-h1 { font-size: 38px; }
}

/* --- LAYOUT DOOPLAY --- */
.dooplay-container { max-width: 1200px; margin: 20px auto; font-family: 'Poppins', sans-serif; color: #a5a5a5; }
.dp-hero-box { background-color: #0b0c0f; border: 1px solid #1f232b; padding: 30px; border-radius: 6px; display: flex; gap: 30px; position: relative; margin-bottom: 30px; }
.dp-poster { flex-shrink: 0; width: 200px; position: relative; }
.dp-poster img { width: 100%; border-radius: 5px; border: 4px solid #16181d; box-shadow: 0 0 15px rgba(0,0,0,0.5); }
.tag-quality-float { position: absolute; top: 10px; left: 0; background: #fbc531; color: #fff; font-size: 11px; font-weight: 700; padding: 3px 8px; border-top-right-radius: 4px; border-bottom-right-radius: 4px; z-index: 2; }
.dp-info-col { flex: 1; display: flex; flex-direction: column; }
.dp-header { border-bottom: 1px solid #1f232b; padding-bottom: 20px; margin-bottom: 20px; }
.dp-title { color: #fff; font-size: 28px; font-weight: 700; text-transform: uppercase; margin-bottom: 15px; }
.dp-buttons-row { display: flex; gap: 10px; }
.btn-circle { width: 45px; height: 45px; border-radius: 50%; background: #242830; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 16px; border: 1px solid #363c46; transition: all 0.2s; }
.btn-circle:hover { background: #fbc531; border-color: #fbc531; color: #fff; }
.dp-meta-row { display: flex; align-items: center; gap: 15px; font-size: 13px; margin-bottom: 20px; }
.meta-box-hd { border: 1px solid #fff; color: #fff; padding: 1px 4px; font-size: 10px; border-radius: 3px; }
.meta-rating { color: #fbc531; font-weight: 600; }
.stars { color: #fff; letter-spacing: 2px; font-size: 12px; }
.dp-content-grid { display: flex; gap: 30px; }
.dp-synopsis { flex: 2; line-height: 1.6; font-size: 14px; text-align: justify; }
.dp-credits { flex: 1; font-size: 12px; border-left: 1px solid #1f232b; padding-left: 20px; }
.credit-line { margin-bottom: 8px; }
.credit-label { color: #fbc531; font-weight: 700; }
.dp-tags { margin-top: 15px; display: flex; gap: 8px; }
.dp-tag-pill { background: #16181d; border: 1px solid #282c35; padding: 5px 12px; border-radius: 20px; font-size: 11px; font-weight: 600; }
.dp-seasons-container { background: #0b0c0f; border: 1px solid #1f232b; border-radius: 6px; overflow: hidden; }
.dp-season-bar { background: #fbc531; padding: 15px 25px; display: flex; justify-content: space-between; align-items: center; color: #fff; font-weight: 800; text-transform: uppercase; font-size: 14px; cursor: pointer; }
.dp-season-bar i { transition: transform 0.3s; }
details[open] .dp-season-bar i { transform: rotate(180deg); }
.dp-episodes-list { background: #0f1116; }
.dp-ep-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 25px; border-bottom: 1px solid #1f232b; transition: background 0.2s; text-decoration: none; }
.dp-ep-row:hover { background: #16181d; }
.dp-ep-row:last-child { border-bottom: none; }
.dp-ep-left { display: flex; align-items: center; gap: 15px; color: #fff; font-size: 13px; font-weight: 600; }
.dp-play-icon { font-size: 10px; color: #a5a5a5; }
.dp-ep-row:hover .dp-play-icon { color: #0097e6; }
.btn-baixar { background: #242830; color: #fff; font-size: 11px; padding: 6px 15px; border-radius: 3px; font-weight: 700; text-transform: uppercase; }
.dp-ep-row:hover .btn-baixar { background: #0097e6; }

@media (max-width: 768px) {
  .dp-hero-box { flex-direction: column; align-items: center; text-align: center; padding: 20px; }
  .dp-content-grid { flex-direction: column; }
  .dp-credits { border-left: none; padding-left: 0; border-top: 1px solid #1f232b; padding-top: 20px; }
  .dp-poster { width: 160px; }
  .dp-meta-row { justify-content: center; }
  .dp-tags { justify-content: center; }
}

/* --- PLAYER PREMIUM --- */
.player-split-container { display: flex; background: #0b0c0f; border: 1px solid #1f232b; border-radius: 8px; overflow: hidden; margin-top: 30px; min-height: 400px; }
.player-video-side { flex: 3; background: #000; position: relative; border-right: 1px solid #1f232b; }
.video-responsive-frame { position: relative; width: 100%; height: 100%; min-height: 400px; }
.video-responsive-frame iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.player-server-side { flex: 1; background: #111317; display: flex; flex-direction: column; min-width: 280px; }
.lang-switch-header { padding: 20px; display: flex; gap: 10px; border-bottom: 1px solid #1f232b; }
.btn-lang-toggle { flex: 1; text-align: center; padding: 10px; border-radius: 50px; font-size: 11px; font-weight: 800; cursor: pointer; background: #1f232b; color: #888; transition: all 0.3s; border: 1px solid transparent; }
.btn-lang-toggle.active { background: #fbc531; color: #fff; box-shadow: 0 0 10px rgb(213 157 1 / 51%); }
.server-list-scroll { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.server-item-btn { background: #1a1d24; padding: 15px; border-radius: 6px; cursor: pointer; transition: all 0.2s; border: 1px solid #2a2e38; display: flex; align-items: center; gap: 15px; }
.server-item-btn:hover, .server-item-btn.playing { background: #20242c; border-color: #0097e6; }
.server-num { font-size: 24px; font-weight: 800; color: #fff; font-style: italic; }
.server-info { display: flex; flex-direction: column; }
.server-name { color: #fff; font-weight: 700; font-size: 14px; text-transform: uppercase; }
.server-desc { color: #888; font-size: 10px; margin-top: 2px; }

@media (max-width: 900px) {
  .player-split-container { flex-direction: column; }
  .player-video-side { width: 100%; min-height: 250px; }
  .video-responsive-frame { padding-bottom: 93.25% !important; height: 0; min-height: auto; }
  .player-server-side { width: 100%; min-width: auto; }
}

body.search .hero-section,
body.search #home-streaming-content { display: none !important; }

/* --- CSS DO BLOG1 (FILTROS) --- */
.cat-header-title { font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 20px; border-left: 5px solid #fbc531; padding-left: 15px; display: flex; align-items: center; gap: 10px; }
.cat-header-title i { color: #fbc531; }
.filter-container { background-color: #0b0c0f; border: 1px solid #1f232b; padding: 20px; border-radius: 8px; margin-bottom: 30px; }
.filter-row-top { display: flex; justify-content: space-between; color: #888; font-size: 12px; font-weight: 600; text-transform: uppercase; margin-bottom: 10px; }
.filter-select { background: #16181d; color: #fff; border: 1px solid #333; padding: 10px; border-radius: 4px; font-size: 13px; cursor: pointer; outline: none; flex: 1; }
.filter-select:hover { border-color: #fbc531; }
.filters-grid { display: flex; gap: 10px; flex-wrap: wrap; }
.range-slider-mock { height: 4px; background: #333; position: relative; margin: 0 5px 20px 5px; border-radius: 2px; }
.range-fill { position: absolute; left: 10%; right: 10%; height: 100%; background: #fbc531; }
.range-thumb { width: 12px; height: 12px; background: #fff; border-radius: 50%; position: absolute; top: -4px; cursor: pointer; }
.thumb-left { left: 10%; }
.thumb-right { right: 10%; }
.catalog-grid-wrapper { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 20px; padding-bottom: 40px; }
.catalog-card { position: relative; border-radius: 6px; overflow: hidden; cursor: pointer; transition: transform 0.3s ease, box-shadow 0.3s ease; aspect-ratio: 2/3; background: #111; }
.catalog-card:hover { transform: scale(1.05); box-shadow: 0 10px 20px rgba(0,0,0,0.5); z-index: 2; }
.tag-type { position: absolute; top: 10px; left: 0; background: #fbc531; color: #000; font-size: 10px; font-weight: 800; padding: 4px 10px; border-top-right-radius: 4px; border-bottom-right-radius: 4px; z-index: 5; }
.cat-poster { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity 0.3s; }
.cat-info-overlay { position: absolute; bottom: 0; left: 0; width: 100%; background: linear-gradient(to top, rgba(0,0,0,1) 15%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0) 100%); padding: 50px 10px 10px 10px; display: flex; flex-direction: column; gap: 3px; }
.cat-title { color: #fff; font-size: 13px; font-weight: 700; line-height: 1.2; text-shadow: 0 2px 4px rgba(0,0,0,0.8); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cat-meta { display: flex; justify-content: space-between; gap: 8px; font-size: 11px; color: #ddd; font-weight: 600; overflow: hidden; height: 16px; }
#blog-pager a { transition: opacity 0.3s; text-decoration: none; }
#blog-pager a:hover { opacity: 0.8; }

@media (max-width: 768px) {
  .catalog-grid-wrapper { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 10px; }
  .filters-grid { flex-direction: column; }
  .cat-header-title { font-size: 18px; }
}

/* --- LIVE SEARCH --- */
.live-search-container { position: absolute; top: 45px; right: 0; width: 300px; background: #0b0c0f; border: 1px solid #1f232b; border-radius: 6px; box-shadow: 0 10px 30px rgba(0,0,0,0.8); z-index: 999; overflow: hidden; display: none; }
.live-item { display: flex; gap: 15px; padding: 10px; border-bottom: 1px solid #1f232b; cursor: pointer; transition: background 0.2s; text-decoration: none; }
.live-item:last-child { border-bottom: none; }
.live-item:hover { background: #16181d; }
.live-thumb { width: 45px; height: 65px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.live-info { display: flex; flex-direction: column; justify-content: center; }
.live-title { color: #fff; font-size: 13px; font-weight: 700; line-height: 1.2; margin-bottom: 4px; }
.live-meta { color: #0097e6; font-size: 11px; font-weight: 600; text-transform: uppercase; }
.live-no-result { padding: 15px; text-align: center; color: #888; font-size: 12px; }

/* --- PÁGINA DE PEDIDOS --- */
.pedidos-wrapper { min-height: 60vh; display: flex; flex-direction: column; align-items: center; padding-top: 40px; text-align: center; background: #050505; }
.pedidos-header { display: flex; align-items: center; gap: 15px; margin-bottom: 10px; }
.pedidos-icon-box { width: 45px; height: 45px; border: 2px solid #fbc531; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: #fbc531; }
.pedidos-title-text { font-size: 40px; font-weight: 700; color: #fff; margin: 0; }
.pedidos-subtitle { color: #888; font-size: 16px; font-weight: 500; margin-bottom: 80px; }
.pedidos-lock-area { display: flex; flex-direction: column; align-items: center; max-width: 500px; margin: 0 auto; }
.lock-icon-big { font-size: 80px; color: #333; margin-bottom: 20px; }
.pedidos-login-msg { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.pedidos-desc { color: #888; font-size: 14px; line-height: 1.5; }
.telegram-float { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background-color: #0088cc; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; box-shadow: 0 5px 15px rgba(0,0,0,0.5); z-index: 1000; transition: transform 0.3s; }
.telegram-float:hover { transform: scale(1.1); }
.pedidos-form-area { display: none; flex-direction: column; gap: 15px; width: 100%; max-width: 500px; margin-top: 30px; background: #111; padding: 30px; border-radius: 12px; border: 1px solid #222; }
.form-label { color: #fff; font-size: 14px; font-weight: 700; text-align: left; margin-bottom: 5px; display: block; }
.form-input { width: 100%; background: #1f232b; border: 1px solid #333; color: #fff; padding: 12px 15px; border-radius: 6px; font-size: 14px; outline: none; transition: 0.3s; }
.form-input:focus { border-color: #fbc531; background: #16181d; }
textarea.form-input { resize: vertical; min-height: 100px; }
.btn-send-req { background: #fbc531; color: #000; font-weight: 800; text-transform: uppercase; border: none; padding: 15px; border-radius: 50px; cursor: pointer; margin-top: 10px; transition: transform 0.2s; font-size: 14px; }
.btn-send-req:hover { transform: scale(1.02); box-shadow: 0 5px 15px rgba(251, 197, 49, 0.3); }
.btn-login-trigger { background: transparent; border: 2px solid #fbc531; color: #fbc531; padding: 10px 25px; border-radius: 50px; font-weight: 700; cursor: pointer; margin-top: 20px; }
.btn-login-trigger:hover { background: #fbc531; color: #000; }

/* --- PAINEL MEU GOCINE --- */
.account-wrapper { background: #050505; min-height: 80vh; padding: 40px 20px; display: flex; flex-direction: column; align-items: center; }
.profile-header-box { text-align: center; margin-bottom: 50px; }
.profile-avatar { width: 100px; height: 100px; border-radius: 50%; border: 3px solid #fbc531; object-fit: cover; margin-bottom: 15px; box-shadow: 0 0 20px rgba(251, 197, 49, 0.3); }
.profile-name { color: #fff; font-size: 24px; font-weight: 700; margin-bottom: 5px; }
.profile-email { color: #888; font-size: 14px; }
.account-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; width: 100%; max-width: 900px; }
.account-card { background: #111; border: 1px solid #222; border-radius: 10px; padding: 25px; display: flex; align-items: center; gap: 20px; cursor: pointer; transition: all 0.3s ease; text-decoration: none; }
.account-card:hover { border-color: #fbc531; background: #16181d; transform: translateY(-5px); }
.ac-icon { width: 50px; height: 50px; background: #1f232b; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: #fff; transition: 0.3s; }
.account-card:hover .ac-icon { background: #fbc531; color: #000; }
.ac-info h3 { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 5px; }
.ac-info p { color: #666; font-size: 12px; }
.card-danger:hover { border-color: #fcba03; }
.card-danger:hover .ac-icon { background: #ff4757; color: #fff; }

.btn-fav:hover { background-color: #ff4757 !important; border-color: #ff4757 !important; color: #fff !important; }
.btn-fav.active { background-color: #ff4757 !important; border-color: #ff4757 !important; color: #fff !important; animation: pulse 0.3s ease; }
.btn-fb:hover { background-color: #1877F2 !important; border-color: #1877F2 !important; color: #fff !important; }
.btn-dc:hover { background-color: #5865F2 !important; border-color: #5865F2 !important; color: #fff !important; }
@keyframes pulse { 0% {transform: scale(1);} 50% {transform: scale(1.2);} 100% {transform: scale(1);} }

#gocine-toast { visibility: hidden; min-width: 250px; background-color: #111; color: #fff; text-align: center; border-radius: 50px; padding: 16px 25px; position: fixed; z-index: 9999; left: 50%; top: 30px; transform: translateX(-50%); font-size: 14px; font-weight: 600; box-shadow: 0 5px 20px rgba(0,0,0,0.8); border: 1px solid #333; opacity: 0; transition: opacity 0.3s, top 0.3s; display: flex; align-items: center; justify-content: center; gap: 10px; }
#gocine-toast.show { visibility: visible; opacity: 1; top: 50px; }
#gocine-toast.sucesso { border-color: #00e676; color: #fff; }
#gocine-toast.sucesso i { color: #00e676; }
#gocine-toast.removido { border-color: #ff4757; color: #fff; }
#gocine-toast.removido i { color: #ff4757; }

.btn-remove-card { position: absolute; top: 5px; right: 5px; width: 32px; height: 32px; background: rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; color: #fff; display: flex; align-items: center; justify-content: center; z-index: 10; cursor: pointer; transition: all 0.2s ease; opacity: 0; transform: translateY(-10px); }
.catalog-card:hover .btn-remove-card { opacity: 1; transform: translateY(0); }
.btn-remove-card:hover { background: #ff4757; border-color: #ff4757; transform: scale(1.1) rotate(90deg); }

.filter-super-container { background: linear-gradient(90deg, #111 0%, #050505 100%); border-bottom: 1px solid #222; padding: 40px 30px; border-radius: 12px; margin-bottom: 40px; position: relative; overflow: hidden; }
.filter-super-container::after { content: ''; position: absolute; top: 0; right: 0; width: 300px; height: 100%; background: radial-gradient(circle, rgba(255, 71, 87, 0.15) 0%, rgba(0,0,0,0) 70%); pointer-events: none; }
.cat-main-title { font-size: 28px; font-weight: 800; letter-spacing: -1px; margin-bottom: 5px; }

.empty-list-box { grid-column: 1/-1; text-align: center; padding: 80px 20px; background: #0b0c0f; border: 2px dashed #222; border-radius: 12px; color: #666; }
.empty-list-box h3 { color: #fff; font-size: 20px; margin-top: 15px; }
.empty-list-box i { font-size: 50px; color: #333; margin-bottom: 10px; }

.custom-search-wrapper { background: #111; border-radius: 50px; padding: 12px 20px; display: flex; align-items: center; gap: 10px; border: 1px solid #222; margin-bottom: 25px; }
.custom-search-input { background: transparent; border: none; color: #fff; width: 100%; outline: none; }
.filter-row-year { margin-bottom: 20px; }
.filter-label-row { display: flex; justify-content: space-between; color: #888; font-size: 11px; font-weight: 700; margin-bottom: 10px; }
#year-display { color: #fff; }
input[type=range] { width: 100%; -webkit-appearance: none; background: transparent; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; height: 16px; width: 16px; border-radius: 50%; background: #fff; cursor: pointer; margin-top: -6px; box-shadow: 0 0 10px rgba(0,0,0,0.5); }
input[type=range]::-webkit-slider-runnable-track { width: 100%; height: 4px; cursor: pointer; background: #fbc531; border-radius: 2px; }
.filter-controls-grid { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 15px; align-items: end; }
.filter-dropdown label { display: block; color: #666; font-size: 10px; font-weight: 700; margin-bottom: 8px; text-transform: uppercase; }
.filter-dropdown select { width: 100%; background: #111; border: 1px solid #222; color: #fff; padding: 10px; border-radius: 6px; outline: none; cursor: pointer; }
.btn-filter-apply { background: #333; color: #fff; border: none; padding: 10px 20px; border-radius: 6px; font-weight: 700; font-size: 11px; cursor: pointer; height: 38px; }
.btn-filter-apply:hover { background: #fbc531; color: #000; }

@media (max-width: 768px) {
  .filter-controls-grid { grid-template-columns: 1fr 1fr; }
}

.cat-meta-spread { display: flex; justify-content: space-between; align-items: center; width: 100%; margin-top: 6px; padding-top: 8px; border-top: 1px solid rgba(255,255,255,0.1); }
.meta-left, .meta-right { display: inline-flex; align-items: center; height: 20px; font-size: 11px; font-weight: 700; color: #ddd; line-height: 1; }
.meta-left i, .meta-right i { display: flex; align-items: center; margin-right: 5px !important; font-size: 12px; color: #fbc531; transform: translateY(-1px); }

/* --- MENU INFERIOR --- */
.mobile-bottom-nav { display: none; position: fixed; bottom: 0; left: 0; width: 100%; background: rgba(5, 5, 5, 0.98); border-top: 1px solid #222; z-index: 10000 !important; padding-bottom: env(safe-area-inset-bottom); }
.mb-grid { display: flex; justify-content: space-around; height: 60px; align-items: center; }
.mb-item { background: none; border: none; color: #666; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; width: 20%; cursor: pointer; text-decoration: none; }
.mb-item i { font-size: 22px; margin-bottom: 2px; transition: 0.2s; }
.mb-item span { font-size: 10px; font-weight: 600; }
.mb-item.active, .mb-item:hover { color: #fbc531; }
.mb-item.active i { transform: translateY(-2px); color: #fbc531; font-weight: bold; }

@media (max-width: 768px) {
  .mobile-bottom-nav { display: block; }
  body { padding-bottom: 70px; }
}

/* --- TELA DA BIBLIOTECA E DESCOBRIR --- */
.lib-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #050505; z-index: 9995; display: flex; flex-direction: column; transform: translateY(100%); transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1); visibility: hidden; overflow: hidden; padding-bottom: 65px; }
.lib-overlay.open { transform: translateY(0); visibility: visible; }
.lib-header, .lib-tabs-header, .lib-filter-bar { flex-shrink: 0; width: 100%; background: #050505; position: relative; z-index: 5; }
.lib-header { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; border-bottom: 1px solid #1a1a1a; }
.lib-logo { font-size: 20px; margin: 0; color: #fff; font-weight: 800; }
.lib-logo span { color: #fbc531; }
.btn-close-lib { background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }
.lib-tabs-header { display: flex; justify-content: center; border-bottom: 1px solid #222; padding: 0 10px; }
.lib-tab-btn { flex: 1; background: transparent; border: none; color: #666; font-size: 13px; font-weight: 700; text-transform: uppercase; padding: 15px 0; cursor: pointer; position: relative; transition: color 0.3s; }
.lib-tab-btn:hover, .lib-tab-btn.active { color: #fff; }
.lib-tab-btn.active::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: #fbc531; box-shadow: 0 -5px 15px rgba(251, 197, 49, 0.3); border-radius: 2px 2px 0 0; }
.lib-filter-bar { padding: 15px 20px; padding-top: 15px; border-bottom: none; display: flex; gap: 10px; overflow-x: auto; white-space: nowrap; }
.lib-filter-btn { background: #fff; color: #000; border: none; padding: 8px 16px; border-radius: 50px; font-size: 12px; font-weight: 700; display: flex; align-items: center; gap: 6px; cursor: pointer; flex-shrink: 0; }

/* CORREÇÃO DO SCROLL E ROLAGEM AQUI */
.lib-content-grid, .discover-list { 
  flex-grow: 1; 
  overflow-y: auto !important; /* <--- OBRIGATORIAMENTE 'AUTO' PARA ROLAR */
  -webkit-overflow-scrolling: touch; 
}
.lib-content-grid { padding: 10px; padding-bottom: 80px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; align-content: start; }
.discover-list { min-height: 0; display: flex !important; flex-direction: column; gap: 15px; padding: 15px 20px 120px 20px !important; }

.lib-card { position: relative; border-radius: 8px; overflow: hidden; aspect-ratio: 2/3; background: #18181b; box-shadow: 0 4px 10px rgba(0,0,0,0.6); }
.lib-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lib-tag { position: absolute; top: 5px; left: 5px; background: #fbc531; color: #000; font-size: 8px; font-weight: 800; padding: 2px 6px; border-radius: 3px; }

@media (max-width: 360px) { .lib-content-grid { grid-template-columns: repeat(2, 1fr); } }

.filter-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 10000; opacity: 0; visibility: hidden; transition: 0.3s; display: flex; align-items: flex-end; }
.filter-modal-overlay.show { opacity: 1; visibility: visible; }
.filter-sheet { width: 100%; background: #161616; border-top-left-radius: 20px; border-top-right-radius: 20px; padding: 20px; max-height: 70vh; overflow-y: auto; transform: translateY(100%); transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1); box-shadow: 0 -5px 20px rgba(0,0,0,0.5); border-top: 1px solid #333; }
.filter-modal-overlay.show .filter-sheet { transform: translateY(0); }
.filter-header { text-align: center; margin-bottom: 20px; position: relative; }
.filter-drag-bar { width: 40px; height: 4px; background: #333; border-radius: 2px; margin: 0 auto 15px auto; }
#filter-title { font-size: 16px; font-weight: 700; color: #fff; }
.filter-list { display: flex; flex-direction: column; gap: 5px; }
.filter-option { background: transparent; border: none; text-align: left; padding: 15px; color: #ccc; font-size: 14px; font-weight: 500; border-radius: 8px; cursor: pointer; transition: 0.2s; }
.filter-option:hover { background: #222; color: #fff; }
.filter-option.active { color: #fbc531; font-weight: 700; background: rgba(251, 197, 49, 0.1); }

/* --- TELA DESCOBRIR FIXA --- */
#discover-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; height: 100dvh; background: #050505; z-index: 9995; display: flex; flex-direction: column; overflow: hidden; }
.discover-header-area { flex-shrink: 0; padding: 15px 20px; background: #050505; display: flex; align-items: center; border-bottom: 1px solid #1a1a1a; z-index: 10; }
.discover-search-box { flex: 1; background: #16181d; border-radius: 8px; display: flex; align-items: center; padding: 0 12px; height: 45px; border: 1px solid #2a2e38; }
.discover-search-box input { background: transparent; border: none; color: #fff; width: 100%; margin-left: 10px; outline: none; font-size: 13px; }
.search-icon { color: #666; font-size: 18px; }
.clear-btn { background: none; border: none; color: #666; cursor: pointer; display: flex; }
.discover-section-title { flex-shrink: 0; padding: 15px 20px 5px 20px; background: #050505; }
.discover-section-title span { color: #fff; font-weight: 700; font-size: 11px; text-transform: uppercase; border-left: 3px solid #6c5ce7; padding-left: 10px; }

.discover-card { display: flex; background: #111; border-radius: 8px; overflow: hidden; height: 120px; border: 1px solid #1f1f1f; cursor: pointer; position: relative; flex-shrink: 0; }
.dc-poster { width: 85px; height: 100%; object-fit: cover; flex-shrink: 0; }
.dc-info { padding: 15px; display: flex; flex-direction: column; justify-content: center; gap: 5px; flex: 1; }
.dc-title { color: #fff; font-size: 13px; font-weight: 700; line-height: 1.2; text-transform: uppercase; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.dc-meta-row { font-size: 10px; color: #888; font-weight: 600; text-transform: uppercase; }
.dc-meta-row strong { color: #ddd; margin-left: 3px; }

/* VISUAL TECH */
.badge-tech { position: absolute; top: 0; left: 0; z-index: 20; background: #fbc531; color: #000; font-size: 10px; font-weight: 900; font-family: 'Poppins', sans-serif; text-transform: uppercase; letter-spacing: 0.5px; padding: 6px 14px 6px 8px; clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%); filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.5)); }

@media (max-width: 768px) {
  .dp-buttons-row { justify-content: center !important; flex-wrap: wrap !important; gap: 6px !important; margin-top: 15px; }
  .dp-header, .dp-meta-row, .dp-content-grid { text-align: center !important; }
  .dp-meta-row { justify-content: center !important; }
  .catalog-grid-wrapper, #random-grid-target, .dash-grid, .app-section { padding-left: 8px !important; padding-right: 8px !important; box-sizing: border-box !important; }
  .catalog-grid-wrapper, #random-grid-target, .dash-grid { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 10px !important; }
  .random-hero { padding: 40px 15px !important; }
  .random-hero h1 { font-size: 24px !important; }
  .catalog-card { aspect-ratio: 2/3 !important; }
  .filter-super-container, .catalog-grid-wrapper { padding-left: 15px !important; padding-right: 15px !important; width: 100% !important; box-sizing: border-box !important; }
  .catalog-grid-wrapper { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 10px !important; }
  .custom-search-wrapper, .filter-select-box, .btn-filter-apply { width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; }
  .badge-tech { font-size: 8px !important; padding: 4px 10px 4px 5px !important; letter-spacing: 0 !important; filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.5)) !important; }
  .rating-premium { top: 5px !important; right: 5px !important; padding: 2px 4px !important; font-size: 8px !important; gap: 3px !important; border-radius: 3px !important; }
  .rating-premium i { font-size: 8px !important; }
  .cat-info-overlay { padding: 30px 6px 6px 6px !important; }
  .cat-title { font-size: 10px !important; line-height: 1.1 !important; margin-bottom: 1px !important; }
  .cat-meta-spread { margin-top: 0 !important; }
  .meta-left, .meta-right { font-size: 8px !important; gap: 3px !important; }
  .meta-left i, .meta-right i { font-size: 9px !important; }
}

@media (min-width: 769px) { 
  .catalog-grid-wrapper { width: 100% !important; max-width: 100% !important; margin: 0 !important; padding-left: 16px !important; padding-right: 16px !important; box-sizing: border-box !important; display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 20px; }
  .filter-super-container { padding-left: 35px !important; padding-right: 35px !important; box-sizing: border-box !important; }
  .random-hero { max-width: 1000px !important; margin: 0 auto 30px auto !important; }
}

/* =========================================
   FIX: ROLAGEM NAS TELAS DESCOBRIR E BIBLIOTECA (SÓ MOBILE)
   ========================================= */
@media (max-width: 900px) {
    /* Garante que a tela preta de fundo fique fixa do tamanho exato do celular */
    .lib-overlay.open, #discover-overlay.open {
        display: flex !important;
        flex-direction: column !important;
        height: 100vh !important;
        height: 100dvh !important; /* Pega o tamanho real em navegadores mobile modernos */
        overflow: hidden !important; 
    }

    /* Aplica a rolagem apenas dentro da área dos filmes */
    .lib-content-grid, .discover-list {
        flex-grow: 1 !important;
        overflow-y: auto !important; /* A Mágica: Cria a barra de rolagem */
        min-height: 0 !important; /* Força o Flexbox a respeitar o limite da tela */
        -webkit-overflow-scrolling: touch !important; /* Deixa a rolagem macia no iPhone */
        padding-bottom: 100px !important; /* Espaço para o menu inferior não cobrir o último filme */
    }
}

/* --- CSS BASE (SPLASH SCREEN) --- */
  body { 
    background-color: #050505; 
    margin: 0; padding: 0; 
    overflow: hidden; /* Trava a rolagem enquanto carrega */
  }
  
  /* A Cortina de Carregamento */
  #app-loader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #050505;
    z-index: 9999999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
  }

  /* Logo Pulsando */
  .loader-logo {
    font-family: sans-serif;
    font-weight: 900;
    font-size: 40px;
    color: #fff;
    letter-spacing: -1px;
    animation: pulseLogo 1.5s infinite ease-in-out;
  }
  .loader-logo span { color: #fbc531; }

  @keyframes pulseLogo {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
  }

/* =========================================
   RODAPÉ PREMIUM GOCINE (APENAS DESKTOP)
   ========================================= */

.gocine-footer {
    background: linear-gradient(to bottom, #050505 0%, #0a0a0c 100%);
    border-top: 1px solid #1f232b;
    padding: 60px 20px 20px 20px;
    color: #a5a5a5;
    font-family: 'Poppins', sans-serif;
    margin-top: 50px;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Coluna 1: Marca e Redes */
.footer-brand .logo {
    font-size: 28px;
    margin-bottom: 15px;
    display: inline-block;
    color: #fff;
    font-weight: 900;
    letter-spacing: -1px;
}
.footer-brand .logo span { color: #fbc531; }

.footer-brand p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}
.social-btn {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: #111;
    border: 1px solid #222;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.social-btn:hover { 
    background: #fbc531; 
    color: #000; 
    border-color: #fbc531; 
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(251, 197, 49, 0.4);
}

/* Colunas de Links */
.footer-col-title {
    color: #fff; 
    font-size: 15px; 
    font-weight: 700; 
    margin-bottom: 25px; 
    text-transform: uppercase;
    position: relative; 
    padding-bottom: 10px;
}
.footer-col-title::after {
    content: ''; 
    position: absolute; 
    bottom: 0; left: 0; 
    width: 30px; height: 3px; 
    background: #fbc531; 
    border-radius: 2px;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { 
    color: #888; 
    font-size: 13px; 
    font-weight: 500; 
    transition: all 0.3s ease; 
    display: inline-block;
}
/* Efeito de deslizar para a direita no Hover */
.footer-links a:hover { 
    color: #fbc531; 
    transform: translateX(5px); 
}

/* Base do Rodapé (Copyright) */
.footer-bottom {
    max-width: 1200px; margin: 0 auto;
    border-top: 1px solid #1f232b;
    padding-top: 25px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 12px;
}
.footer-bottom strong { color: #fff; }

/* === A MÁGICA: ESCONDE NO CELULAR === */
@media (max-width: 768px) {
    .gocine-footer { display: none !important; }
}

/* =========================================
   ESTILO PADRÃO (DESKTOP E GERAL)
   ========================================= */
.lib-content-grid {
    flex-grow: 1;
    -webkit-overflow-scrolling: touch;
    padding: 10px;
    padding-bottom: 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    align-content: start;
}

/* =========================================
   AJUSTES EXCLUSIVOS PARA O CELULAR (ROLAGEM)
   ========================================= */
@media (max-width: 900px) {
    
    /* 1. Trava a tela preta de fundo para não vazar do celular */
    .lib-overlay, .lib-overlay.open {
        height: 100vh !important;
        height: 100dvh !important; /* dVH é perfeito para o iPhone/Android */
        overflow: hidden !important; 
        display: flex;
        flex-direction: column;
    }

    /* 2. Aplica a rolagem apenas na sua grade de filmes */
    .lib-content-grid {
        overflow-y: auto !important; /* Cria a barra de rolagem vertical */
        min-height: 0 !important; /* Obrigatório no flexbox para rolar */
        padding-bottom: 120px !important; /* Aumentei um pouco para o menu inferior não tampar */
    }
}

/* =========================================
   FIX: CARDS AMONTOADOS NA BIBLIOTECA
   ========================================= */
.lib-card {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 2 / 3 !important; /* Força a proporção exata de poster */
    min-height: 190px;
    border-radius: 8px;
    overflow: hidden;
    display: block;
}

/* Garante que a imagem preencha o espaço, mas fique NO FUNDO */
.lib-card img, .lib-card .poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    z-index: 0 !important; /* <-- A MÁGICA AQUI: Joga a imagem pro fundo */
}

/* Traz as etiquetas (tags) para a frente da imagem */
.lib-card > *:not(img):not(.poster) {
    z-index: 2 !important; /* Puxa tudo que NÃO for a imagem para a frente */
}

/* =========================================
   FIX: BOTÕES DE FILTRO MOBILE (MINHAS LISTAS)
   ========================================= */
@media (max-width: 768px) {
    .dash-filters {
        overflow-x: auto !important; /* Permite rolar para o lado se faltar espaço */
        flex-wrap: nowrap !important; /* Força os botões a ficarem em uma linha só */
        padding-bottom: 5px !important; /* Espaço pro scroll */
        -webkit-overflow-scrolling: touch !important; /* Rolagem suave no iPhone */
        scrollbar-width: none !important; /* Esconde a barra feia no Firefox */
    }
    
    .dash-filters::-webkit-scrollbar { 
        display: none !important; /* Esconde a barra feia no Chrome/Safari */
    }

    .filter-pill {
        white-space: nowrap !important; /* A MÁGICA: Impede a palavra de quebrar ("Fil-mes" nunca mais) */
        padding: 8px 16px !important; /* Diminui um pouco as laterais para caber melhor na tela */
        font-size: 12px !important; /* Ajuste sutil na fonte para mobile */
        flex-shrink: 0 !important; /* Impede que o botão seja "esmagado" pelo layout */
    }
}

/* =========================================
   GOCINE: ESTILO PREMIUM DOS COMENTÁRIOS
   ========================================= */
.comments .comments-content {
    margin-top: 20px;
}
.comments .comment-thread ol {
    padding: 0;
    margin: 0;
    list-style: none;
}
.comments .comment {
    background: #0f1014; /* Fundo do card escuro */
    border: 1px solid #1f232b; /* Borda sutil */
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
}
/* Recuo para as Respostas (Fio condutor) */
.comments .comment-thread.inline-thread {
    padding-left: 30px;
    border-left: 2px dashed #1f232b;
    margin-top: 15px;
}
/* Avatar Circular */
.comments .avatar-image-container {
    float: left;
    width: 45px;
    height: 45px;
    overflow: hidden;
    border-radius: 50%;
    border: 2px solid #fbc531;
    background: #111;
}
.comments .avatar-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none !important;
}
/* Cabeçalho do comentário (Nome e Data) */
.comments .comment-header {
    margin-left: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 45px;
    margin-bottom: 10px;
}
.comments .comment-header .user a, 
.comments .comment-header .user {
    color: #fbc531 !important; /* Amarelo GoCine */
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}
.comments .comment-header .datetime a {
    color: #6c757d !important;
    font-size: 11px;
    text-decoration: none;
    font-weight: 600;
}
/* Conteúdo do texto */
.comments .comment-content {
    color: #d1d1d1;
    font-size: 14px;
    line-height: 1.6;
    margin-left: 60px; /* Alinhado com o nome */
    margin-bottom: 15px;
}
/* Botões de Ação (Responder / Excluir) */
.comments .comment-actions {
    margin-left: 60px;
}
.comments .comment-actions a {
    display: inline-block;
    background: #16181d;
    color: #888;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    margin-right: 8px;
    transition: all 0.3s ease;
    border: 1px solid #1f232b;
}
.comments .comment-actions a:hover {
    background: #fbc531;
    color: #000;
    border-color: #fbc531;
    transform: translateY(-2px);
}

/* --- CSS DO HERO (BANNER ROTATIVO) --- */
.hero-section {
  position: relative;
  height: 75vh;
  width: 100%;
  background-color: #000;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 40px;
  transition: background-image 0.5s ease-in-out;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,1) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 90%;
  max-width: 700px;
  margin-bottom: 30px;
}

.movie-title {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 10px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.8);
  letter-spacing: 2px;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  max-width: 100%;
}

.hero-tag {
  display: inline-block;
  background-color: transparent;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.btn-hero-play {
  background: #fff;
  color: #000;
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-top: 15px;
  transition: transform 0.2s, background 0.2s;
}
.btn-hero-play:hover {
  transform: scale(1.05);
  background: #f0f0f0;
}

/* --- CSS MOOD (VIBE) --- */
.mood-section {
    width: 100%;
    max-width: 1600px !important;
    margin: 40px auto;
    padding: 0 30px;
    box-sizing: border-box;
}

.mood-title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-left: 5px;
}

/* ESTILO DESKTOP (8 EM LINHA) */
.mood-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr) !important; 
    gap: 12px;
}

.mood-card {
    background-color: #8c52ff;
    height: 110px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #fff !important;
    transition: transform 0.2s, background 0.2s;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(140, 82, 255, 0.2);
    aspect-ratio: auto !important;
    padding: 0 !important;
}

.mood-card:hover {
    transform: translateY(-5px);
    background-color: #7b3dfc;
    box-shadow: 0 8px 20px rgba(140, 82, 255, 0.4);
}

.mood-icon {
    font-size: 32px;
    margin-bottom: 8px;
    color: #ffd700;
}

.mood-text {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

/* --- RESPONSIVIDADE --- */

/* TABLET (Quebra em 2 linhas de 4) */
@media (max-width: 1100px) {
    .mood-grid { grid-template-columns: repeat(4, 1fr) !important; }
}

/* CELULAR (ROLAGEM HORIZONTAL) - AQUI ESTÁ A MÁGICA */
@media (max-width: 768px) {
    .movie-title { font-size: 2.2rem; }
    .hero-section { height: 65vh; background-position: center center; }
    
    /* Remove padding lateral excessivo do container no celular */
    .mood-section { padding: 0 0 0 15px !important; } 

    .mood-grid {
        display: flex !important; /* Muda de Grid para Flex */
        grid-template-columns: none !important; /* Anula colunas */
        overflow-x: auto !important; /* Ativa rolagem horizontal */
        gap: 15px !important;
        padding-right: 15px !important; /* Espaço no final da lista */
        padding-bottom: 10px; /* Espaço para scroll não cortar sombra */
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch; /* Rolagem suave no iPhone */
        
        /* Esconde barra de rolagem feia */
        scrollbar-width: none; 
    }
    .mood-grid::-webkit-scrollbar { display: none; }

    /* Ajusta os cartões para ter tamanho fixo */
    .mood-card {
        min-width: 130px !important; /* Largura fixa */
        width: 130px !important;
        flex: 0 0 auto !important; /* Impede de encolher */
    }
}

/* =========================================
   EFEITO HOVER DO PLAYER (BOTAO PLAY)
   ========================================= */

/* 1. Onde o efeito vai aparecer */
.poster-wrapper, .top10-poster {
    position: relative !important;
    overflow: hidden !important;
}

/* 2. A Camada Escura (Overlay) */
.card-hover-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Escurece levemente */
    backdrop-filter: blur(2px);      /* Efeito vidro */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 5; /* Fica acima da imagem */
    pointer-events: none; /* ESSENCIAL: Deixa o clique passar para o filme */
}

/* 3. O Botão Redondo no Meio */
.play-btn-center {
    width: 55px;
    height: 55px;
    background: #fbc531; /* Amarelo GoCine */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    transform: scale(0.5) translateY(30px); /* Começa pequeno e baixo */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* 4. O Ícone de Triângulo */
.play-btn-center::before {
    content: ''; /* CORRIGIDO AQUI: removido o ' do Blogger */
    width: 0; height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 14px solid #000;
    margin-left: 4px; /* Ajuste visual */
}

/* 5. Animação de Pulso (Ondas) */
.play-btn-center::after {
    content: ''; /* CORRIGIDO AQUI */
    position: absolute;
    width: 100%; height: 100%;
    border-radius: 50%;
    border: 2px solid #fbc531;
    opacity: 0;
    z-index: -1;
}

/* --- HOVER (Animações) --- */

/* Mostra o fundo */
.poster-wrapper:hover .card-hover-overlay,
.top10-poster:hover .card-hover-overlay {
    opacity: 1;
    visibility: visible;
}

/* Sobe o botão */
.poster-wrapper:hover .play-btn-center,
.top10-poster:hover .play-btn-center {
    transform: scale(1) translateY(0);
}

/* Ativa o pulso */
.poster-wrapper:hover .play-btn-center::after,
.top10-poster:hover .play-btn-center::after {
    animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* =========================================
   ALINHAMENTO E SOMBRA DO HEADER
   ========================================= */
@media (min-width: 768px) {
    header {
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100% !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        z-index: 999;
        
        /* AQUI ESTÁ O SEGREDO DO ALINHAMENTO */
        padding-top: 25px !important;
        padding-right: 0px !important;
        padding-left: 50px !important; 
        
        box-sizing: border-box !important; /* Garante que o padding não estoure a tela */
    }

    /* 2. A Sombra (Agora com 120% da tela para não falhar) */
    header::before {
        content: ''; /* CORRIGIDO AQUI */
        position: absolute;
        top: 0;
        height: 180px; /* Altura do degradê */
        
        /* O PULO DO GATO: 120vw (Mais largo que a tela) */
        width: 120vw !important;  
        
        /* Centraliza o exagero */
        left: 50% !important;     
        transform: translateX(-50%) !important; 
        
        /* O Degradê Preto */
        background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0) 100%) !important;
        
        z-index: -1;
        pointer-events: none;
    }
    
    /* Previne barra de rolagem horizontal por causa da sombra gigante */
    body, html {
        overflow-x: hidden !important;
    }
}

/* --- CSS GERAL --- */
     html, body { overflow-x: hidden !important; max-width: 100% !important; }

     .dashboard-container { display: flex; gap: 30px; max-width: 1200px; margin: 40px auto; padding: 20px; font-family: 'Poppins', sans-serif; align-items: flex-start; }
     .dash-sidebar { width: 280px; background: #0f1014; border-radius: 12px; padding: 30px 20px; text-align: center; flex-shrink: 0; border: 1px solid #1f232b; }
     .dash-avatar { width: 90px; height: 90px; border-radius: 50%; border: 4px solid #1f232b; object-fit: cover; margin-bottom: 15px; }
     .dash-name { color: #fff; font-weight: 700; font-size: 18px; text-transform: uppercase; margin-bottom: 5px; }
     .dash-email { color: #6c757d; font-size: 13px; margin-bottom: 25px; word-break: break-all; }
     .btn-dash { width: 100%; padding: 12px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 10px; transition: 0.2s; text-decoration: none; }
     .btn-config { background: #23272e; color: #ccc; }
     .btn-logout-gold { background: transparent; border: 1px solid #c2950b; color: #fbc531; }
     .dash-stats-list { text-align: left; display: flex; flex-direction: column; gap: 12px; }
     .stat-item { display: flex; justify-content: space-between; color: #aeb4be; font-size: 13px; padding: 5px 0; border-bottom: 1px solid #1a1c21; }
     .stat-badge { background: #191b21; padding: 2px 10px; border-radius: 6px; color: #fff; font-weight: 700; }
     
     .dash-main { flex: 1; width: 100%; }
     .dash-title { font-size: 28px; font-weight: 700; color: #fff; margin-bottom: 25px; }
     .dash-nav-tabs { display: flex; gap: 30px; border-bottom: 1px solid #1f232b; padding-bottom: 15px; margin-bottom: 25px; }
     .tab-link { background: none; border: none; color: #6c757d; font-size: 15px; font-weight: 600; cursor: pointer; display: flex; gap: 8px; position: relative; }
     .tab-link.active { color: #fff; }
     .tab-link.active::after { content: ''; position: absolute; bottom: -16px; left: 0; width: 100%; height: 2px; background: #fbc531; }
     .tab-count { background: #23272e; color: #aaa; font-size: 11px; padding: 2px 8px; border-radius: 10px; }
     .tab-link.active .tab-count { background: #fff; color: #000; font-weight: 700; }
     .dash-filters { display: flex; gap: 10px; margin-bottom: 25px; }
     .filter-pill { padding: 8px 25px; border-radius: 6px; font-size: 13px; font-weight: 700; border: none; cursor: pointer; background: #191b21; color: #6c757d; transition: 0.2s; }
     .filter-pill.active { background: #fbc531; color: #000; }
     .dash-content-box { background: #0f1014; border: 1px solid #1f232b; border-radius: 12px; padding: 30px; min-height: 400px; }
     .dash-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 20px; }
     
     /* --- CSS FILTROS E BARRA A-Z --- */
     .filter-super-container { background: #000; padding: 20px 0; margin-bottom: 30px; border-bottom: 1px solid #222; }
     
     .alphabet-scroller {
         display: flex;
         flex-wrap: wrap;
         gap: 15px;
         margin-bottom: 25px;
         padding-bottom: 10px;
         border-bottom: 1px solid #1a1a1a;
     }
     .alpha-btn {
         background: #111;
         border: 1px solid #222;
         color: #666;
         font-size: 11px;
         font-weight: 700;
         width: 30px;
         height: 30px;
         border-radius: 4px;
         cursor: pointer;
         transition: 0.2s;
         display: flex;
         align-items: center;
         justify-content: center;
     }
     .alpha-btn:hover, .alpha-btn.active {
         background: #fbc531;
         color: #000;
         border-color: #fbc531;
     }
     .alpha-btn-all { width: auto; padding: 0 15px; }

     .filter-row-year { margin-bottom: 20px; }
     .filter-label-row { display: flex; justify-content: space-between; color: #888; font-size: 11px; font-weight: 700; margin-bottom: 10px; }
     #year-display { color: #fff; }
     .filter-controls-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 15px; align-items: end; }
     .filter-dropdown label { display: block; color: #666; font-size: 10px; font-weight: 700; margin-bottom: 8px; text-transform: uppercase; }
     .filter-select-box { width: 100%; background: #111; border: 1px solid #222; color: #fff; padding: 10px; border-radius: 6px; outline: none; cursor: pointer; }
     .btn-filter-apply { background: #333; color: #fff; border: none; padding: 10px 20px; border-radius: 6px; font-weight: 700; height: 38px; width: 100%; cursor: pointer; }
     .btn-filter-apply:hover { background: #fbc531; color: #000; }
     input[type=range] { width: 100%; -webkit-appearance: none; background: transparent; }
     input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; height: 16px; width: 16px; border-radius: 50%; background: #fff; cursor: pointer; margin-top: -6px; }
     input[type=range]::-webkit-slider-runnable-track { width: 100%; height: 4px; cursor: pointer; background: #fbc531; border-radius: 2px; }
     
     /* Pedidos */
     .pedidos-wrapper { min-height: 60vh; display: flex; flex-direction: column; align-items: center; padding-top: 40px; text-align: center; background: #050505; }
     .pedidos-icon-box { width: 45px; height: 45px; border: 2px solid #fbc531; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: #fbc531; }
     .pedidos-title-text { font-size: 40px; font-weight: 700; color: #fff; margin: 0; }
     .pedidos-lock-area { margin-top: 50px; }

     /* CSS Aleatório */
     .random-hero { text-align: center; padding: 30px 20px; background: radial-gradient(circle at center, #1a1c21 0%, #000 100%); border-bottom: 1px solid #222; margin-bottom: 30px; }
     .random-icon-box { font-size: 30px; color: #fbc531; margin-bottom: 20px; animation: pulseIcon 2s infinite; }
     .random-hero h1 { color: #fff; font-size: 30px; font-weight: 700; margin: 0; text-transform: uppercase; letter-spacing: 1px; }
     .random-hero p { color: #888; margin-top: 10px; font-size: 14px; max-width: 600px; margin-left: auto; margin-right: auto; }
     @keyframes pulseIcon { 0% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.1); opacity: 0.8; } 100% { transform: scale(1); opacity: 1; } }

     /* --- RESPONSIVIDADE (MOBILE E DESKTOP) --- */
     @media (max-width: 768px) {
         .dashboard-container { flex-direction: column; padding: 15px; } .dash-sidebar { width: 100%; margin-bottom: 20px; }
         
         .filter-super-container, .catalog-grid-wrapper, .dash-grid, #random-grid-target {
             padding-left: 15px !important; padding-right: 15px !important; width: 100% !important; box-sizing: border-box !important;
         }
         .catalog-grid-wrapper, #random-grid-target, .dash-grid {
             display: grid !important; grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important;
         }
         .custom-search-wrapper, .filter-select-box, .btn-filter-apply { width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; }
         
         /* --- CORREÇÃO DA BARRA A-Z --- */
         .alphabet-scroller { 
             overflow-x: auto !important; 
             flex-wrap: nowrap !important; /* Força linha única */
             padding-bottom: 10px; 
             margin-top: 15px;
             -webkit-overflow-scrolling: touch; 
         }
         /* Regra para as letras A-Z (Quadradas) */
         .alpha-btn {
             flex-shrink: 0 !important; 
             width: 40px !important; 
             height: 40px !important;
             font-size: 14px !important;
         }
         /* Regra EXCLUSIVA para o botão TODOS (Largo) */
         .alpha-btn.alpha-btn-all {
             width: auto !important; /* Deixa crescer */
             padding-left: 15px !important;
             padding-right: 15px !important;
         }
         .alphabet-scroller::-webkit-scrollbar { display: none; }
     }

     @media (min-width: 769px) { 
         .catalog-grid-wrapper {
             width: 100% !important; max-width: 100% !important; margin: 0 !important;
             padding-left: 35px !important; padding-right: 35px !important; box-sizing: border-box !important;
             display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 20px;
         }
         .filter-super-container { padding-left: 35px !important; padding-right: 35px !important; box-sizing: border-box !important; }
         .random-hero { max-width: 1000px !important; margin: 0 auto 30px auto !important; }
     }
	 
	 /* --- CSS GERAL --- */
        #login-screen-area { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 65vh; padding: 15px; background: #050505; }
        .login-box-card { background: #111; border: 1px solid #222; width: 100%; max-width: 340px; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.7); position: relative; z-index: 50; }
        .auth-tabs { display: flex; background: #0a0a0a; border-bottom: 1px solid #222; }
        .auth-tab { flex: 1; padding: 12px; text-align: center; cursor: pointer; font-size: 12px; font-weight: 800; color: #666; transition: 0.3s; border-bottom: 2px solid transparent; background: transparent; border: none; text-transform: uppercase; }
        .auth-tab.active { color: #fbc531; border-bottom-color: #fbc531; background: #161616; }
        .auth-body { padding: 25px 20px; }
        .input-group { margin-bottom: 12px; text-align: left; }
        .input-label { display: block; color: #ccc; font-size: 11px; margin-bottom: 4px; font-weight: 700; }
        .auth-input { width: 100%; background: #1f232b; border: 1px solid #333; color: #fff; padding: 10px 12px; border-radius: 6px; font-size: 13px; outline: none; transition: 0.3s; }
        .auth-input:focus { border-color: #fbc531; background: #16181d; }
        .btn-auth-action { width: 100%; background: #fbc531; color: #000; border: none; padding: 10px; border-radius: 6px; font-weight: 800; cursor: pointer; margin-top: 8px; font-size: 13px; text-transform: uppercase; }
        .forgot-pass-link { display: block; text-align: right; color: #888; font-size: 11px; margin-top: 6px; text-decoration: none; cursor: pointer; }
        .auth-divider { text-align: center; margin: 20px 0; position: relative; }
        .auth-divider::before { content: ''; position: absolute; top: 50%; left: 0; width: 100%; height: 1px; background: #222; z-index: 1; }
        .auth-divider span { background: #111; padding: 0 10px; color: #555; font-size: 10px; font-weight: 700; text-transform: uppercase; position: relative; z-index: 2; }
        .btn-login-google { width: 100%; background: #fff; color: #000; border: none; padding: 10px; border-radius: 6px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 12px; }
        #dashboard-active-area { display: none; }
        .modal-reset { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); z-index: 10000; align-items: center; justify-content: center; }
        .modal-box { background: #161616; padding: 25px; border-radius: 10px; border: 1px solid #333; max-width: 320px; width: 85%; text-align: center; }
        
        /* CSS DOS BOTÕES DESTRAVADOS */
        .dash-nav-tabs { position: relative; z-index: 100; display: flex; gap: 15px; margin-bottom: 20px; }
        .tab-link { cursor: pointer !important; pointer-events: auto !important; position: relative; }
        .filter-pill { cursor: pointer !important; pointer-events: auto !important; }
		
		
	.blog-pager {
       text-align: center;
       margin: 40px 0;
       display: flex;
       justify-content: center;
       gap: 10px;
       clear: both;
       width: 100%;
    }
    
    .btn-pagination {
       background: #16181d; /* Fundo Escuro (Igual imagem) */
       color: #fff;
       padding: 12px 25px;
       border-radius: 6px;
       font-weight: 700;
       font-size: 14px;
       text-decoration: none;
       transition: all 0.3s;
       border: 1px solid #2a2e38;
       display: flex;
       align-items: center;
       gap: 8px;
    }
    
    .btn-pagination:hover {
       background: #fbc531; /* Amarelo ao passar mouse */
       color: #000;
       border-color: #fbc531;
       transform: translateY(-2px);
    }
    
    /* Ícones menores */
    .btn-pagination i { font-size: 12px; }
	
	/* Estilo do Widget Flutuante */
#theme-switcher-widget {
    position: fixed;
    right: -220px; /* Escondido fora da tela */
    top: 50%;
    transform: translateY(-50%);
    width: 220px;
    background: #0f1014;
    border: 1px solid #1f232b;
    border-right: none;
    border-radius: 12px 0 0 12px;
    z-index: 999999;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: -5px 10px 30px rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
}
#theme-switcher-widget.open { right: 0; }

#theme-toggle-btn {
    position: absolute;
    left: -44px; /* Sai para fora do painel */
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #0f1014;
    color: #fff;
    border: 1px solid #1f232b;
    border-right: none;
    border-radius: 12px 0 0 12px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -5px 5px 15px rgba(0,0,0,0.5);
    transition: color 0.3s;
}
#theme-toggle-btn:hover { color: #fbc531; }

#theme-panel {
    padding: 20px 15px;
    width: 100%;
}
#theme-panel h4 {
    color: #fff;
    margin: 0 0 15px 0;
    font-size: 13px;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}
.theme-options {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.theme-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #1f232b;
    transition: transform 0.2s, border 0.2s;
}
.theme-dot:hover {
    transform: scale(1.2);
    border-color: #fff;
}

/* =========================================
   ESTILO NATIVO DOS COMENTÁRIOS WORDPRESS
   ========================================= */
#respond {
    background: #0b0c0f;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #1f232b;
    margin-top: 30px;
}
#reply-title {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}
.comment-form-comment textarea,
.comment-form-author input,
.comment-form-email input {
    width: 100%;
    background: #16181d;
    border: 1px solid #2a2e38;
    color: #fff;
    padding: 15px;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: 0.3s;
}
.comment-form-comment textarea:focus,
.comment-form-author input:focus,
.comment-form-email input:focus {
    border-color: #fbc531;
}
.form-submit .submit {
    background: #fbc531;
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.2s;
    font-family: 'Poppins', sans-serif;
}
.form-submit .submit:hover {
    transform: scale(1.05);
}
.comment-notes, .logged-in-as {
    color: #888;
    font-size: 12px;
    margin-bottom: 15px;
}

/* --- ESTILO DOS ITENS DO MENU --- */
.gocine-nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-item {
    color: #a5a5a5; /* Cor apagada para quem não está selecionado */
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    position: relative;
    padding: 10px 0;
    transition: 0.3s ease;
}

/* Efeito ao passar o mouse */
.nav-item:hover {
    color: #fff;
}

/* Efeito da linha amarela (pseudo-elemento) */
.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0; /* Começa escondida */
    height: 3px;
    background: #fbc531; /* Cor amarela do GoCine */
    border-radius: 50px;
    transition: 0.3s ease;
}

/* Quando passar o mouse, a linha estica */
.nav-item:hover::after {
    width: 100%;
}

/* --- ESTADO ATIVO (ONDE FOI CLICADO) --- */
.nav-item.active {
    color: #fbc531 !important; /* Texto fica amarelo */
}

.nav-item.active::after {
    width: 100%; /* Linha fica permanentemente aberta */
}

/* ==============================================================
   AVISOS FLUTUANTES (TOAST NOTIFICATIONS) - GOCINE
============================================================== */
.gocine-toast {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #fbc531; /* Amarelo padrão */
    color: #000;
    text-align: center;
    border-radius: 50px;
    padding: 12px 24px;
    position: fixed;
    z-index: 99999;
    left: 50%;
    bottom: 30px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.3s, bottom 0.3s;
}

.gocine-toast.show {
    visibility: visible;
    opacity: 1;
    bottom: 50px; /* Sobe um pouco para fazer uma animação elegante */
}

