@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  color: #383838;
  padding: 0;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  padding-bottom: 100px;
  background-attachment: fixed;
  background-image: url(/src/images/banners/bg.jpg);
  font-style: normal;
  font-family: "Inter", sans-serif;
}

h1,
h2 {
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  text-align: center;
}

p,
a,
label {
  font-weight: 400;
  font-size: 15px;
  margin: 0;
  text-decoration: none;
}

a {
  color: green;
}

.emphasisMoney {
  color: green;
  font-weight: bold;
}

#customLoading {
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  animation: initiateLoading 0.2s forwards ease-in-out;
}

@keyframes initiateLoading {
  0% {
    background-color: rgba(0, 0, 00, 0);
    backdrop-filter: blur(0px);
  }
  100% {
    background-color: rgba(0, 0, 00, 0.8);
    backdrop-filter: blur(10px);
  }
}

.customLoadingContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  margin-bottom: 40px;
}

.customLoadingImg {
  width: 10px;
  height: 10px;
  margin-bottom: 50px;
  animation: initiateLoadingImage 0.6s forwards ease-in-out;
}

@keyframes initiateLoadingImage {
  0% {
    width: 10px;
    height: 10px;
  }
  100% {
    width: 200px;
    height: 200px;
  }
}

.dropdown {
  position: relative;
  display: inline-block;
}

#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;
}

.openingModal {
  animation: openingModalKey 0.69s ease-in-out forwards;
}
.openingModalContainer {
  animation: openingModalContainerKey 0.69s ease-in-out forwards;
}

.removedModal {
  animation: removedModalKey 0.69s ease-in-out forwards;
}
.removedModalContainer {
  animation: removedModalContainerKey 0.69s ease-in-out forwards;
}

@keyframes openingModalKey {
  0% {
    background-color: rgba(0, 0, 0, 0);
  }
  100% {
    background-color: rgba(0, 0, 0, 0.6);
  }
}
@keyframes openingModalContainerKey {
  0% {
    scale: 0%;
  }
  100% {
    scale: 100%;
  }
}
@keyframes removedModalKey {
  0% {
    background-color: rgba(0, 0, 0, 0.6);
  }
  100% {
    background-color: rgba(0, 0, 0, 0);
  }
}
@keyframes removedModalContainerKey {
  0% {
    scale: 100%;
  }
  100% {
    scale: 0%;
  }
}

#globalsModalContainer,
.globalsModalContainer {
  background-color: rgba(51, 51, 51, 0.884);
  display: flex;
  flex-direction: column;
  width: 85%;
  max-width: 626px;
  z-index: 10;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #ffffff;
  padding-bottom: 1.5rem;
}

#globalsModalContainer > h1,
.globalsModalContainer > h1 {
  width: 90%;
  text-align: center;
  margin: 10px 0;
  color: #ffffff;
}

#globalsModalContainer > p,
.globalsModalContainer > p {
  width: 90%;
  text-align: center;
}

#globalsModalContainer > input,
.globalsModalContainer > input,
#globalsModalContainer > label,
.globalsModalContainer > label {
  width: 80% !important;
}

.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 {
  background-color: rgba(17, 44, 33, 1);
  border-top: 2px solid #000000;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}

.headerAdiv {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff !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;
  color: #ffffff !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: green;
  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;
  text-align: left;
  color: #ffffff;
}

select {
  padding: 10px;
  margin-bottom: 15px;
  box-shadow: 5px 5px 13px 0px #ffffff52;
  border: none;
  background: radial-gradient(at bottom left, #fff, #ebebeb);
  color: rgb(0, 0, 0);
}

.glowing-input {
  width: 300px;
  padding: 10px 0 10px 10px;
  width: 96%;
  margin: 10px 0;
  border: 2px solid #ffffff;
  color: white;
  transition: all 0.3s ease;
  text-align: center;
  border-radius: 20px;
  background: none;
  text-align: left;

}
.glowing-input:hover {
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(50, 50, 204, 0.4);
  border-color: #ffffff;
}

input::placeholder {
  color: #aaaaaa;
}

textarea:focus,
input:focus,
button:focus {
  outline: none;
}

button {
  padding: 10px 20px;
  color: rgb(0, 20, 65);
  box-shadow: 0 0 10px #ffffff50;
  border: 1px solid #000000;
  background-color: #FFF;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border-radius: 20px;
  text-align: center;
}

button:disabled {
  background-color: #303030;
  cursor: not-allowed;
}

.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;
}

#globalsMenuFixed {
  z-index: 50;
  position: fixed;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

footer {
  text-align: center;
  padding: 10px 0 100px 0;
  margin-top: 90px;
  background-color: #111927;
  color: #ffffff;
  position: relative;
  bottom: 0;
  width: 100%;
}

footer p {
  margin: 0;
}

.glowing-div {
  width: 300px;
  padding: 30px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid #3238cc;
  
  color: white;
  box-shadow: 0 0 15px #3238cc50;
  transition: all 0.3s ease;
  text-align: center;
}

.glowing-div:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(50, 50, 204, 0.8), 0 0 60px rgba(50, 50, 204, 0.4);
  border-color: #da70d6;
}

#grid-canvas {
  z-index: -2;
}

#meteor-canvas {
  z-index: -1;
}

@media screen and (min-width: 626px) {
  .userHeader {
    padding: 10px 0px;
  }

  .header {
    width: 77%;
  }
  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%;
  }
}
