*,
*:before,
*:after {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  background: linear-gradient(-45deg, #000000, #1a1a1a);
  background-size: 400% 400%;
  animation: gradient 5s ease infinite;
}

img {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 80px;
  border-radius: 5px 5px 0px 0px;
  cursor: pointer;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
header {
  display: flex;
  padding: 0 1rem;
  align-items: center;
  width: 360px;
  border-radius: 5px;
  overflow: hidden;
}
header .header-logo {
  display: flex;
  margin: 1.5rem auto;
  width: 150px;
  padding: 0.5rem 0;
}
header .floating {
  animation-name: floating;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
@keyframes floating {
  0% {
    transform: translate(0, 0px);
  }
  50% {
    transform: translate(0, 15px);
  }
  100% {
    transform: translate(0, 0px);
  }
}
header .header-button {
  background-color: transparent;
  border: none;
}

.about-container {
  align-items: center;
  width: 360px;
  text-align: center;
}
.about-container .about-description,
.about-container .about-description2 {
  font-weight: bold;
  color: #f9f9f9;
}

.about-container-teste {
  display: flex;
  justify-content: center;
}

.banner-container {
  width: 360px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.most-played-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.most-played-container .most-played-title {
  color: #f9f9f9;
}
.most-played-container .most-played-btns {
  display: flex;
  justify-content: center;
}
.most-played-container .bi-arrow-left-circle-fill,
.most-played-container .bi-arrow-right-circle-fill {
  color: white;
  font-size: 1.5rem;
  border-radius: 100%;
  cursor: pointer;
}
.most-played-container .most-played-btn-prev,
.most-played-container .most-played-btn-next {
  background-color: transparent;
  border: none;
}

.most-played-games-container {
  position: relative;
  overflow: hidden;
  width: 360px;
}
.most-played-games-container .most-played-games {
  gap: 12.4px;
  display: flex;
}
.most-played-games-container .mp-game-item {
  border-radius: 5px;
  background-color: #1a1a1a;
  color: #f9f9f9;
  text-align: center;
  transition: transform 0.5s ease;
}
.most-played-games-container .mp-game-description {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin: 0.2rem 0;
  font-weight: bold;
}

.plataform-title {
  text-align: center;
  font-size: 1.5rem;
  color: #f9f9f9;
}

.plataform-container {
  display: flex;
  width: 360px;
  height: 220px;
  background: #1a1a1a;
  display: flex;
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
  justify-content: center;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.plataform-container .block-col {
  display: flex;
  height: 100%;
  margin: 0 auto;
  gap: 10px;
  width: 60px;
  flex-shrink: 0;
}
.plataform-container .block {
  position: relative;
  height: 60px;
  width: 100%;
  border-radius: 5px;
  margin: auto 0;
  will-change: transform;
}
.plataform-container .block:not(.block--active) {
  cursor: pointer;
}
.plataform-container .block:not(.block--active):hover, .plataform-container .block:not(.block--active).fake-hover {
  transform: translateY(-12px);
}
.plataform-container .block:not(.block--active):hover:after, .plataform-container .block:not(.block--active).fake-hover:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: scale(1.1) translateY(12px);
}
.plataform-container .block:not(.block--active):active {
  transform: scale(0.9) translateY(-12px);
}
.plataform-container .block--active {
  position: absolute;
  left: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
}
.plataform-container .block--transition {
  transition: transform 0.185s cubic-bezier(0.4, 0, 0, 1);
}

.block-content {
  display: none;
  padding: 24px;
  font-weight: bold;
}
.block--active .block-content {
  display: block;
}

.block-content__header {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: rgba(0, 0, 0, 0.1);
  margin: -24px -24px 30px;
  gap: 100px;
  overflow: hidden;
}

.block-content__header__text {
  color: #f9f9f9;
  will-change: transform;
  opacity: 0;
  margin: 0;
  padding: 0;
  align-items: center;
  text-align: center;
  font-size: 2rem;
}
.block--active .block-content__header__text {
  animation: content-in 0.225s cubic-bezier(0, 0, 0.2, 1) forwards;
  animation-delay: 0.15s;
}
.block-content__header__text .block-content__button {
  font-weight: bold;
  text-align: center;
  animation: button-in 0.245s cubic-bezier(0, 0, 0.2, 1) forwards;
  opacity: 0;
  color: #1a1a1a;
  cursor: pointer;
  margin-bottom: 0.8rem;
  align-items: center;
}

.block-content__body {
  text-align: center;
  will-change: transform;
  opacity: 0;
  font-size: 18px;
  line-height: 1.333;
  animation: content-in 0.245s cubic-bezier(0, 0, 0.2, 1) forwards;
  animation-delay: 0.1s;
  margin: 0 0 20px;
}

.block-content__button-join {
  text-align: center;
  font-weight: bold;
  margin: 0.5rem 0;
  padding: 16px;
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.85);
  animation: button-in 0.245s cubic-bezier(0, 0, 0.2, 1) forwards;
  animation-delay: 0.2s;
  opacity: 0;
  cursor: pointer;
}

.bi-x-circle-fill {
  position: relative;
  font-size: 1.5rem;
  cursor: pointer;
}

@keyframes content-in {
  0% {
    opacity: 0;
    transform: translateY(128px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes button-in {
  0% {
    opacity: 0;
    transform: translateY(64px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.BRAVOBET {
  background: #b51616;
  color: #061f46;
  border-top: 2px solid #70a4f4;
  background-image: url(../../images/igaming/plataforms/bravobet.png);
  background-size: 100%;
}
.BRAVOBET:not(.block--active) {
  border-bottom: 2px solid #8d0c0c;
  box-shadow: 0 8px 8px -8px #8d0c0c, 0 12px 12px -8px rgba(240, 65, 65, 0.4);
}
.BRAVOBET.block--active {
  background: #f5f7fb;
}
.BRAVOBET .block-content__header {
  background: #b51616;
}
.BRAVOBET .block-content__button-join {
  background: #b51616;
  border-bottom: 2px solid #b51616;
  border-top: 2px solid #70a4f4;
}

.r {
  background: #4186f0;
  color: #061f46;
  border-top: 2px solid #70a4f4;
  background-image: url(../../images/igaming/plataforms/playpix.jpeg);
  background-size: 100%;
}
.r:not(.block--active) {
  border-bottom: 2px solid #1368eb;
  box-shadow: 0 8px 8px -8px #115ed4, 0 12px 12px -8px rgba(65, 134, 240, 0.4);
}
.r.block--active {
  background: #f5f7fb;
}
.r .block-content__header {
  background: #4186f0;
}
.r .block-content__button-join {
  background: #4186f0;
  border-bottom: 2px solid #1368eb;
  border-top: 2px solid #70a4f4;
}

.b {
  background: #4bffaa;
  color: #006535;
  border-top: 2px solid #7effc2;
  background-image: url(../../images/igaming/plataforms/realsbet.jpeg);
  background-size: 100%;
}
.b:not(.block--active) {
  border-bottom: 2px solid #18ff92;
  box-shadow: 0 8px 8px -8px #00fe86, 0 12px 12px -8px rgba(75, 255, 170, 0.4);
}
.b.block--active {
  background: white;
}
.b .block-content__header {
  background: #4bffaa;
}
.b .block-content__button-join {
  background: #4bffaa;
  border-bottom: 2px solid #18ff92;
  border-top: 2px solid #7effc2;
}

.y {
  background: #8a20fd;
  color: #1b0037;
  border-top: 2px solid #a553fd;
  background-image: url(../../images/igaming/plataforms/dupoc.jpg);
  background-size: 100%;
}
.y:not(.block--active) {
  border-bottom: 2px solid #7002e8;
  box-shadow: 0 8px 8px -8px #6402cf, 0 12px 12px -8px rgba(138, 32, 253, 0.4);
}
.y.block--active {
  background: #eee4f8;
}
.y .block-content__header {
  background: #8a20fd;
}
.y .block-content__button-join {
  background: #8a20fd;
  border-bottom: 2px solid #7002e8;
  border-top: 2px solid #a553fd;
}

.m {
  background: rgb(226, 16, 33);
  color: #0c0102;
  border-top: 2px solid #f13444;
  background-image: url(../../images/igaming/plataforms/mma.jpg);
  background-size: 100%;
}
.m:not(.block--active) {
  border-bottom: 2px solid #b20d1a;
  box-shadow: 0 8px 8px -8px #9b0b17, 0 12px 12px -8px rgba(226, 16, 33, 0.4);
}
.m.block--active {
  background: #ebc7ca;
}
.m .block-content__header {
  background: rgb(226, 16, 33);
}
.m .block-content__button-join {
  background: rgb(226, 16, 33);
  border-bottom: 2px solid #b20d1a;
  border-top: 2px solid #f13444;
}

.e {
  background: rgb(11, 26, 238);
  color: #010213;
  border-top: 2px solid #3643f6;
  background-image: url(../../images/igaming/plataforms/elisabet.png);
  background-size: 100%;
}
.e:not(.block--active) {
  border-bottom: 2px solid #0915bd;
  box-shadow: 0 8px 8px -8px #0812a5, 0 12px 12px -8px rgba(11, 26, 238, 0.4);
}
.e.block--active {
  background: #cacdee;
}
.e .block-content__header {
  background: rgb(11, 26, 238);
}
.e .block-content__button-join {
  background: rgb(11, 26, 238);
  border-bottom: 2px solid #0915bd;
  border-top: 2px solid #3643f6;
}

.c {
  background: rgb(38, 123, 250);
  color: #011839;
  border-top: 2px solid #5899fb;
  background-image: url(../../images/igaming/plataforms/cassino-pix.png);
  background-size: 100%;
}
.c:not(.block--active) {
  border-bottom: 2px solid #0560e8;
  box-shadow: 0 8px 8px -8px #0556cf, 0 12px 12px -8px rgba(38, 123, 250, 0.4);
}
.c.block--active {
  background: #e7eef8;
}
.c .block-content__header {
  background: rgb(38, 123, 250);
}
.c .block-content__button-join {
  background: rgb(38, 123, 250);
  border-bottom: 2px solid #0560e8;
  border-top: 2px solid #5899fb;
}

.k {
  background: #09eb1c;
  color: #010e02;
  border-top: 2px solid #30f741;
  background-image: url(../../images/igaming/plataforms/bet7k.jpg);
  background-size: 100%;
}
.k:not(.block--active) {
  border-bottom: 2px solid #07ba16;
  box-shadow: 0 8px 8px -8px #06a113, 0 12px 12px -8px rgba(9, 235, 28, 0.4);
}
.k.block--active {
  background: #c6edc9;
}
.k .block-content__header {
  background: #09eb1c;
}
.k .block-content__button-join {
  background: #09eb1c;
  border-bottom: 2px solid #07ba16;
  border-top: 2px solid #30f741;
}

.latest-winner-title {
  color: #f9f9f9;
  display: flex;
  justify-content: space-around;
  font-size: 1.5rem;
}

#latest-winner-container {
  height: 280px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.latest-winner-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.lw-container {
  color: #f9f9f9;
  margin: 0.5rem auto;
  background: #1a1a1a;
  display: flex;
  border-radius: 5px;
  line-height: 10px;
  align-items: center;
  justify-content: space-evenly;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.lw-container.show {
  opacity: 1;
  padding: 0.5rem;
}

.lw-container.hide {
  opacity: 0;
}

.lw-title {
  width: 80px;
  font-weight: bold;
}

.lw-card-game {
  border-radius: 5px;
  width: 50px;
  transition: 0.5s all ease;
}

#lw-card-game {
  cursor: pointer;
  transition: cursor 0.3s ease;
  transition: 0.5s all ease;
}

.lw-value {
  color: #04d088;
  font-weight: bold;
}

.ball {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #1a1a1a;
  border-radius: 50%;
  margin: 0 5px;
  animation: bounce 0.6s infinite alternate;
}

.ball:nth-child(1) {
  animation: bounce-1 2.1s ease-in-out infinite;
}

@keyframes bounce-1 {
  50% {
    transform: translateY(-18px);
  }
}
.ball:nth-child(2) {
  animation: bounce-3 2.1s ease-in-out 0.3s infinite;
}

@keyframes bounce-2 {
  50% {
    transform: translateY(-18px);
  }
}
.ball:nth-child(3) {
  animation: bounce-3 2.1s ease-in-out 0.6s infinite;
}

@keyframes bounce-3 {
  50% {
    transform: translateY(-18px);
  }
}
.socials-container {
  width: 360px;
  justify-content: center;
  gap: 10px;
  display: flex;
  margin: 1rem auto;
}

.socialContainer {
  background: #1a1a1a;
  background-size: 400% 400%;
  animation: gradient 5s ease infinite;
  width: 52px;
  height: 52px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition-duration: 0.3s;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.containerOne:hover {
  background-color: #00acee;
  transition-duration: 0.3s;
}

.containerTwo:hover {
  background-color: green;
  transition-duration: 0.3s;
}

.containerThree:hover {
  background-color: #1741b6;
  transition-duration: 0.3s;
}

.containerFour:hover {
  background-color: rgb(240, 9, 125);
  transition-duration: 0.3s;
}

.socialContainer:active {
  transform: scale(0.9);
  transition-duration: 0.3s;
}

.socialSvg {
  width: 18px;
}

.socialSvg path {
  fill: white;
}

.socialContainer:hover .socialSvg {
  animation: slide-in-top 0.3s both;
}

@keyframes slide-in-top {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.download-container {
  width: 360px;
  display: flex;
  color: #f9f9f9;
  border-radius: 5px;
  margin-top: 0.5rem;
  gap: 10px;
}
.download-container .download-item {
  width: 200px;
  display: flex;
  justify-content: center;
  padding: 0.5rem 0;
  border-radius: 5px;
  background-color: #1a1a1a;
  text-align: start;
  align-items: center;
  gap: 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}


.aulas {
  width: 360px;
  display: flex;
  justify-content: center;
  color: #f9f9f9;
  border-radius: 5px;
  margin-top: 0.5rem;
  gap: 10px;
}
.aulas .aulas-item {
  width: 300px;
  height: 50px;
  display: flex;
  justify-content: center;
  padding: 0.5rem 0;
  border-radius: 5px;
  background-color: #1a1a1a;
  text-align: start;
  align-items: center;
  gap: 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
          
}


.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  border: 1px solid #ccc;
  background-color: #fff;
  display: none;
}

.popup button {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: bold;
  border-radius: 4px;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 5px;
  padding-bottom: 10px;
  color: #ffffff;
  background-color: #29b516;
  outline: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: .4s;
}

.popup sair {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: bold;
  border-radius: 50%; /* Torna o botão redondo */
  padding: 10px; /* Adiciona espaço interno ao botão */
  color: #ffffff;
  background-color: #8b0000; /* Vermelho escuro */
  outline: none;
  border: none;
  cursor: pointer;
  position: absolute; /* Define a posição absoluta para o canto direito */
  top: 10px; /* Distância do topo */
  right: 10px; /* Distância da direita */
  transition: .4s;
}

.popup-sair:hover {
  background-color: #660000; /* Altera a cor de fundo ao passar o mouse */
}




footer {
  text-align: center;
  color: #f9f9f9;
  padding-bottom: 1rem;
}

.title {
  text-align: center;
  color: #f9f9f9;
}

.bi {
  color: #f9f9f9;
}

.bi-arrow-left-circle-fill::before,
.bi-person-circle {
  color: white;
  font-size: 1.5rem;
}

.grid-container2 {
  width: 360px;
  margin-top: 1rem;
  display: grid;
  grid-template-rows: repeat(1, 1fr);
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

a {
  text-decoration: none;
  color: #f9f9f9;
}

.categoriestexto {
  width: 360px;
  text-align: center;
  background-color: #1a1a1a;
  color: #f9f9f9;
  border-radius: 5px;
  display: flex; /* Adiciona flexbox */
  justify-content: center; /* Centraliza horizontalmente */
  align-items: center; /* Centraliza verticalmente */
}


.categories {
  width: 360px;
  text-align: center;
  background-color: #1a1a1a;
  color: #f9f9f9;
  border-radius: 5px;
}

.categories {
  width: 360px;
  text-align: center;
  background-color: #1a1a1a;
}

.category-select-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

option {
  font-weight: bold;
  background-color: #1b1919;
  width: 360px;
}

#category-select {
  font-weight: bold;
  width: 100%;
  border: 1px solid var(--background-container);
  border-radius: 5px;
  padding: 0.5rem 0.5rem;
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--background-container);
  color: var(--text);
  font-family: "Poppins", sans-serif;
}

.offcanvas-header {
  color: #241f29;
}

.offcanvas.show:not(.hiding) {
  width: 80%;
  transform: none;
  transition: all ease 0.8s;
}

.offcanvas.showing {
  transition: all ease 1s;
}

@media only screen and (max-width: 600px) {
  .offcanvas.show:not(.hiding) {
    width: 100%;
  }
}
.plataform {
  margin: 1rem 0;
}

@media only screen and (min-width: 1024px) {
  #realsbet,
  #playpix,
  #mma,
  #dupoc,
  #elisabet,
  #cassino-pix,
  #bravobet {
    width: 1024px;
    border-radius: 5px;
    height: 800px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #realsbet,
  #playpix,
  #mma,
  #dupoc,
  #elisabet,
  #cassino-pix,
  #bravobet {
    width: 768px;
    border-radius: 5px;
    height: 800px;
  }
}
@media only screen and (max-width: 767px) {
  #realsbet,
  #playpix,
  #mma,
  #dupoc,
  #elisabet,
  #cassino-pix,
  #bravobet {
    width: 100%;
    border-radius: 5px;
    height: 800px;
  }
}
#playpix {
  margin: 1rem 0;
}

.title-img {
  width: 30px;
}

.ia-button {
  width: 380px;
  border: none;
}

.ia-avatar {
  width: 80px;
  border-radius: 5px;
}

#ia-chat {
  margin: 0.5rem;
}

#gerarSinal {
  height: 50px;
  border: none;
  font-weight: bold;
  border-radius: 0px 0px 5px 5px;
  background-color: rgb(11, 218, 76);
}

.ia-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  width: 380px;
  background-color: #1a1a1a;
  border-radius: 5px;
  overflow: hidden;
  justify-content: center;
}

.ia-profile {
  font-weight: bold;
  color: white;
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.ia-profile .ia-photo {
  width: 20px;
  height: 20px;
  border-radius: 100%;
}
.ia-profile .ia-name {
  margin: 0.5rem;
}

.ia-message {
  font-weight: bold;
  margin: 0;
  background-color: #1b1919;
  color: #f9f9f9;
  border-radius: 3px;
  padding: 0.5rem;
  text-align: justify;
}

.chat-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.bandeira {
  margin-top: 0.3rem;
  width: 100%;
  height: 50px;
  border-radius: 4px;
}

.ia-history {
  display: flex;
  justify-content: center;
  overflow: auto;
  background-color: #1b1919;
  padding: 10px 0;
}

.ia-history.slide {
  margin-left: 0;
}

.ia-green-square {
  margin: 0 0.5rem;
  width: 15px;
  height: 15px;
  border-radius: 2px;
  flex-shrink: 0;
  transition: 1s ease all;
}

.center {
  display: flex;
  justify-content: center;
  width: 380px;
  margin-top: 1rem;
}

.view-plataform-button {
  width: 380px;
  border: none;
  padding: 1.5rem;
  border-radius: 10px;
}

.view-plataform-button {
  display: inline-block;
  padding: 12px 28px;
  font-size: 24px;
  margin-bottom: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  background-image: linear-gradient(to bottom right, #00c6ff, #0072ff);
  border: none;
  border-radius: 40px;
  box-shadow: 0px 4px 0px #0072ff;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.view-plataform-button:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 0px #0072ff;
}

.view-plataform-button:active {
  transform: translateY(0px);
  box-shadow: none;
  background-image: linear-gradient(to bottom right, #0072ff, #00c6ff);
}

.view-plataform-button:before,
.view-plataform-button:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
}

.button:after {
  bottom: -3px;
  right: -3px;
  border-radius: 40px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
}

.impar-color {
  background-color: #1a1a1a;
  color: #f9f9f9;
}

.par-color {
  background-color: #1a1a1a;
  color: #f9f9f9;
}

.vermelho-color {
  background-color: #eb0d35;
  color: #f9f9f9;
}

.preto-color {
  background-color: #0d0d0f;
  color: #f9f9f9;
}

.impar-color,
.par-color,
.vermelho-color,
.preto-color,
.numero-0-color {
  padding: 0.2rem 0.3rem;
  border-radius: 5px;
}

.numero-0-color {
  background-color: #159758;
  color: #f9f9f9;
}

.win-percentage-text {
  color: black;
  font-weight: bold;
}

.grid-item2 {
  color: #fff;
  background-color: #1a1a1a;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 0.5rem;
}

.rb-game-img {
  width: 150px;
  height: 90px;
  border-radius: 5px;
}

.percentage {
  display: flex;
  margin: 0 auto;
  text-align: center;
  font-size: 14px;
  color: #555;
  margin-top: 5px;
  background-color: white;
  overflow: hidden;
}

.percentage.win {
  color: green;
}

.percentage.loss {
  color: red;
}

.bar-container {
  background-color: white;
  width: 100%;
  border-radius: 5px;
  margin-top: 5px;
  overflow: hidden;
}

.bar {
  border-radius: 5px;
  padding: 5px 15px;
  position: relative;
  display: flex;
  justify-content: space-between;
}

.bar.win {
  background-color: green;
}

.bar.loss {
  background-color: red;
}

.percentage-bar {
  color: white;
  font-size: 12px;
  font-weight: bold;
  white-space: nowrap;
  margin: 0 5px;
}

.percentage-remaining {
  flex: 1;
  background-color: white;
  border-radius: 0 5px 5px 0;
}

.percentage-container {
  display: flex;
  background-color: white;
  border-radius: 5px;
  overflow: hidden;
}

.progress-bar-container {
  width: 100%;
  background-color: #ffffff;
  border-radius: 5px;
}

.progress-bar{
	position: inherit;
	background:#fefbe3;
	background-color: -webkit-linear-gradient(-45deg, transparent 25%, #fefbe370 25%, #fefbe370 50%, transparent 50%, transparent 75%, #fefbe370 75%);
	background: -moz-linear-gradient(-45deg, transparent 25%, #fefbe370 25%, #fefbe370 50%, transparent 50%, transparent 75%, #fefbe370 75%);
	background: -o-linear-gradient(-45deg, transparent 25%, #fefbe370 25%, #fefbe370 50%, transparent 50%, transparent 75%, #fefbe370 75%);
	background: linear-gradient(-45deg, transparent 25%, #fefbe370 25%, #fefbe370 50%, transparent 50%, transparent 75%, #fefbe370 75%);
	background-size: 27px 27px;
	-webkit-animation: barberpole 1.5s infinite linear;
  animation: barberpole 5s infinite linear;
  height: 24px;
  background-size: 180% 180%;
  border-radius: 5px;
}

@keyframes barberpole {
		from {background-position: 0%;}
		to {background-position: 100%;}
}

.progress-bar.yellow-bar {
  background-color: yellow; 
}

.progress-bar.green-bar {
  background-color: rgb(1, 202, 1); 
}


@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.paying-minute {
  font-size: 14px;
  color: #d35400;
  margin: 5px 0;
}

.game-description {
  margin: 10px 0;
}/*# sourceMappingURL=design.css.map */

.menu-icon {
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.menu-icon img {
  width: 100%;
  height: 100%;
}


.progress-bar-container {
  border: 1px solid transparent; /* Contorno padrão */
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 5px;
}

.progress-bar {
  height: 20px;
  text-align: center;
  line-height: 20px;
  color: white;
  font-size: 12px;
  position: relative;
}

.red-bar {
  border: 2px solid red;
}

.yellow-bar {
  border: 2px solid yellow;
}

.green-bar {
  border: 2px solid green;
}

.popup-close {
  position: absolute;
  top: 5px;
  right: 10px;
  cursor: pointer;
  background: #ccc; /* Cor cinza */
  border: none;
  font-size: 16px;
  color: #333; /* Cor do texto */
  padding: 5px 10px;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.popup-close:hover {
  background: #aaa; /* Tom de cinza mais escuro ao passar o mouse */
}

.popup-vip {
  background: #f0ad4e;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px; /* Espaço acima */
  margin-left: 5px; /* Espaço entre os botões */
}

.popup-vip:hover {
  background: #ec971f;
}

