body {
  font-family: Helvetica, Arial, sans-serif;
  background-color: #121212;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  color: #fff;
  padding: 0;
  position: relative;
  min-height: 100vh;
  padding-bottom: 50px;
  background-attachment: fixed;
  overflow-x: hidden;
}

.notification {
  background-color: #4caf50;
  color: white;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 90px;
  right: 35px;
  z-index: 1;
  font-size: 16px;
  text-align: center;
  display: none;
  opacity: 50%;
}

.watermark {
  text-align: center;
  position: fixed;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  color: rgba(187, 134, 252, 0.1);
  pointer-events: none;
  user-select: none;
  font-weight: bold;
  z-index: 99;
}


.neon-ball {
  top: 0;
  left: 0;
  position: fixed;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at 30% 30%, var(--neon-purple), #bc13fe4d);
  border-radius: 50%;
  filter: blur(40px);
  z-index: -1;
  animation: float 15s infinite linear;
  will-change: transform;
}

@keyframes float {

  0%,
  100% {
    transform: translate(10vw, 10vh) scale(1);
    opacity: 0.6;
  }

  25% {
    transform: translate(80vw, 40vh) scale(0.8);
    opacity: 0.4;
  }

  50% {
    transform: translate(50vw, 80vh) scale(1.2);
    opacity: 0.8;
  }

  75% {
    transform: translate(20vw, 60vh) scale(0.9);
    opacity: 0.5;
  }
}

.neon-ball:nth-child(2) {
  animation-delay: -5s;
  width: 80px;
  height: 80px;
  top: 20%;
  left: 0%;
}

.neon-ball:nth-child(3) {
  animation-delay: -10s;
  width: 80px;
  height: 80px;
  top: 0%;
  left: 10%;
}

h1,
h2 {
  color: #ffffff;
  filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.923)) drop-shadow(0 0 1px rgba(0, 0, 0, 1));
  /* Roxo */
}

.customLoading {
  backdrop-filter: blur(8px);
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 00, 0.6);
}

.customLoadingContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 80%;
  max-width: 626px;
  padding: 20px 0;
  border-radius: 20px;
  background-color: #009646;
  margin-bottom: 40px;
  border: 1px solid #fff;
}

.customLoadingImg {
  width: 100px;
  height: 100px;
  animation: spin 0.9s forwards linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #111927;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 5px;
}

.dropdown-content a {
  color: #6a9ee2;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #111927;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-btn {
  background-color: #6a9ee2;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.dropdown-btn:hover {
  background-color: #0c5888;
}

#globalsMenuOpenRoulette {
  width: 70px;
  height: 70px;
  background-image: url("../images/roulette-call-icon.png");
  cursor: pointer;
  filter: drop-shadow(0px 0px 3px rgba(189, 141, 10, 1));
  background-size: contain;
  animation: rouletteMenuIcon 2s infinite;
}

@keyframes rouletteMenuIcon {
  0% {
    filter: drop-shadow(0px 0px 3px rgba(189, 141, 10, 1));
  }

  50% {
    filter: drop-shadow(0px 0px 10px rgba(189, 141, 10, 1));
  }

  100% {
    filter: drop-shadow(0px 0px 3px rgba(189, 141, 10, 1));
  }
}

#globalsModalFixed,
.modalDefaultConfig {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 10;
}

.globalsModalContainer {
  display: flex;
  flex-direction: column;
  width: 85%;
  z-index: 10;
  align-items: center;
  justify-content: flex-start;
  max-height: 60vh;
  overflow: auto;
  background-color: #009646;
  border-radius: 8px;
  color: #fff;
  padding: 1.5rem 0;
  border: 1px solid #fff;
}

.globalsModalImgHeader {
  width: 100px;
}

.globalsModalContainer>h1 {
  width: 90%;
  text-align: center;
  margin: 0px 0 10px 0;
  color: #fff;
}

