@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Inter", serif;
}

:root {
  --roxo: #9436ac;
}

::-webkit-scrollbar {
  width: 8px;
  background-color: #000;
}

::-webkit-scrollbar-thumb {
  width: 8px;
  background-color: var(--roxo);
}

html {
  touch-action: manipulation;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: url("../image/bg.webp") repeat;
  background-position: left;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #4f1b5c85;
  z-index: -1;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-0 {
  margin-top: 0;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #1d062c;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: constant(safe-area-inset-top);
  padding-top: env(safe-area-inset-top);
}

header ul {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  height: 40px;
}

li a i {
  color: #fff;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.countdown-container {
  width: 100%;
  height: 30px;
}

.countdown-icon {
  width: 25px;
  height: 25px;
  vertical-align: middle;
  margin-right: 5px;
}

.countdown-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1rem;
  white-space: nowrap;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.countdown-pg-soft .progress-bar {
  background-color: rgba(133, 48, 156, 0.5) !important;
  border: 1px solid #341c44;
}

.countdown-pg-soft .progress {
  background-color: rgb(29, 6, 44) !important;
}

.countdown-pg-soft .countdown-text {
  color: #fff !important;
}

.countdown-tada .progress-bar {
  background-color: rgba(168, 168, 168, 0.5) !important;
  border: 1px solid #341c44;
}

.countdown-tada .progress {
  background-color: #d0d0d0 !important;
}

.countdown-tada .countdown-text {
  color: #000 !important;
}

.countdown-pragmatic .progress-bar {
  background-color: rgba(255, 165, 0, 0.5) !important;
  border: 1px solid #e67e00;
}

.countdown-pragmatic .progress {
  background-color: #b8660a !important;
}

.countdown-pragmatic .countdown-text {
  color: #fff !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.progress-bar {
  width: 100%;
  height: 100%;
  border: 1px solid #341c44;
  background-color: rgba(133, 48, 156, 0.5);
  position: relative;
  overflow: hidden;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.progress-bar .progress {
  height: 100%;
  background-color: rgb(29, 6, 44);
  width: 100%;
  transition: width 1s linear;
}

.preload {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #440953;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preload .ball {
  width: 35px;
  height: 35px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-animation: efeito 0.5s infinite;
  animation: efeito 0.5s infinite;
}

#login_signup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(12px);
  display: none;
  overflow: auto;
  height: 100vh;
}

.unlogged #login_signup {
  display: block;
}

@media (min-width: 700px) {

  html,
  body {
    padding-top: 20px;
  }

  header {
    top: 0;
  }

  header ul {
    width: 50%;
  }

  li a i:hover {
    font-size: 20px;
  }
}


@supports (-webkit-touch-callout: none) {
  @media (min-width: 768px) and (max-width: 1024px) {
    header {
      position: -webkit-sticky;
      position: sticky;
      top: 0;
      padding-top: 0;
    }

    html,
    body {
      padding-top: 0;
    }

    #page-content {
      padding-top: 0;
    }
  }
}


.ios-device {
  height: calc(var(--vh, 1vh) * 100);
}

.ios-device header {
  padding-top: constant(safe-area-inset-top);
  padding-top: env(safe-area-inset-top);
}

.ios-device #page-content {
  height: calc(var(--vh, 1vh) * 100);
  max-height: calc(var(--vh, 1vh) * 100);
}


@media screen and (device-width: 768px) and (device-height: 1024px),
screen and (device-width: 1024px) and (device-height: 768px),
screen and (device-width: 834px) and (device-height: 1112px),
screen and (device-width: 1112px) and (device-height: 834px),
screen and (device-width: 810px) and (device-height: 1080px),
screen and (device-width: 1080px) and (device-height: 810px),
screen and (device-width: 820px) and (device-height: 1180px),
screen and (device-width: 1180px) and (device-height: 820px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
  }

  body {
    padding-top: 0;
    -webkit-overflow-scrolling: touch;
  }

  #page-content {
    margin-top: 0;
    padding-top: 0;
  }
}

.header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 25px;
}

.header .logo {
  width: 350px;
  margin: 20px 0 10px 0;
}

.header p {
  font-size: 2rem;
  color: var(--roxo);
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
}

.banners {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 10px;
  width: calc(100% - 10%);
  position: relative;
}

.update-item {
  display: flex;
  align-items: center;
  color: #ffffff;
}

.update-item svg {
  margin-right: 10px;
}

