/*
Theme Name: RBC Play
Theme URI: https://redebestcomunicacao.com.br
Author: RBC
Description: Tema estilo streaming (Netflix-like) para RBC Play
Version: 1.0
*/

/* ======================================
   RESET BASICO
====================================== */

body {
  margin: 0;
  padding-top: 80px;
  background: #000;
  color: white;
  font-family: Arial, sans-serif;
}

a {
  text-decoration: none;
}

/* ======================================
   HEADER FIXO
====================================== */

.rbc-topbar {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  z-index: 999;
}

.rbc-search {
  width: 180px;
  border-radius: 25px;
  border: none;
  padding-left: 15px;
  font-size: 0.9rem;
}

.navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

/* ======================================
   MENU
====================================== */

.rbc-menu {
  background: #000;
  padding: 15px 0;
}

.rbc-menu a {
  color: rgba(255,255,255,0.75);
  margin: 0 15px;
  font-weight: 500;
  transition: 0.3s;
}

.rbc-menu a:hover {
  color: white;
}

/* ======================================
   HERO BANNER
====================================== */

.rbc-hero {
  position: relative;
  height: 85vh;
  background: url("https://picsum.photos/1920/1080")
    center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,1),
    rgba(0,0,0,0.35)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: bold;
}

.hero-description {
  font-size: 1.2rem;
  margin: 20px 0;
  color: rgba(255,255,255,0.85);
}

/* ======================================
   SECTIONS
====================================== */

.rbc-section {
  margin-top: 50px;
}

.section-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.rbc-row {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 15px;
}

.rbc-row::-webkit-scrollbar {
  display: none;
}

/* ======================================
   TOP 10
====================================== */

.rbc-card {
  position: relative;
  min-width: 260px;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s;
}

.rbc-card img {
  width: 100%;
}

.rbc-card:hover {
  transform: scale(1.12);
  z-index: 10;
}

.top-number {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 3rem;
  font-weight: bold;
  text-shadow: 2px 2px 10px black;
}

/* ======================================
   RECENTES
====================================== */

.recent-card {
  min-width: 220px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s;
}

.recent-card img {
  width: 100%;
}

.recent-card:hover {
  transform: scale(1.08);
}

/* ======================================
   FORMATOS DIFERENTES
====================================== */

.tv-card,
.podcast-card,
.radio-card,
.cover-card {
  cursor: pointer;
  transition: 0.3s;
  border-radius: 14px;
  overflow: hidden;
}

.tv-card:hover,
.podcast-card:hover,
.radio-card:hover,
.cover-card:hover {
  transform: scale(1.1);
  z-index: 10;
}

/* TV */
.tv-card {
  min-width: 380px;
}

/* Podcast */
.podcast-card {
  min-width: 380px;
}

/* R¨˘dio */
.radio-card {
  min-width: 170px;
}

/* ======================================
   FILMES (COVER VERTICAL 200x300)
====================================== */

.cover-card {
  min-width: 200px;
  max-width: 200px;
  height: 300px;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
}

.cover-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cover-card:hover {
  transform: scale(1.1);
  z-index: 10;
}

/* ======================================
   FOOTER
====================================== */

.rbc-footer {
  background: rgba(15, 15, 15, 0.95);
  padding: 50px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.footer-social a {
  font-size: 1.8rem;
  margin: 0 12px;
  color: rgba(255,255,255,0.75);
  transition: 0.3s;
}

.footer-social a:hover {
  color: white;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
}

.footer-links a:hover {
  color: white;
}

.footer-copy {
  margin-top: 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

/* ======================================
   SINGLE (DETALHE)
====================================== */

.rbc-poster {
  width: 200px;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 12px;
}

.rbc-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rbc-title {
  font-size: 2.8rem;
  font-weight: bold;
}

.rbc-meta {
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
}

.rbc-genres span {
  background: rgba(255,255,255,0.1);
  padding: 5px 10px;
  border-radius: 6px;
  margin-right: 5px;
  font-size: 0.85rem;
}

.rbc-description {
  margin-top: 15px;
  max-width: 700px;
}

/* ======================================
   WATCH PAGE
====================================== */

.rbc-watch-player {
  width: 100%;
  height: 70vh;
  background: black;
}

.rbc-watch-player iframe,
.rbc-watch-player video {
  width: 100%;
  height: 100%;
  border: none;
}

.rbc-watch-info {
  padding: 30px;
}

.watch-title {
  font-size: 2.5rem;
  font-weight: bold;
}

.watch-meta {
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
}

.watch-desc {
  max-width: 800px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.watch-actions .btn {
  border-radius: 12px;
  font-weight: bold;
  margin-right: 10px;
}

/* Epis¨Ždios */

.rbc-episodes {
  padding: 20px 30px;
}

.episode-row {
  display: flex;
  gap: 15px;
  overflow-x: auto;
}

.episode-card {
  min-width: 250px;
  cursor: pointer;
  transition: 0.3s;
}

.episode-card img {
  width: 100%;
  border-radius: 12px;
}

.episode-card:hover {
  transform: scale(1.1);
}

/* ======================================
   RESPONSIVO
====================================== */

@media (max-width: 991px) {

  .rbc-menu {
    display: none;
  }

  .rbc-search {
    width: 120px;
  }

  .tv-card,
  .podcast-card {
    min-width: 280px;
  }
}

@media (max-width: 768px) {

  .hero-title {
    font-size: 2.2rem;
  }

  .rbc-card {
    min-width: 200px;
  }

  .recent-card {
    min-width: 170px;
  }

  .cover-card {
    min-width: 150px;
    max-width: 150px;
    height: 225px;
  }

  .radio-card {
    min-width: 130px;
  }

  .top-number {
    font-size: 2.2rem;
  }

  .rbc-watch-player {
    height: 45vh;
  }

  .watch-title {
    font-size: 1.7rem;
  }
}