.globalsModalContainer>p {
  width: 90%;
  text-align: center;
  margin-bottom: 0;
}

.globalsModalButtons {
  display: flex;
  width: 80%;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

#globalsModalTwo {
  margin: 20px 0;
}

.globalsModalButtons>button {
  width: 40%;
  font-weight: bold;
}

.headerFather {
  z-index: 50;
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.header {
  border-top: 1px solid #444;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  background-color: #009646;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}

.headerAdiv {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-weight: bold;
  text-decoration: none !important;
  padding: 10px 0;
}

.headerAdiv>img {
  width: 40px !important;
  height: 40px !important;
}

.headerAdiv>p {
  margin-top: 0px !important;
}

.neon-ball {
  top: 0;
  left: 0;
  position: fixed;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at 30% 30%, var(--neon-purple), #fe85134d);
  border-radius: 50%;
  filter: blur(40px);
  z-index: -1;
  animation: float 15s infinite linear;
  will-change: transform;
}

@keyframes float {

  0%,
  100% {
    transform: translate(10vw, 10vh) scale(1);
    opacity: 0.6;
  }

  25% {
    transform: translate(80vw, 40vh) scale(0.8);
    opacity: 0.4;
  }

  50% {
    transform: translate(50vw, 80vh) scale(1.2);
    opacity: 0.8;
  }

  75% {
    transform: translate(20vw, 60vh) scale(0.9);
    opacity: 0.5;
  }
}

.neon-ball:nth-child(2) {
  animation-delay: -5s;
  width: 80px;
  height: 80px;
  top: 20%;
  left: 0%;
}

.neon-ball:nth-child(3) {
  animation-delay: -10s;
  width: 80px;
  height: 80px;
  top: 0%;
  left: 10%;
}

.header p {
  margin: 5px 0;
  color: #fff;
}

.sidebarFather {
  z-index: 39;
  overflow: hidden;
  width: 100%;
  margin-left: -100%;
  min-height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  backdrop-filter: blur(0px);
}

.sidebar {
  background-color: #2d2d2d;
  padding: 20px;
  width: 250px;
  min-height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 4px 0 6px rgba(0, 0, 0, 0.3);
}

.sidebar div {
  margin: 10px 0;
  width: 100%;
  z-index: 40;
  padding: 0px;
  border-radius: 8px;
}

.sidebar div>a {
  color: #6a9ee2;
  text-decoration: none;
  font-weight: bold;
}

.sidebarStylezed {
  padding: 5px !important;
}

.sidebar .sidebarStylezed:hover {
  background-color: #4d317a;
  transition: all 0.3s;
}

.openGlobalsModal {
  animation: openGlobalsModalAnim 0.5s ease 0s 1 normal forwards;
}

.closeGlobalsModal {
  animation: closeGlobalsModalAnim 0.5s ease 0s 1 normal forwards;
}

@keyframes openGlobalsModalAnim {
  from {
    margin-left: -100%;
    backdrop-filter: blur(0px);
  }

  to {
    margin-left: 0%;
    backdrop-filter: blur(8px);
  }
}

@keyframes closeGlobalsModalAnim {
  from {
    margin-left: 0%;
    backdrop-filter: blur(8px);
  }

  to {
    margin-left: -100%;
    backdrop-filter: blur(0px);
  }
}

label {
  margin: 0 0 -1px 15px;
  font-weight: bold;
  text-align: left;
  color: #fff;
}

input,
select {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #313131;
  border-radius: 10px;
  background-color: #fff;
  color: rgb(0, 0, 0);
}

input::placeholder {
  color: #6b6b6b;
}

button {
  padding: 10px 20px;
  background-color: #06b15e;
  color: rgb(255, 255, 255);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
  border-radius: 10px;
  transition: all 0.5s ease-in-out;
  font-family: "Arial", serif;
}

button:hover {
  background-color: #009646;
}

.locked {
  background-color: #ccc !important;
  color: #111927 !important;
}

.link {
  text-align: center;
  margin-top: 10px;
}

.link a {
  color: #fff;
  font-weight: bold;
  text-decoration: underline;
}

.link a:hover {
  text-decoration: underline;
}

.hidden {
  display: none;
}

a {
  color: #6a9ee2;
}


.news-ticker {
  width: 90%;
  height: 50px;
  backdrop-filter: blur(50px);
  background-color: #0000006e;
  border-radius: 38px;
  color: white;
  position: relative;
  border: 1px solid #333;
  margin-bottom: 20px;
}

.ticker-container {
  position: relative;
  height: 40px;
  overflow: hidden;
}

.ticker-content {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.6s ease-in-out;
  font-weight: bold;
}

.ticker-content.active {
  opacity: 1;
  transform: translateX(0);
}

.ticker-content.exit {
  opacity: 0.5;
  transform: translateX(-100%);
}

.ticker-text {
  font-family: Arial, sans-serif;
  font-size: 16px;
  white-space: nowrap;
  padding: 0;
}

.ticker-text span {
  margin-right: 8px;
}

#globalsMenuFixed {
  z-index: 50;
  position: fixed;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.addAnimToGiftContainer {
  background-color: rgba(0, 0, 0, 0.5);
  animation: opacityOfContainerGift 5s forwards;
  backdrop-filter: blur(0);
}

@keyframes opacityOfContainerGift {
  0% {
    backdrop-filter: blur(0);
    background-color: rgba(0, 0, 0, 0.5);
  }

  100% {
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(6px);
  }
}

.outer-container {
  position: relative;
  width: 300px;
  height: 300px;
  filter: brightness(1) saturate(1) contrast(1);
  opacity: 1;
}

.giftInClick {
  animation: animGiftInClick 2s forwards;
}

@keyframes animGiftInClick {
  0% {
    filter: brightness(1) saturate(1) contrast(01);
  }

  100% {
    filter: brightness(100) saturate(1) contrast(0.6);
    opacity: 0;
  }
}


.closeRoulette {
  position: absolute;
  top: -50px;
  right: -20px;
  font-weight: bold;
  font-size: 24px;
  color: white;
  background-color: red;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  cursor: pointer;
}

.closeModalPrize {
  position: absolute;
  top: 10px;
  right: 10px;
  font-weight: bold;
  font-size: 24px;
  color: white;
  background-color: red;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  cursor: pointer;
}


.prizeContainer {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #009646;
  padding: 20px 10px;
  border-radius: 8px;
  text-align: center;
  position: relative;
}

.prizeImage {
  width: 50%;
}

.referralCodePrizeContainer {
  padding: 10px;
  margin: 15px 0 !important;
  width: 90% !important;
  border-radius: 8px;
  background-color: #9a67ea;
  font-weight: bold;
  color: #ffffff;
}

@keyframes fall {
  0% {
    transform: translateY(-100vh) rotate(0deg);
    opacity: 1;
  }

  100% {
    transform: translateY(100vh) rotate(720deg);
    opacity: 1;
  }
}


footer {
  text-align: center;
  padding: 10px 0 100px 0;
  margin-top: 90px;
  color: #ffffff;
  position: relative;
  bottom: 0;
  width: 100%;
}

footer p {
  margin: 0;
}

@media screen and (min-width: 626px) {
  .globalsModalContainer {
    width: 40%;
  }

  .userHeader {
    padding: 10px 0px;
  }

  .header {
    width: 50%;
  }

  footer {
    width: 50%;
  }
}

@media screen and (max-width: 625px) {
  h1 {
    font-size: 20px;
  }

  .header>div>p {
    margin: 0;
  }

  .prizeImage {
    width: 50%;
  }

  #globalsMenuOpenRoulette {
    width: 90px;
    height: 90px;
  }

  .notification {
    top: 105px;
    right: 10px;
    font-size: 14px;
  }

  .header>div {
    width: 50%;
  }
}