.last-update {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.last-update {
  font-size: 1rem;
}

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #8a32a0;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 99 !important;
  text-align: center;
  pointer-events: auto;
  user-select: none;
}

.scroll-to-top i {
  font-size: 25px;
  line-height: 45px;
}

.scroll-to-top:hover {
  background-color: #b644d4;
}

h1 {
  font-size: 2rem;
  color: #fff;
  position: relative;
  width: 20ch;
}

h1::after {
  position: absolute;
  content: "";
  width: calc(100% - 20%);
  height: 3px;
  bottom: -5px;
  left: 0;
  background: linear-gradient(to right, #4a1058, 30%, #fff);
}

.imagens {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  background-color: rgba(148, 54, 172, 0.8);
  border: 1px solid #b644d4;
  border-radius: 30px;
  align-items: center;
  justify-content: space-around;
  padding: 40px 10px 20px 10px;
  margin-bottom: -29px;
}

.imagens h1 {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  padding: 5px 20px;
  font-size: 1.5rem;
  border-bottom: 2px solid #b644d4;
  z-index: 2;
  white-space: nowrap;
  text-transform: uppercase;
  width: fit-content;
  text-shadow: -2px -2px 0 #b644d4, 1px -1px 0 #b644d4, -1px 1px 0 #b644d4, 1px 1px 0 #ff69b4;
}

.imagens i {
  color: #f2d87e;
}

.imagens h1::after {
  display: none;
}

.banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  transition: all 0.4s ease-out;
  margin-bottom: 5px;
  margin-top: 5px;
}

.banner:hover {
  transform: scale(1.04);
  background: linear-gradient(to right, #5b2069, #87319c);
}

.banner a {
  width: 70px;
}

.banner img {
  width: 100%;
  margin-top: 4px;
  border-radius: 20px;
  border: 1px solid #d343ff;
}

.banner .badge {
  position: absolute;
  top: -1px;
  right: -10px;
  background-color: #9436ac;
  border: 1px solid #b644d4;
  color: #fff;
  padding: 3px 8px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: bold;
  z-index: 1;
  box-shadow: 0 0 0 0 rgba(148, 54, 172, 0.7);
  animation: pulsar 1.5s infinite;
  text-transform: uppercase;
}

.banner .badge-vip {
  position: absolute;
  top: -1px;
  left: -10px;
  background-color: #ffe60d;
  border: 1px solid #9f8f00;
  color: #4a4a4a;
  padding: 3px 8px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: bold;
  z-index: 1;
  box-shadow: 0 0 0 0 rgba(148, 54, 172, 0.7);
  animation: pulsar 1.5s infinite;
  text-transform: uppercase;
}

.new-platform {
  border-radius: 20px;
  animation: pulse-rotate 1.5s infinite;
}

.update-text {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}

.update-text .container {
  background-color: #5b28c8;
  border-radius: 20px;
  display: flex;
  text-align: center;
  padding: 20px 5px;
  font-size: 1rem;
  gap: 12px;
  color: #fff;
}

.gameResults {
  display: grid;
  grid-template-columns: repeat(auto-fill, 175px);
  align-items: stretch;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  margin-top: 40px;
}

.games-loader {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  color: #fff;
  gap: 15px;
}

.games-loader span {
  font-size: 14px;
  opacity: 0.8;
}

.loader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(148, 54, 172, 0.3);
  border-top-color: #b644d4;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.vip-required-message {
  text-align: center;
  background-color: rgba(148, 54, 172, 0.8);
  border: 1px solid #b644d4;
  border-radius: 30px;
  padding: 40px 30px;
  margin: 20px auto;
  max-width: 350px;
}

.vip-required-message svg {
  filter: drop-shadow(0 4px 15px rgba(255, 215, 0, 0.4));
  animation: starPulse 2s ease-in-out infinite;
}

