@charset "UTF-8";
body {
  background: black;
  box-sizing: border-box;
  color: white;
  font-size: 1rem;
  height: 100dvh;
  width: 100dvw;
  overflow-x: hidden;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 24, 34, 0.75);
    backdrop-filter: blur(10px);
    z-index: 5;
    display: none;
    transition: all 0.3s ease;
}

.overlay.active {
    display: block;
} */
.header {
  display: flex;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 2.4% 0.7%;
  text-align: center;
  align-items: center;
  justify-content: space-between;
  background: black;
  z-index: 4;
}
.header__left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.header__left .title {
  display: flex;
  align-items: center;
  text-align: center;
  font-size: 1.1rem;
  gap: 0.5rem;
  text-wrap: nowrap;
}
.header__left .title__logo {
  height: 2.7rem;
  width: 2.7rem;
}
.header__left .separator {
  font-size: 1.5rem;
  text-align: center;
}
.header__left .button-subscrib {
  padding: 0.7rem;
  background: orange;
  color: white;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 700;
}
.header__left .button-subscrib__img {
  display: none;
}
.header__left .button-subscrib:hover {
  background: rgb(147, 135, 135);
}
.header__right {
  display: flex;
  text-align: center;
  align-items: center;
  gap: 0.5rem;
}
.header__right .search {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  /* Garante que o botão de pesquisa fique acima do fundo desfocado */
}
.header__right .search__input {
  width: 0;
  opacity: 0;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.header__right .search.active .search__input {
  width: 250px;
  opacity: 1;
  padding: 0.5rem 1rem;
  margin-right: 1rem;
  background: white;
  border-radius: 10px;
}
.header__right .search .lupa {
  width: 20px;
  height: 20px;
}
.header__right .buttons {
  display: flex;
  background: transparent;
  cursor: pointer;
  border: none;
  padding: 0.5rem;
  border-radius: 10px;
  font-size: 1rem;
  color: white;
}
.header__right .buttons:hover {
  background: rgb(153, 134, 134);
}
.header__right .button-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem;
  font-weight: 400;
  font-size: 0.9rem;
}
.header__right .button-profile__img {
  height: 1.5rem;
  width: 1.5rem;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.header__right .log-out {
  margin-right: 1.6rem;
}

.wrapper {
  display: flex;
  flex-direction: column;
  margin: 0;
  gap: 2rem;
  height: 70dvh;
  width: 100dvw;
  background-image: linear-gradient(to right, #000, rgba(255, 255, 255, 0)), url("/cyberblaze-games/assets/imgs/wrappers/webp/ghost-wire.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
  padding: 8% 0 5% 5%;
  transition: background-image 1s ease-in-out, opacity 1s ease-in-out;
  /* Adicionada transição para o fundo e opacidade */
}
.wrapper .wrapper > div {
  opacity: 0;
  /* Começa com opacidade 0 */
  transition: opacity 1s ease-in-out;
  /* Transição suave de opacidade */
}
.wrapper .background-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 0.6s ease-in-out;
  opacity: 1;
}
.wrapper-1, .wrapper-2, .wrapper-3, .wrapper-4, .wrapper-5 {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.wrapper-1__img, .wrapper-2__img, .wrapper-3__img, .wrapper-4__img, .wrapper-5__img {
  height: 10rem;
  width: 14rem;
}
.wrapper-1__titles, .wrapper-2__titles, .wrapper-3__titles, .wrapper-4__titles, .wrapper-5__titles {
  display: flex;
  margin-right: 30%;
  gap: 1rem;
  flex-direction: column;
}
.wrapper-1__titles .title, .wrapper-2__titles .title, .wrapper-3__titles .title, .wrapper-4__titles .title, .wrapper-5__titles .title {
  font-size: 2.2rem;
  font-weight: 700;
}
.wrapper-1__titles .subtitle, .wrapper-2__titles .subtitle, .wrapper-3__titles .subtitle, .wrapper-4__titles .subtitle, .wrapper-5__titles .subtitle {
  font-size: 1.7rem;
  text-wrap: wrap;
  font-weight: 500;
}
.wrapper-1 .play, .wrapper-2 .play, .wrapper-3 .play, .wrapper-4 .play, .wrapper-5 .play {
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  font-size: 1rem;
  padding: 1rem 3.5rem;
  background: orange;
  color: white;
  border-radius: 10px;
  font-weight: 400;
}
.wrapper__buttons-background {
  display: flex;
  gap: 0.9rem;
}
.wrapper__buttons-background .scroll {
  background: rgb(127, 130, 133);
  padding: 0.1rem 1rem;
  border-radius: 10px;
  transition: transform 0.2s ease;
}
.wrapper__buttons-background .scroll:hover {
  cursor: pointer;
  background: orange;
}
.wrapper__buttons-background .scroll.active {
  background: orange;
  /* Altere para azul quando o botão for ativo */
  transform: scale(1.7);
  /* Expande o botão quando ativo */
}
.wrapper-navbar {
  position: relative;
  bottom: 0;
}
.wrapper-navbar .navbar {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 1rem;
}
.wrapper-navbar .navbar .buttons {
  display: flex;
  gap: 1rem;
}
.wrapper-navbar .navbar .buttons .tab-button.active {
  border-bottom: 3px solid orange;
}
.wrapper-navbar .navbar .buttons .tab-button {
  white-space: normal;
  font-size: 0.7rem;
  all: unset;
  color: rgb(244, 243, 243);
  padding: 0 0.5rem;
  border-bottom: 3px solid rgb(127, 130, 133);
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  align-items: center;
}
.wrapper-navbar .navbar .buttons .tab-button:hover {
  border-bottom: 3px solid orange;
  cursor: pointer;
}
.wrapper-navbar .filters {
  display: flex;
  gap: 0.5rem;
}
.wrapper-navbar .filters .filter--active {
  border-bottom: 3px solid orange;
}
.wrapper-navbar .filters .button {
  white-space: normal;
  position: relative;
  display: flex;
  font-size: 1rem;
  background: rgb(93, 88, 88);
  color: white;
  border-radius: 7px;
  padding: 1rem 2rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: center;
  gap: 0.5rem;
}
.wrapper-navbar .filters .button .button__check {
  position: absolute;
  opacity: 0;
  /* Esconde o checkbox original */
  pointer-events: none;
  /* Impede que o checkbox original receba cliques */
}
.wrapper-navbar .filters .button .custom-check {
  width: 20px;
  height: 20px;
  border-radius: 30%;
  background-color: #ccc;
  position: relative;
  transition: background-color 0.3s ease;
}
.wrapper-navbar .filters .button .custom-check::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 12px;
  height: 12px;
  background-color: white;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s ease;
}
.wrapper-navbar .filters .button .button__check:checked + .custom-check {
  background-color: #b57521;
}
.wrapper-navbar .filters .button .button__check:checked + .custom-check::after {
  transform: scale(1);
}
.wrapper-navbar .filters .button .button__label {
  font-size: 1rem;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.wrapper-navbar .filters__list .list {
  display: none;
}

.content-panel {
  /* Mostra apenas a seção ativa */
}
.content-panel .content-section.active {
  display: block;
}
.content-panel .content-section {
  display: none;
}
.content-panel .content-section .nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-left: 5%;
}
.content-panel .content-section .nav-list .nav-item {
  flex-grow: 1;
}
.content-panel .content-section .nav-list .nav-item:hover .bnt-play,
.content-panel .content-section .nav-list .nav-item:hover .bnt-add {
  display: block;
}
.content-panel .content-section .nav-list .nav-item__container {
  position: relative;
  width: 100%;
  display: flex;
  text-align: center;
  align-items: center;
}
.content-panel .content-section .nav-list .nav-item__container .img {
  width: 180px;
  height: 180px;
  border-radius: 1rem;
}
.content-panel .content-section .nav-list .nav-item__container .bnt-play {
  display: none;
  position: absolute;
  bottom: 5%;
  left: 3%;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  font-size: 1rem;
  padding: 0.6rem 2rem;
  background: rgb(28, 15, 214);
  color: white;
  border-radius: 10px;
  font-weight: 400;
  cursor: pointer;
}
.content-panel .content-section .nav-list .nav-item__container .bnt-play:hover {
  background: orange;
}
.content-panel .content-section .nav-list .nav-item__container .bnt-add {
  display: none;
  position: absolute;
  bottom: 10%;
  right: 5%;
  cursor: pointer;
  border: none;
  padding: 0.3rem 0.7rem;
  border-radius: 10px;
}
.content-panel .content-section .nav-list .nav-item__container .bnt-add:hover {
  background: orange;
}

.footer {
  display: flex;
  justify-content: center;
}
.footer .name {
  font-size: 1.2rem;
  padding: 1rem;
  color: rgb(180, 140, 65);
  font-weight: bold;
}
.footer .name .link {
  text-decoration: none;
  color: white;
}

@media screen and (min-width: 0px) and (max-width: 600px) {
  .header {
    padding: 2.4% 2%;
  }
  .header__left {
    gap: 0.7rem;
  }
  .header__left .title__logo {
    height: 2.2rem;
    width: 2.2rem;
  }
  .header__left .title__name {
    display: none;
  }
  .header__left .separator {
    display: none;
  }
  .header__left .button-subscrib {
    padding: 0.6rem 0.5rem;
    border-radius: 7px;
  }
  .header__left .button-subscrib__img {
    display: block;
  }
  .header__left .button-subscrib__name {
    display: none;
  }
  .header__right {
    gap: 0.8rem;
  }
  .header__right .search {
    display: flex;
    height: 1rem;
    width: 1.5rem;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
  }
  .header__right .search.active .search__input {
    width: 130px;
    opacity: 1;
    padding: 0.3rem 0.8rem;
    font-size: 0.9rem;
  }
  .header__right .question {
    display: none;
  }
  .header__right .button-profile {
    margin-right: 1rem;
    padding: 0.5rem;
  }
  .header__right .button-profile__img {
    height: 1.5rem;
    width: 1.5rem;
  }
  .header__right .button-profile__name {
    display: none;
  }
  .header__right .log-out {
    display: none;
  }
}
@media screen and (min-width: 0px) and (max-width: 600px) {
  .wrapper {
    width: 100%;
    height: 70dvh;
    padding: 0 0 5% 5%;
  }
  .wrapper-1, .wrapper-2, .wrapper-3, .wrapper-4, .wrapper-5 {
    padding-top: 20%;
  }
  .wrapper-1__img, .wrapper-2__img, .wrapper-3__img, .wrapper-4__img, .wrapper-5__img {
    height: 6rem;
    width: 9rem;
  }
  .wrapper-1__titles, .wrapper-2__titles, .wrapper-3__titles, .wrapper-4__titles, .wrapper-5__titles {
    display: flex;
    margin-right: 10%;
    gap: 1rem;
    flex-direction: column;
  }
  .wrapper-1__titles .title, .wrapper-2__titles .title, .wrapper-3__titles .title, .wrapper-4__titles .title, .wrapper-5__titles .title {
    font-size: 1.5rem;
    font-weight: 700;
  }
  .wrapper-1__titles .subtitle, .wrapper-2__titles .subtitle, .wrapper-3__titles .subtitle, .wrapper-4__titles .subtitle, .wrapper-5__titles .subtitle {
    font-size: 1.4rem;
    text-wrap: wrap;
    font-weight: 500;
  }
  .wrapper-1 .play, .wrapper-2 .play, .wrapper-3 .play, .wrapper-4 .play, .wrapper-5 .play {
    width: -moz-fit-content;
    width: fit-content;
    border: none;
    font-size: 1rem;
    padding: 0.8rem 2rem;
  }
  .wrapper__buttons-background {
    gap: 0.6rem;
  }
  .wrapper__buttons-background .scroll {
    padding: 0.1rem 0.6rem;
    border-radius: 10px;
  }
  .wrapper__buttons-background .scroll.active {
    transform: scale(1.6);
    /* Expande o botão quando ativo */
  }
  .wrapper-navbar .navbar .buttons {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding-bottom: 0.5rem;
    scrollbar-width: auto;
    scrollbar-color: #888 #333;
  }
  .wrapper-navbar .navbar .buttons::-webkit-scrollbar {
    height: 8px;
  }
  .wrapper-navbar .navbar .buttons::-webkit-scrollbar-track {
    background: #222;
  }
  .wrapper-navbar .navbar .buttons::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 10px;
  }
  .wrapper-navbar .navbar .buttons .tab-button.active {
    border-bottom: 3px solid orange;
  }
  .wrapper-navbar .navbar .buttons .tab-button {
    flex: 0 0 auto;
    white-space: normal;
    font-size: 0.7rem;
  }
  .wrapper-navbar .filters {
    display: none;
  }
  .wrapper-navbar .filters .filter--active {
    border-bottom: 3px solid orange;
  }
  .wrapper-navbar .filters .button {
    white-space: normal;
    position: relative;
    display: flex;
    font-size: 1rem;
    background: rgb(93, 88, 88);
    color: white;
    border-radius: 7px;
    padding: 1rem 2rem;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    align-items: center;
    gap: 0.5rem;
  }
  .wrapper-navbar .filters .button .button__check {
    position: absolute;
    opacity: 0;
    /* Esconde o checkbox original */
    pointer-events: none;
    /* Impede que o checkbox original receba cliques */
  }
  .wrapper-navbar .filters .button .custom-check {
    width: 20px;
    height: 20px;
    border-radius: 30%;
    background-color: #ccc;
    position: relative;
    transition: background-color 0.3s ease;
  }
  .wrapper-navbar .filters .button .custom-check::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 12px;
    height: 12px;
    background-color: white;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
  }
  .wrapper-navbar .filters .button .button__check:checked + .custom-check {
    background-color: #b57521;
  }
  .wrapper-navbar .filters .button .button__check:checked + .custom-check::after {
    transform: scale(1);
  }
  .wrapper-navbar .filters .button .button__label {
    font-size: 1rem;
    font-weight: 500;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .wrapper-navbar .filters__list .list {
    display: none;
  }
}
@media screen and (min-width: 0px) and (max-width: 500px) {
  .content-panel .content-section .nav-list .nav-item {
    width: calc(50% - 0.5rem);
    max-width: 400px;
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: calc(50% - 0.5rem);
  }
  .content-panel .content-section .nav-list .nav-item:hover .bnt-play,
  .content-panel .content-section .nav-list .nav-item:hover .bnt-add {
    display: inline-block;
  }
  .content-panel .content-section .nav-list .nav-item__container {
    position: relative;
    display: inline-block;
    display: flex;
    text-align: center;
    align-items: center;
  }
  .content-panel .content-section .nav-list .nav-item__container .img {
    width: 100%;
    height: 100%;
    display: block;
  }
  .content-panel .content-section .nav-list .nav-item__container .bnt-play {
    display: none;
    position: absolute;
    bottom: 5%;
    left: 5%;
    width: -moz-fit-content;
    width: fit-content;
    border: none;
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
    background: rgb(28, 15, 214);
    color: white;
    border-radius: 10px;
    font-weight: 400;
    cursor: pointer;
  }
  .content-panel .content-section .nav-list .nav-item__container .bnt-play:hover {
    background: orange;
  }
  .content-panel .content-section .nav-list .nav-item__container .bnt-add {
    display: none;
    position: absolute;
    bottom: 10%;
    right: 5%;
    cursor: pointer;
    border: none;
    padding: 0.3rem 0.7rem;
    border-radius: 10px;
  }
  .content-panel .content-section .nav-list .nav-item__container .bnt-add:hover {
    background: orange;
  }
}
@media screen and (min-width: 601px) and (max-width: 777px) {
  .header {
    padding: 2.4% 2%;
  }
  .header__left {
    gap: 1.1rem;
  }
  .header__left .title {
    font-size: 1.1rem;
  }
  .header__left .title__logo {
    height: 2.5rem;
    width: 2.5rem;
  }
  .header__left .separator {
    display: none;
  }
  .header__left .button-subscrib {
    padding: 0.6rem 0.5rem;
    border-radius: 7px;
  }
  .header__left .button-subscrib__img {
    display: block;
  }
  .header__left .button-subscrib__name {
    display: none;
  }
  .header__right {
    gap: 1rem;
  }
  .header__right .search {
    display: flex;
    height: 1.5rem;
    width: 1.5rem;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
  }
  .header__right .search.active .search__input {
    padding-right: 1rem;
    width: 180px;
  }
  .header__right .question {
    display: none;
  }
  .header__right .button-profile {
    margin-right: 1.7rem;
    padding: 0.5rem;
  }
  .header__right .button-profile__img {
    height: 1.5rem;
    width: 1.5rem;
  }
  .header__right .button-profile__name {
    display: none;
  }
  .header__right .log-out {
    display: none;
  }
}
@media screen and (min-width: 777px) and (max-width: 920px) {
  .header {
    padding: 2.4% 2%;
  }
  .header__left {
    gap: 1.1rem;
  }
  .header__left .title__logo {
    height: 2.5rem;
    width: 2.5rem;
  }
  .header__left .separator {
    display: none;
  }
  .header__left .button-subscrib {
    padding: 0.6rem 0.5rem;
    border-radius: 7px;
  }
  .header__left .button-subscrib__img {
    display: block;
  }
  .header__left .button-subscrib__name {
    display: none;
  }
  .header__right .search {
    position: relative;
    display: flex;
    height: 1.5rem;
    width: 1.5rem;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
  }
  .header__right .search.active .search__input {
    padding-right: 1rem;
    width: 220px;
  }
  .header__right .question {
    display: none;
  }
  .header__right .button-profile {
    margin-right: 0;
    padding: 0.5rem;
  }
}/*# sourceMappingURL=styles.css.map */