.vip-required-message h3 {
  font-size: 20px;
  margin: 0 0 8px 0;
  background: linear-gradient(135deg, #ffd700, #ff9500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vip-required-message p {
  font-size: 14px;
  opacity: 0.8;
  margin: 0 0 20px 0;
  max-width: 280px;
}

.vip-cta-button {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #ffd700, #ff9500);
  color: #000;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.vip-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

@keyframes starPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.game {
  box-shadow: 2px 5px 12px 7px #00000077;
  border-radius: 14px;
  height: auto;
  width: 100%;
  padding: 0 0 15px 0;
  color: #fff;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.game.lazy-hidden {
  display: none !important;
}

.game::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background-color: rgb(50, 52, 96);
  border-radius: 0 0 14px 14px;
  z-index: -1;
}

.game p {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 15px;
}

.game img {
  width: 100%;
  height: 150px;
  border-radius: 14px 14px 0 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.gameInfo {
  display: flex;
  padding: 0 10%;
  align-items: center;
}

.gameInfo img {
  width: 50px;
  height: 50px;
  margin-right: 12px;
}

.gameInfo h3 {
  overflow: hidden;
  font-size: 1em;
}

.game .loading-bar {
  width: 130px;
  height: 12px;
  background-color: #ffffff9f;
  border-radius: 7px;
}

.game .loading-bar .loading-bar-inner {
  width: 100%;
  height: 12px;
  border-radius: 7px;
}

.header .logo {
  animation: logo-pulse 5s infinite;
  max-width: 80%;
  margin-bottom: 40px;
}

.mirror {
  position: absolute;
  top: 150px;
  left: 0;
  z-index: 1;
  transform: rotate(180deg) scaleX(-1);
  mask-image: linear-gradient(linear,
      left top,
      left bottom,
      color-stop(0, transparent),
      color-stop(0.6, transparent),
      color-stop(0.94, #000),
      color-stop(1, #000));
  -webkit-mask-image: -webkit-gradient(linear,
      left top,
      left bottom,
      color-stop(0, transparent),
      color-stop(0.6, transparent),
      color-stop(0.94, #000),
      color-stop(1, #000));
  display: block;
  width: 100%;
  height: 150px;
  background-repeat: no-repeat !important;
  background-position: 50% 50% !important;
  background-size: cover !important;
}

.bg_layer {
  height: calc(100% - 150px);
  transition: height 0.3s ease;
  display: block;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  border-radius: 0 0 14px 14px;
}

.gameContent {
  position: relative;
  z-index: 2;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  top: -4px;
  padding-top: 10px;
}

#suggested_bets {
  width: 92%;
  margin: 10px auto 0;
  border-radius: 15px;
  text-align: center;
  padding: 10px 5px;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  position: relative;
  overflow: hidden;
  margin-bottom: 5px;
  background: rgba(0, 0, 0, 0.3);
}

.star-vip::before {
  content: "\f005";
  font-family: "Line Awesome Free";
  font-weight: 900;
  font-size: 150px;
  color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -40%);
  z-index: -1;
}

#suggested_bets i,
#suggested_bets span {
  position: relative;
  z-index: 1;
  display: block;
}

#suggested_bets .divisor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 5px;
  margin-top: 5px;
  white-space: nowrap;
  padding-bottom: 3px;
}

#suggested_bets .divisor-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

#suggested_bets .divisor:last-child {
  border-bottom: none;
}

#suggested_bets .divisor span {
  background: rgb(31 223 39 / 80%);
  width: 70px;
  text-align: center;
  padding: 0px 10px;
  border-radius: 5px;
  font-size: 11px;
}

#suggested_bets h5 {
  position: relative;
  z-index: 1;
}

#suggested_bets .h5title {
  text-transform: uppercase;
  color: #dfb51d;
  margin-bottom: 3px;
}

#suggested_bets p {
  margin: 0;
  font-size: 11px;
}

.demo_button {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -15px;
  margin: auto;
  width: 80%;
  padding: 4px 12px;
  color: #783205;
  text-shadow: 0 2px 2px #fae385;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid #a55d07;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(110, 80, 20, 0.4),
    inset 0 -1px 2px 1px #8b4208, inset 0 -1px 1px 2px #fae385;
  background-image: linear-gradient(160deg, #a54e07, #b47e11, #fef1a2, #bc881b, #a54e07);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}


.playButton {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -15px;
  margin: auto;
  width: 80%;
  padding: 4px 12px;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid #2e7d32;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(46, 125, 50, 0.4),
    inset 0 -1px 2px 1px #1b5e20, inset 0 -1px 1px 2px #4caf50;
  background-image: linear-gradient(160deg, #2e7d32, #4caf50, #81c784, #4caf50, #2e7d32);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}


.game-buttons-container {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -15px;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0 10px;
}

.demo_button.dual,
.playButton.dual {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  margin: 0;
  flex: 1;
  max-width: 45%;
  font-size: 13px;
  padding: 4px 8px;
  border-radius: 7px;
}

/* Estilos para o botão Demo quando exibido com o botão Jogar */
.demo_button.dual {
  background-image: linear-gradient(160deg, #a54e07, #b47e11, #fef1a2, #bc881b, #a54e07);
  border: 1px solid #a55d07;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16), 0 2px 4px rgba(110, 80, 20, 0.4),
    inset 0 -1px 1px 1px #8b4208, inset 0 -1px 1px 1px #fae385;
}

/* Estilos para o botão Jogar quando exibido com o botão Demo */
.playButton.dual {
  background-image: linear-gradient(160deg, #2e7d32, #4caf50, #81c784, #4caf50, #2e7d32);
  border: 1px solid #2e7d32;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16), 0 2px 4px rgba(46, 125, 50, 0.4),
    inset 0 -1px 1px 1px #1b5e20, inset 0 -1px 1px 1px #4caf50;
}

.update-text .container {
  align-items: center;
  max-width: 80%;
  padding: 20px 15px;
}

.disclaimer {
  background: linear-gradient(180deg, #000 0, #3519b7 100%);
  color: #fff;
  border-radius: 15px 15px 0 0;
  padding: 30px 30px 90px;
}

.disclaimer h2 {
  margin-bottom: 15px;
  color: var(--roxo);
}

.disclaimer p {
  white-space: pre-line;
}

iframe {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  display: block;
  margin: auto auto 50px;
  border: none;
}

.flex {
  display: flex;
}

.flex1 {
  flex: 1;
}

.flexColumn {
  flex-direction: column;
}

.upper {
  text-transform: uppercase;
}

.verdana {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.grid {
  display: grid;
}

.grid3 {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  grid-gap: 20px;
}

.aCenter {
  align-items: center;
}

.jCenter {
  justify-content: center;
}

.spaceBetween {
  justify-content: space-between;
}

.mAuto {
  margin: auto;
  left: 0;
  right: 0;
}

.pointer {
  cursor: pointer;
}

.pAbsolute {
  position: absolute;
}

.pRelative {
  position: relative;
}

.tCenter {
  text-align: center;
}

.lightText {
  color: #fff;
}

.title {
  font-family: "Secular One", sans-serif;
  font-style: normal;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-size: 48px;
  color: var(--mainColor);
  font-weight: 400;
}

#forms {
  min-height: 100vh;
}

#forms_container {
  width: 397px;
  max-width: 90%;
  margin: auto;
  background-color: #fff;
  padding: 30px 40px 30px 40px;
  border-radius: 10px;
  text-align: center;
}

#forms_container h2 {
  font-size: 28px;
  line-height: 63px;
}

#forms_container p {
  font-size: 14px;
  margin-bottom: 20px;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="number"] {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0);
  border-style: none;
  background-color: #f2f2ff;
  padding: 16px 16px 16px 24px;
  border-radius: 10px;
  margin-bottom: 22px;
  color: #000;
  font-size: 1rem;
  width: 100%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.terms {
  display: flex;
  align-items: center;
  cursor: pointer;
  overflow: hidden;
  margin-bottom: 20px;
}

.terms p {
  margin-left: 5px;
}

.terms strong {
  color: #e57dff;
  text-decoration: none;
  font-weight: normal;
}

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"]+span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  border: 2px solid rgb(148 148 148 / 60%);
  border-radius: 10px;
  margin-right: 5px;
  font-size: 18px;
  color: transparent;
  transition: all 0.2s ease-in-out;
}

input[type="checkbox"]:checked+span {
  background-color: #d853f9;
  border-color: #c330e8;
  color: white;
}

.button {
  background-color: #9436ac;
  color: #fff;
  display: block;
  padding: 10px 20px;
  font-weight: 600;
  transition: all ease 0.25s;
  text-align: center;
  border-radius: 10px;
  padding: 16px 0;
  line-height: 28px;
  margin-top: 20px;
  border: none;
  width: 100%;
  font-size: 16px;
}

.button:hover {
  background-color: #1d062c;
}

.button:disabled {
  background-color: #cccccc;
  color: #666666;
  cursor: not-allowed;
  opacity: 0.7;
  pointer-events: none;
}

input[type="submit"]:disabled,
input[type="button"]:disabled {
  background-color: #cccccc;
  color: #666666;
  cursor: not-allowed;
  opacity: 0.7;
  pointer-events: none;
}

.underlineHover:hover {
  text-decoration: underline;
}

.label {
  color: #1e293b;
  font-weight: 600;
  font-size: 14px;
}

.distribution {
  position: absolute;
  bottom: 97%;
  left: 0;
  padding: 5px 10px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.3);
  border-top-right-radius: inherit;
  border-top-left-radius: inherit;
  font-size: 13px;
  width: 100%;
  text-align: center;
}

@media (max-width: 920px) {
  #login_signup>.flex>div {
    width: 100%;
  }

  #forms_container {
    margin: auto;
  }

  #forms {
    padding: 70px 0;
  }
}

@media (max-width: 770px) {
  .header {
    margin-top: 110px;
  }
}

@media (max-width: 480px) {
  .favorite-button {
    width: 50px;
    height: 50px;
  }

  .favorite-button i {
    font-size: 35px;
  }

  .gameResults {
    grid-template-columns: repeat(auto-fill, 47%);
  }

  /* Plataformas: 3 por linha no mobile */
  .imagens {
    gap: 8px;
    padding: 40px 10px 15px 10px;
    justify-content: center;
  }

  .imagens .banner {
    flex: 0 0 calc(33.33% - 8px);
    max-width: calc(33.33% - 8px);
    margin: 0;
  }

  .imagens .banner a {
    width: 100%;
  }

  .imagens .banner img {
    aspect-ratio: 1;
    object-fit: cover;
    height: auto;
  }

  .plataforms-default,
  .plataforms-vip {
    margin-top: 73px;
  }

  .countdown-text {
    font-size: 14px;
  }

  .header {
    margin-top: 20px;
  }

  .imagens h1 {
    font-size: 16px;
    top: -13px;
    border-bottom: none;
  }

  .imagens {
    padding: 20px 10px 20px 10px;
  }
}

@media (max-width: 374px) {
  .banner a {
    width: 18vw;
  }

  h1 {
    font-size: 8vw;
  }

  .gameResults {
    grid-template-columns: repeat(auto-fill, 44vw);
  }
}

img::selection {
  background: rgba(0, 0, 0, 0);
}

#search_container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

#search {
  padding: 5px 20px;
}

#favorite {
  position: absolute;
  right: 5px;
  top: 5px;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 5px;
  border-radius: 100%;
  display: flex;
}

#favorite svg {
  width: 18px;
  fill: #fff;
  cursor: pointer;
}

#favorite svg:last-child {
  display: none;
}

#favorite input {
  display: none;
}

#favorite input:checked+svg {
  display: none;
}

#favorite input:checked~svg:last-child {
  display: block;
}

#tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background: rgba(0, 0, 0, 0.2);
}

#tabs .new-tabs {
  display: flex;
  align-items: center;
  gap: 5px;
}

#tabs span {
  cursor: pointer;
  padding: 10px 20px;
  color: #fff;
  text-align: center;
  border-right: 1px solid rgba(222, 57, 255, 0.1);
  transition: background-color 0.3s, transform 0.3s, border-color 0.3s;
}

#tabs span:last-child {
  border-right: none;
}

#tabs span.ativo,
#tabs span:hover {
  border-bottom: 2px solid #9436ac;
  filter: drop-shadow(2px 4px 6px black);
  background-color: rgba(0, 0, 0, 0.2);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

#tabs a {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  border-right: 1px solid rgba(222, 57, 255, 0.1);
  transition: background-color 0.3s, transform 0.3s, border-color 0.3s;
}

#tabs a.ativo,
#tabs a:hover {
  border-bottom: 2px solid #9436ac;
  filter: drop-shadow(2px 4px 6px black);
  background-color: rgba(0, 0, 0, 0.2);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

#tabs a:last-child {
  border-right: none;
}

#tabs .admin-alert-message.ativo,
#tabs a:hover {
  border-bottom: 2px solid #9436ac;
  filter: drop-shadow(2px 4px 6px black);
  background-color: rgba(0, 0, 0, 0.2);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.tab-todos i {
  color: #007bff;
}

.tab-vip i {
  color: #ff9800;
}

.tab-favoritos i {
  color: #fc4234;
}

.tab-como-jogar i {
  color: #18bb92;
}

.tab-aplicativo i {
  color: #4caf50;
}

.tab-logout i {
  color: #f44336;
}

.tab-afiliado i {
  color: #ff69b4;
}

@media (max-width: 600px) {
  #tabs span {
    padding: 8px 12px;
    font-size: 14px;
  }
}

form>div {
  position: relative;
}

.error {
  color: red;
  position: absolute;
  bottom: 5px;
  left: 0;
  font-size: 0.9rem;
}

#painel {
  width: 900px;
  max-width: 95%;
  margin: 0 auto 40px;
  padding: 30px 20px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  filter: drop-shadow(2px 4px 6px black);
  color: #fff;
}

#painel input {
  padding: 5px 20px;
  border: 2px solid var(--roxo);
  width: initial;
  margin: 2px 10px 0 0;
}

#painel button {
  background-color: var(--roxo);
  color: #fff;
  display: block;
  padding: 5px 10px;
  border-radius: 10px;
  border: 1px solid #fff;
  cursor: pointer;
}

#painel button:hover {
  background-color: #5b28c8;
}

#sharebox {
  color: #fff;
  background-color: #5b28c8;
  border-radius: 20px;
  border: 2px solid #d49eff;
  background: linear-gradient(90deg, #000 0, #3519b7 100%);
}

#sharebox img {
  width: 82px;
  margin-right: 10px;
}

#link {
  color: var(--roxo);
  word-break: break-all;
}

#invite {
  background-color: #5b28c8;
  padding: 10px 37px;
  border-radius: 65px;
  margin-right: 30px;
  border: 1px solid #fff;
  cursor: pointer;
  position: relative;
}

#invite:hover {
  background-color: var(--roxo);
}

#link_wrapper svg {
  width: 18px;
  margin-left: 10px;
  fill: #fff;
  margin-right: 10px;
}

.game .loading-bar {
  margin: auto;
}

.playButton {
  position: absolute;
  left: 0;
  padding: 5px 10px;
  color: #fff;
  background-color: #59e479;
  border-radius: 50px;
  font-size: 13px;
  width: 80%;
  text-align: center;
  right: 0;
  margin: auto;
  bottom: -12px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.playButton:hover {
  background-color: #000;
}

.favorite-button {
  position: absolute;
  top: 5px;
  left: 10px;
  cursor: pointer;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.favorite-button i {
  color: white;
  font-size: 18px;
}

.favorite-button i.las.la-heart {
  color: rgb(222 118 255);
}

.filter-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #8a32a0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  animation: blink 2.5s infinite;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.filter-toggle:hover {
  background-color: #6b2380;
  transform: scale(1.1);
}

.filter-toggle i {
  color: white;
  font-size: 20px;
}

.filters-container {
  display: none;
  background: linear-gradient(135deg, rgba(45, 10, 66, 0.95) 0%, rgba(29, 6, 44, 0.95) 100%);
  border: 1px solid #8a32a0;
  border-radius: 10px;
  padding: 10px 15px;
  /* Reduced vertical padding slightly too */
  margin-top: 2px;
  /* Greatly reduced from 10px */
  width: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@media (min-width: 769px) {
  .filters-container {
    max-width: 600px;
    /* Limit width on large screens and center it */
    margin-left: auto;
    margin-right: auto;
  }
}

.filters-container.active {
  display: block;
  animation: slideDown 0.3s ease;
}

.filters-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  /* Slightly tighter internal gap */
}

.filters-content h3 {
  color: #fff;
  font-size: 13px;
  /* Slightly smaller font for compactness */
  margin-bottom: 2px;
  /* Reduced from 5px */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.filters {
  display: flex;
  flex-direction: column;
  gap: 0;
  /* Removed gap (was 10px) to bring container closer to search */
}

.after-platforms {
  margin-bottom: -25px;
}

.after-platforms h4 {
  text-align: center;
  color: #fff;
  margin-bottom: 10px;
}

.search-container {
  position: relative;
  min-width: 600px;
  margin: 0;
}

#search_input,
.style-input {
  width: 100%;
  padding: 10px 30px 10px 10px;
  background: rgba(148, 54, 172, 0.8);
  border: 2px solid #8a32a0;
  color: #333;
  border-radius: 5px;
  font-size: 16px;
  color: #fff;
  outline: none;
}

/* Modern Filter Chips */
.modern-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chip {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.filter-chip:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.filter-chip.active {
  background: linear-gradient(135deg, #b644d4 0%, #9436ac 100%);
  border-color: #d343ff;
  color: #fff;
  box-shadow: 0 4px 15px rgba(182, 68, 212, 0.4);
  font-weight: 600;
}

.filter-chip i {
  font-size: 16px;
}

#search_input::placeholder,
.style-input::placeholder,
.select-filter::placeholder {
  color: #fff;
  opacity: 0.7;
}

.search-icon {
  position: absolute;
  top: 35%;
  right: 15px;
  transform: translateY(-50%);
  cursor: pointer;
}

.search-icon img {
  width: 18px;
  height: 18px;
}

@keyframes blink {
  0% {
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.7);
  }

  50% {
    box-shadow: 0 0 50px rgba(255, 0, 255, 0.9);
  }

  100% {
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.7);
  }
}

.game.novo {
  position: relative;
  animation: blink 1.5s infinite;
}

.game.novo::before {
  content: "Novo";
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: #9436ac;
  box-shadow: 0 0 0 0 rgba(148, 54, 172, 0.7);
  border: 1px solid #b644d4;
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: bold;
  z-index: 2;
  animation: pulsar 1.5s infinite;
  text-transform: uppercase;
}

.swal2-popup.custom-swal {
  background-color: rgba(148, 54, 172, 0.96);
  color: white;
  border-radius: 15px;
}

.custom-swal .swal2-title {
  color: white;
}

.custom-swal .swal2-content {
  color: white;
}

.custom-swal .swal2-close {
  color: white;
}

.custom-swal .swal2-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.custom-swal .swal2-footer a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}

.custom-swal .swal2-icon {
  color: white;
}

.custom-swal .swal2-styled.swal2-confirm {
  background-color: #ff69b4;
  border: none;
  color: white;
}

.custom-swal .swal2-styled.swal2-confirm:hover {
  background-color: #e64a9e;
}

.blur-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(15px);
  z-index: 1000;
  display: none;
  pointer-events: auto;
}

.login-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  z-index: 1001;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: none;
  pointer-events: auto;
  max-height: 85vh;
  overflow-y: auto;
  scrollbar-gutter: stable;
}

.login-modal h2 {
  color: #000;
  margin-bottom: 5px;
  text-align: center;
}

.login-modal p {
  margin-top: 5px;
}

.login-modal h2 span,
.login-modal a {
  color: #9436ac;
  cursor: pointer;
}

.login-modal input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.login-modal button {
  width: 100%;
  padding: 10px;
  background-color: #9436ac;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 20px;
}

.login-modal button:disabled {
  background-color: #cccccc;
  color: #666666;
  cursor: not-allowed;
  opacity: 0.7;
  pointer-events: none;
}

.login-modal button:hover {
  background-color: #7a2b8a;
}

.login-modal .links {
  margin-top: 10px;
  text-align: center;
}

.login-modal .links a {
  color: #9436ac;
  text-decoration: none;
  margin: 0 5px;
}

.login-modal .links a:hover {
  text-decoration: underline;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 26px;
  font-weight: bold;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 50%;
}

.close-modal:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.text-center {
  text-align: center;
}

.switch-tab {
  color: #9436ac;
  cursor: pointer;
  text-decoration: none;
}

.switch-tab:hover {
  color: #7a2b8a;
}

.text-center {
  text-align: center;
}

#maintenance_mode {
  text-align: center;
}

#maintenance_mode i.las.la-tools {
  font-size: 50px;
  color: #9436ac;
  margin-bottom: 20px;
}

#maintenance_mode h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #333;
}

#maintenance_mode p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.instagram-link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: linear-gradient(45deg, #e1306c, #c13584);
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  transition: background 0.3s ease;
}

.instagram-link a:hover {
  background: linear-gradient(45deg, #c13584, #e1306c);
}

.instagram-link i.lab.la-instagram {
  font-size: 24px;
  margin-right: 10px;
}

.instagram-link span {
  font-size: 16px;
  font-weight: 500;
}

@media (min-width: 769px) {
  header>div {
    justify-content: center !important;
  }
}

@media (max-width: 768px) {
  #sharebox>div {
    flex-flow: column;
  }

  #invite {
    margin: auto;
    top: 10px;
  }

  header a {
    padding-left: 20px;
  }

  header ul {
    padding-right: 20px;
  }

  .search-container {
    min-width: 90%;
    width: 90%;
  }

  #search_input {
    padding: 10px 25px 10px 10px;
  }

  .search-icon img {
    width: 16px;
    height: 16px;
  }

  #tabs {
    margin-top: 0;
  }

  .logo-desktop {
    display: none;
  }

  #logo_mobile {
    display: initial !important;
    width: 70%;
  }

  header ul {
    width: 50%;
  }

  header ul a {
    display: flex;
  }

  .header .logo {
    max-width: 25%;
    visibility: hidden;
  }
}

@keyframes pulsar {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(148, 54, 172, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(148, 54, 172, 0);
  }
}

@keyframes pulse-rotate {
  0% {
    transform: scale(1) rotate(0deg);
    box-shadow: 0 0 0 0 rgba(148, 54, 172, 0.7);
  }

  25% {
    transform: scale(1.05) rotate(-2deg);
  }

  50% {
    transform: scale(1.05) rotate(2deg);
  }

  75% {
    transform: scale(1.05) rotate(-2deg);
  }

  100% {
    transform: scale(1) rotate(0deg);
    box-shadow: 0 0 0 0 rgba(148, 54, 172, 0);
  }
}

@keyframes logo-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes efeito {
  0% {
    box-shadow: 0 0 0 0 #fff;
  }

  100% {
    box-shadow: 0 0 0 15px rgb(255, 255, 255, 0.3);
  }
}

@keyframes efeito {
  0% {
    box-shadow: 0 0 0 0 #fff;
  }

  100% {
    box-shadow: 0 0 0 15px rgb(255, 255, 255, 0.3);
  }
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1d062c 0%, #4a1058 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  overflow: hidden;
}

.loading-logo {
  width: 160px;
  animation: pulse-glow 2s infinite;
  margin-bottom: 35px;
  position: relative;
  z-index: 2;
}

.loader-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loader-container {
  width: 60px;
  height: 60px;
  position: relative;
  margin: 0 auto;
}

.loader-circle {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--roxo);
  animation: spin 1.2s linear infinite;
}

.loader-circle:nth-child(2) {
  width: 45px;
  height: 45px;
  top: 7.5px;
  left: 7.5px;
  border-top-color: transparent;
  border-right-color: #b644d4;
  animation: spin 1.5s linear reverse infinite;
}

.loader-circle:nth-child(3) {
  width: 30px;
  height: 30px;
  top: 15px;
  left: 15px;
  border-top-color: transparent;
  border-left-color: #f2d87e;
  animation: spin 1s linear infinite;
}

.loader-text {
  font-size: 14px;
  font-weight: 500;
  color: white;
  margin-top: 20px;
  letter-spacing: 1px;
  position: relative;
  text-align: center;
}

.loader-text::after {
  content: "...";
  position: absolute;
  animation: dots 1.5s infinite;
  width: 24px;
  text-align: left;
}

.loader-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: particles 15s linear infinite;
}

@keyframes particles {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 1;
  }

  100% {
    transform: translateY(-100vh) translateX(100px);
    opacity: 0;
  }
}

@keyframes pulse-glow {
  0% {
    filter: drop-shadow(0 0 5px rgba(148, 54, 172, 0.6));
    transform: scale(1);
  }

  50% {
    filter: drop-shadow(0 0 15px rgba(148, 54, 172, 0.8));
    transform: scale(1.05);
  }

  100% {
    filter: drop-shadow(0 0 5px rgba(148, 54, 172, 0.6));
    transform: scale(1);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes dots {

  0%,
  20% {
    content: ".";
  }

  40% {
    content: "..";
  }

  60%,
  100% {
    content: "...";
  }
}

/* Admin Alerts */
#admin-alert-container {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 1000;
  max-width: 300px;
  width: auto;
  display: none;
}

#admin-alert {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  background-color: rgba(148, 54, 172, 0.85);
  color: white;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-weight: 400;
  line-height: 1.2;
  transition: all 0.2s ease;
  min-width: 150px;
  position: relative;
  overflow: hidden;
  font-size: 13px;
}

#admin-alert:before {
  content: "\f0f3";
  font-family: "Line Awesome Free";
  font-weight: 900;
  margin-right: 0.5rem;
  font-size: 1rem;
}

.admin-alert-message {
  flex-grow: 1;
  margin: 0 0.5rem;
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 13px;
}

.admin-alert-message.cursor-pointer:after {
  content: "\f35d";
  font-family: "Line Awesome Free";
  font-weight: 900;
  margin-left: 0.5rem;
  font-size: 0.75rem;
  opacity: 0.85;
}

#close-admin-alert {
  background: transparent;
  border: none;
  color: white;
  font-size: 1rem;
  width: 20px;
  height: 20px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}

#close-admin-alert:hover {
  opacity: 1;
}

#admin-alert:hover {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

@keyframes pulse-alert {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1);
  }
}

#admin-alert-container.animate #admin-alert {
  animation: pulse-alert 2s infinite;
}

.alert-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) inset;
  width: 100%;
  transform-origin: left;
}

@keyframes countdown {
  from {
    transform: scaleX(1);
  }

  to {
    transform: scaleX(0);
  }
}

@media (max-width: 640px) {
  #admin-alert-container {
    bottom: 1rem;
    right: 1rem;
    max-width: calc(100vw - 2rem);
  }

  #admin-alert {
    padding: 0.75rem;
    font-size: 0.875rem;
  }

  #admin-alert:before {
    width: 3px;
  }
}