* {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  background-color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  height: 100%;
  overflow: hidden;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  margin: 0;
  line-height: 1em;
}

p {
  margin: 0;
  padding-bottom: 1em;
}

p:last-of-type {
  padding-bottom: 0;
}

a {
  text-decoration: none;
  color: #000;
  transition: 300ms ease;
}

a:hover {
  color: #0EC3F2;
}

p, a, li {
  font-size: 18px;
  line-height: 1.3em;
}

@media (min-width: 2560px) {
  p, a, li {
    font-size: clamp(1.25rem, 1.25vw + 0.625rem, 3.25rem);
  }
}

@media (max-width: 1000px) and (max-height: 500px) and (orientation: landscape) {
  p, a, li {
    font-size: 11px;
  }
}

@media (max-width: 639px) {
  p, a, li {
    font-size: 14px;
  }
}

b {
  font-weight: 700;
}

img {
  max-width: 100%;
  width: 100%;
}

.page-container {
  position: relative;
  height: 100%;
  opacity: 0;
}

/*@media (max-width: 1024px) and (orientation: portrait) {
  .page-container {
    background-image: url("../content/Mobile/Vertical/ScreenFull.png") !important;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #000;
  }
}*/

/*
.page-container.show {
  opacity: 1;
  background: linear-gradient(
    to bottom,
    #00FFFF,
    #0EC3F2 30%,
    #333333
  );
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
*/

.page-container-holder{
    display: contents;
}
.page-container.show {
    opacity: 1;
}

.page-container-holder {
    position: relative;
}

.page-new-background {
    position: absolute;
    inset: 0;
    background-color: #121b44;
    display: flex;
    justify-content: center;
    align-items: center;
           
}

.stars {
    position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(0, 0, 0, 1) 30%, transparent 30%) 0 0, 
                        radial-gradient(circle, rgba(0, 0, 0, 1) 30%, transparent 30%) 50% 50%;
            background-size: 5px 5px;
            animation: starsAnimation 1.5s infinite linear;
        }

        /* Animation to make stars move */
        @keyframes starsAnimation {
            from {
                background-position: 0 0, 50% 50%;
            }
            to {
                background-position: 100% 100%, -50% -50%;
            }
        }

        /* Add a nebula-like glow with the given colors */
        .nebula {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, #ee9f3e, #00FFFF, #24A1DE);
            opacity: 0.6;
            
        }
        .page-new-background.active .nebula{
            animation: nebulaAnimation 20s infinite ease-out;
        }

        /* Nebula animation */
        @keyframes nebulaAnimation {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-100%);
            }
        }

        /* Some cool background animation */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 5;
        }

        .particles div {
            position: absolute;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: #00FFFF;
            animation: particleAnimation 2s infinite ease-in-out;
        }

        /* Particle animation */
        @keyframes particleAnimation {
            0% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
            50% {
                opacity: 0.7;
                transform: translateY(-50px) scale(0.5);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Animating random positioning of particles */
        .particles div:nth-child(1) { animation-delay: 0s; top: 20%; left: 25%; }
        .particles div:nth-child(2) { animation-delay: 0.3s; top: 40%; left: 70%; }
        .particles div:nth-child(3) { animation-delay: 0.5s; top: 50%; left: 10%; }
        .particles div:nth-child(4) { animation-delay: 0.7s; top: 30%; left: 80%; }
        .particles div:nth-child(5) { animation-delay: 1s; top: 60%; left: 50%; }
        .particles div:nth-child(6) { animation-delay: 1.3s; top: 70%; left: 15%; }


#main-header {
  position: fixed;
  margin-top: 15px;
  width: 100%;
  z-index: 999999999;
}

/* From Uiverse.io by Nawsome */ 
label, .bubble {
  display: block;
  -webkit-tap-highlight-color: transparent;
}

label {
  animation: float74 4s ease-in-out infinite;
}

.bubble, .bubble:before, .bubble:after {
  transition-duration: 0.2s;
}

.bubble, .bubble:after {
  border-radius: 50%;
}

.bubble {
  background-image: radial-gradient(8% 8% at 22% 28%, rgba(230, 23, 23, 0.2) 45%, transparent 50%),
        radial-gradient(8% 8% at 23% 27%, rgba(230, 23, 23, 0.2) 45%, transparent 50%),
        radial-gradient(8% 8% at 24% 26%, rgba(230, 23, 23, 0.2) 45%, transparent 50%),
        radial-gradient(8% 8% at 25% 25%, rgba(230, 23, 23, 0.2) 45%, transparent 50%),
        radial-gradient(8% 8% at 26% 24%, rgba(230, 23, 23, 0.2) 45%, transparent 50%),
        radial-gradient(8% 8% at 27% 23%, rgba(230, 23, 23, 0.2) 45%, transparent 50%),
        radial-gradient(8% 8% at 28% 22%, rgba(230, 23, 23, 0.2) 45%, transparent 50%);
box-shadow: 0 -0.06em 0.1em #ca1818 inset,
        0 -0.15em 0.4em #ca1818 inset,
        0 0.05em 0.05em #ca1818 inset,
        0.05em 0 0.1em  #ca1818 inset,
        -0.05em 0 0.1em #ca1818 inset,
        0 0.1em 0.4em #333333 inset;
  cursor: pointer;
  position: relative;
  width: 36px;
  height: 36px;
  transform-style: preserve-3d;
  transition-property: box-shadow, transform, width, height;
  transition-timing-function: ease-in-out, ease-in-out, var(--bubbleTiming), var(--bubbleTiming);
  will-change: transform;
  -webkit-appearance: none;
  appearance: none;
  z-index: 0;
}
@media(max-width: 639px){
    .bubble{
        width: 32px;
        height: 32px;
    }
}

.bubble:before, .bubble:after {
  content: "";
  display: block;
  position: absolute;
  transition-timing-function: var(--bubbleTiming);
}

.bubble:before {
  border-radius: 0.75em;
  box-shadow: 0 0 0 0.6em #ca171a inset;
  filter: drop-shadow(0.6em 0.6em 4px hsla(0,0%,0%,0.2));
  top: 50%;
  left: 50%;
  width: 1.2em;
  height: 1.2em;
  transform: translate3d(-50%,-50%,-1px);
  z-index: -1;
}

.bubble:after {
  background: radial-gradient(100% 100% at center,hsla(0,0%,0%,0) 35%,hsla(0,0%,0%,0.2) 48%,hsla(0,0%,0%,0) 50%);
  filter: blur(4px);
  top: 0.6em;
  left: 0.6em;
  width: 100%;
  height: 100%;
  transform: translate3d(0,0,-1px);
  z-index: -2;
}

.bubble:focus, .bubble:hover {
  transform: scale(1.1);
  outline: none;
}

.bubble:focus:active, .bubble:hover:active {
  width: 3.6em;
  height: 2.4em;
}

.bubble:focus:before, .bubble:hover:before {
  filter: drop-shadow(0.75em 0.75em 4px hsla(0,0%,0%,0.2));
}

.bubble:focus:after, .bubble:hover:after {
  transform: translate3d(0.15em,0.15em,-1px);
}

.bubble:checked {
  box-shadow: 0 -0.06em 0.1em hsl(120,90%,100%) inset,
		0 -0.15em 0.4em hsl(120,90%,45%) inset,
		0 0.05em 0.05em hsl(120,90%,45%) inset,
		0.05em 0 0.1em hsl(120,90%,100%) inset,
		-0.05em 0 0.1em hsl(120,90%,100%) inset,
		0 0.1em 0.4em hsl(120,90%,60%) inset;
}

.bubble:checked:before {
  border-radius: 0.25em;
  width: 0.5em;
}
/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  label {
    animation: none;
  }

  .bubble, .bubble:before, .bubble:after {
    transition-duration: 0s;
  }

  .bubble:focus, .bubble:hover {
    transform: scale(1);
  }

  .bubble:focus:active, .bubble:hover:active {
    width: 3em;
    height: 3em;
  }

  .bubble:focus:before, .bubble:hover:before {
    filter: drop-shadow(0.6em 0.6em 4px hsla(0,0%,0%,0.2));
  }

  .bubble:focus:after, .bubble:hover:after {
    transform: translate3d(0,0,-1px);
  }
}
/* Animations */
@keyframes float74 {
  from, to {
    transform: translate(0,3%);
  }

  25% {
    transform: translate(-3%,0);
  }

  50% {
    transform: translate(0,-3%);
  }

  75% {
    transform: translate(3%,0);
  }
}
@media (max-width: 1024px) {
  #main-header {
    margin-top: 0;
    padding: 14px 0;
  }
}
@media (max-width: 667px) {
  #main-header {
    background-color: rgba(0, 255, 255, 0.5); /* #00FFFF at 50% */
    backdrop-filter: blur(20px);
  }
}

#main-header .header-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

@media (max-width: 1024px) and (orientation: portrait) {
  #main-header .header-wrapper {
    padding: 0 30px;
  }
}

@media (max-width: 639px) and (orientation: portrait) {
  #main-header .header-wrapper {
    padding: 0 20px;
  }
}

#main-header .header-wrapper .logo-wrapper {
  display: none;
}

@media (max-width: 639px) {
  #main-header .header-wrapper .logo-wrapper {
    display: block;
    line-height: 0;
    width: 45px;
  }

  #main-header .header-wrapper .logo-wrapper img {
    width: auto;
    height: 48px;
  }
}

@media (max-width: 639px) and (orientation: portrait) {
  #main-header .header-wrapper .logo-wrapper {
    width: 35px;
  }

  #main-header .header-wrapper .logo-wrapper img {
    width: auto;
    height: 38px;
  }
}

#main-header .header-wrapper .menu-wrapper {
  margin-left: auto;
}

#main-header .header-wrapper .menu-wrapper * {
  line-height: 0;
}

#main-header .header-wrapper .menu-wrapper img[src*="About.png"] {
  height: 36px;
  width: auto;
}

@media (max-width: 1000px) and (max-height: 500px) and (orientation: landscape) {
  #main-header .header-wrapper .menu-wrapper img[src*="About.png"] {
    height: 22px;
  }
}

#main-header .header-wrapper ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

#main-header .header-wrapper ul li {
  margin-right: 20px;
}

@media (max-width: 639px) {
  #main-header .header-wrapper ul li {
    margin-right: 15px;
  }
}

@media (max-width: 1000px) and (max-height: 500px) and (orientation: landscape) {
  #main-header .header-wrapper ul li {
    margin-right: 12px;
  }
}

#main-header .header-wrapper ul li:last-child {
  margin-right: 0;
}

#main-header .header-wrapper ul li img {
  height: 32px;
  width: auto;
  line-height: 0;
  transition: transform 300ms ease;
}

@media (max-width: 639px) {
  #main-header .header-wrapper ul li img {
    height: 27px;
  }
}

@media (max-width: 1000px) and (max-height: 500px) and (orientation: landscape) {
  #main-header .header-wrapper ul li img {
    height: 20px;
  }
  .bubble{
      width: 30px;
      height: 30px;
      transform: scale(0.8);
      margin-left: -3px;
      margin-right: -3px;
  }
}

#main-header .header-wrapper ul li img:hover {
  transform: translateY(-2px);
}

#canvas {
  display: block;
  background: transparent;
}

#footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 1024px) and (orientation: portrait) {
  #footer {
    display: none;
  }
}

#footer .footer-content {
  text-align: center;
  color: #fff;
}

#footer .footer-content p {
  font-size: 14px;
  padding-bottom: 2px;
  line-height: 1em;
}

@media (min-width: 2560px) {
  #footer .footer-content p {
    padding-bottom: 5px;
    font-size: clamp(1rem, 1vw + 0.5rem, 3rem);
  }
}

@media (max-width: 1000px) and (max-height: 500px) and (orientation: landscape) {
  #footer .footer-content p {
    font-size: 10px;
  }
}

#footer .footer-content a {
  font-size: 14px;
  color: #fff;
}

#footer .footer-content a:hover span {
  color: #00FFFF;
}

@media (min-width: 2560px) {
  #footer .footer-content a {
    font-size: clamp(1rem, 1vw + 0.5rem, 3rem);
  }
}

@media (max-width: 1000px) and (max-height: 500px) and (orientation: landscape) {
  #footer .footer-content a {
    font-size: 10px;
  }
}

@media (max-width: 1000px) and (max-height: 500px) and (orientation: landscape) {
  #footer .footer-content .address {
    line-height: 0;
  }
}

#footer .footer-content .address button {
  position: relative;
  border: none;
  background: transparent;
  padding: 0;
  line-height: 0;
  vertical-align: middle;
  cursor: pointer;
}

@media (min-width: 2560px) {
  #footer .footer-content .address button svg {
    height: clamp(0.9rem, 0.9vw + 0.4rem, 2.9rem);
    width: clamp(0.9rem, 0.9vw + 0.4rem, 2.9rem);
    margin-top: -18px;
    margin-left: 5px;
  }
}

@media (max-width: 1000px) and (max-height: 500px) and (orientation: landscape) {
  #footer .footer-content .address button svg {
    height: 10px;
    width: 10px;
  }
}

#footer .footer-content .address button:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  opacity: 0;
  transition: 300ms ease-in-out;
}

#footer .footer-content .address button:hover:after {
  opacity: 1;
  top: -10px;
}

@media (min-width: 2560px) {
  #footer .footer-content .address button:hover:after {
    top: -50px;
  }
}

#footer .footer-content .address button.clicked:after {
  content: "Copied";
}

@media (min-width: 2560px) {
  #footer .footer-content .address button.clicked:after {
    font-size: clamp(1rem, 1vw + 0.5rem, 3rem);
  }
}

/* Popup Background */
.pump-popup {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 999999; /* Ensures it's above other content */
    opacity: 0; /* Default invisible */
    visibility: hidden; /* Default invisible */
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.pump-popup.show {
    display: flex; /* Show when 'show' class is added */
    opacity: 1;
    visibility: visible;
}

/* Popup Content */
.pump-popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 700px; /* Standard width for large screens */
    max-width: 90%; /* Makes it responsive for smaller screens */
    text-align: center;
    height: auto; /* Adjust based on content */
    max-height: 80%; /* Restrict max height on larger screens */
    overflow: hidden;
}

.pump {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
    object-fit: contain;
}

/* Title and Text Style */
.pump-popup-title,
.popup-title {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 10px;
}

.pump-popup-text,
.popup-text {
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    font-size: 16px;
    color: #555;
}

/* Button Style */
.popup-button {
  display: inline-block;
  font-size: 18px;
  color: #fff;
  margin-top: 20px;
  padding: 16px 40px; /* Desktop padding */
  border-radius: 50px;
  background: linear-gradient(135deg, #00FFFF 0%, #0EC3F2 50%);
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 10px rgba(0, 255, 255, 0.5),
              0 0 0 1px rgba(14, 204, 242, 0.2);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Hover Effect */
.popup-button:hover {
  transform: translateY(-3px) scale(1);
  background: linear-gradient(135deg, #0EC3F2 50%, #00FFFF 100%);
  box-shadow: 0 1px 10px rgba(0, 255, 255, 0.5),
              0 0 0 1px rgba(14, 204, 242, 0.2);
  color: #fff; /* Ensure text remains white on hover */
}

/* Active Effect */
.popup-button:active {
  transform: translateY(-1px) scale(1);
}

/* Responsive Adjustments for Different Screen Sizes */
@media (min-width: 2560px) {
  .pump-popup-content {
    width: 50%; /* Adjusts for very large screens */
  }
  .pump-popup-overlay .pump-popup {
    width: 20%; /* Matches .not-available-popup-overlay .not-available-popup */
  }
}

/* Popup Background */
.pump-popup {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 999999; /* Ensures it's above other content */
    opacity: 0; /* Default invisible */
    visibility: hidden; /* Default invisible */
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.pump-popup.show {
    display: flex; /* Show when 'show' class is added */
    opacity: 1;
    visibility: visible;
}

/* Popup Content */
.pump-popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 700px; /* Standard width for large screens */
    max-width: 90%; /* Makes it responsive for smaller screens */
    text-align: center;
    height: auto; /* Adjust based on content */
    max-height: 80%; /* Restrict max height on larger screens */
    overflow: hidden;
}

.pump {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
    object-fit: contain;
}

/* Title and Text Style */
.pump-popup-title,
.popup-title {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 10px;
}

.pump-popup-text,
.popup-text {
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    font-size: 16px;
    color: #555;
}

/* Button Style */
.popup-button {
  display: inline-block;
  font-size: 18px;
  color: #fff;
  margin-top: 20px;
  padding: 16px 40px; /* Desktop padding */
  border-radius: 50px;
  background: linear-gradient(135deg, #00FFFF 0%, #0EC3F2 50%);
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 10px rgba(0, 255, 255, 0.5),
              0 0 0 1px rgba(14, 204, 242, 0.2);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Hover Effect */
.popup-button:hover {
  transform: translateY(-3px) scale(1);
  background: linear-gradient(135deg, #0EC3F2 50%, #00FFFF 100%);
  box-shadow: 0 1px 10px rgba(0, 255, 255, 0.5),
              0 0 0 1px rgba(14, 204, 242, 0.2);
  color: #fff; /* Ensure text remains white on hover */
}

/* Active Effect */
.popup-button:active {
  transform: translateY(-1px) scale(1);
}

/* Responsive Adjustments for Different Screen Sizes */
@media (min-width: 2560px) {
  .pump-popup-content {
    width: 50%; /* Adjusts for very large screens */
  }
  .pump-popup-overlay .pump-popup {
    width: 20%; /* Matches .not-available-popup-overlay .not-available-popup */
  }
}

/* Mobile Landscape Fix */
@media (max-width: 1000px) and (max-height: 500px) and (orientation: landscape) {
  .pump-popup-content {
    width: 90%;       /* Matches mobile vertical width */
    height: 75%;      /* Keep current landscape height */
    max-height: 75%;
    padding: 8px 20px;
    overflow-y: auto; /* Scroll if content exceeds popup */
  }

  .pump-popup-content .pump,
  .pump-popup-content .popup-image {
    width: 100%;
    height: auto;
    max-height: 45%; /* Keep image inside popup */
    object-fit: contain;
    margin-bottom: 10px;
  }

  /* Reduce font size for landscape */
  .pump-popup-title,
  .popup-title {
    font-size: 20px;
  }

  .pump-popup-text,
  .popup-text {
    font-size: 14px;
  }

  .popup-button {
    font-size: 13px;  /* Slightly smaller */
    padding: 7px 20px; /* Reduced padding to fit inside */
    margin-top: 12px;
  }

  .pump-popup-overlay .pump-popup {
    width: auto;
    height: 100%;
    padding: 15px;
  }
}

@media (max-width: 980px) {
  .pump-popup-content {
    width: 70%; /* Adjusts for medium-sized screens */
  }
  .popup-button {
    font-size: 16px;
    padding: 14px 32px;
  }
}

@media (max-width: 639px) {
  .pump-popup-content {
    width: 90%; /* More narrow for small screens */
  }
  .pump-popup-overlay .pump-popup {
    padding: 25px;
  }
  .popup-button {
    font-size: 15px;
    padding: 12px 26px;
    margin-top: 15px;
  }
}

/* Mobile Vertical Title Smaller */
@media (max-width: 639px) and (orientation: portrait) {
  .pump-popup-title,
  .popup-title {
    font-size: 22px; /* 2px smaller only in vertical */
  }
}

@media (max-width: 480px) {
  .pump-popup-content {
    width: 90%; /* Even smaller for very small screens */
    height: auto; /* Adjust height automatically */
    padding: 10px; /* Slightly smaller padding */
  }
  .popup-button {
    font-size: 14px;
    padding: 10px 22px;
  }
}

/* Overlay Styles */
.pump-popup-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(51, 51, 51, 0.7);
  opacity: 0;
  visibility: hidden;
  z-index: -99999;
  transition: 0.3s ease;
}

.pump-popup-overlay.active {
  opacity: 1;
  visibility: visible;
  z-index: 9999991;
}

.pump-popup-overlay .pump-popup {
  width: 80%;
  max-width: 900px;
  height: auto;
  padding: 35px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
  text-align: center;
  overflow: auto;
  z-index: 3;
  transition: 0.5s;
}

.popup-image {
  width: 100%;
  max-width: 250px;
  margin-bottom: 20px;
  border-radius: 8px;
}

@media (max-width: 980px) {
  .pump-popup-content {
    width: 70%; /* Adjusts for medium-sized screens */
  }
  .popup-button {
    font-size: 16px;
    padding: 14px 32px;
  }
}

@media (max-width: 639px) {
  .pump-popup-content {
    width: 90%; /* More narrow for small screens */
  }
  .pump-popup-overlay .pump-popup {
    padding: 25px;
  }
  .popup-button {
    font-size: 15px;
    padding: 12px 26px;
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .pump-popup-content {
    width: 90%; /* Even smaller for very small screens */
    height: auto; /* Adjust height automatically */
    padding: 10px; /* Slightly smaller padding */
  }
  .popup-button {
    font-size: 14px;
    padding: 10px 22px;
  }
}

/* Overlay Styles */
.pump-popup-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(51, 51, 51, 0.7);
  opacity: 0;
  visibility: hidden;
  z-index: -99999;
  transition: 0.3s ease;
}

.pump-popup-overlay.active {
  opacity: 1;
  visibility: visible;
  z-index: 9999991;
}

.pump-popup-overlay .pump-popup {
  width: 80%;
  max-width: 900px;
  height: auto;
  padding: 35px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
  text-align: center;
  overflow: auto;
  z-index: 3;
  transition: 0.5s;
}

.popup-image {
  width: 100%;
  max-width: 250px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.game-popup-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(51, 51, 51, 0.7);
  opacity: 0;
  visibility: hidden;
  z-index: -999999;
  transition: 0.3s ease;
}

.game-popup-overlay.active {
  opacity: 1;
  visibility: visible;
  z-index: 999999;
}

.game-popup-overlay .game-popup {
  width: 700px;
  border-radius: 5px;
  line-height: 0;
  box-shadow: rgba(0, 255, 255, 0.16) 0px 1px 10px;
  z-index: 3;
  overflow: hidden;
}

@media (min-width: 2560px) {
  .game-popup-overlay .game-popup {
    width: 50%;
  }
}

@media (max-width: 1000px) and (max-height: 500px) and (orientation: landscape) {
  .game-popup-overlay .game-popup {
    width: 60%;
  }
}

@media (max-width: 980px) {
  .game-popup-overlay .game-popup {
    width: 70%;
  }
}

@media (max-width: 639px) {
  .game-popup-overlay .game-popup {
    width: 90.7%;
  }
}

.game-popup-overlay .game-popup .popup-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.game-popup-overlay .game-popup .popup-wrapper .game-image {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

@media (min-width: 2560px) {
  .game-popup-overlay .game-popup .popup-wrapper .game-image {
    height: 780px;
  }
}

@media (max-width: 1000px) and (max-height: 500px) and (orientation: landscape) {
  .game-popup-overlay .game-popup .popup-wrapper .game-image {
    height: 220px;
  }
}

@media (max-width: 639px) {
  .game-popup-overlay .game-popup .popup-wrapper .game-image {
    height: 400px;
  }
}

.game-popup-overlay .game-popup .popup-wrapper .game-image.ken-burns-bg {
  background-size: 120% 120%;
  background-position: center center;
  background-repeat: no-repeat;
  animation: kenBurnsCinematic 30s ease-in-out infinite both;
  filter: brightness(0.85) contrast(1.1);
}

@media (max-width: 639px) {
  .game-popup-overlay .game-popup .popup-wrapper .game-image.ken-burns-bg {
    background-size: cover !important;
  }
}

.game-popup-overlay .game-popup .popup-wrapper .game-image .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 30% 70%, rgba(102, 126, 234, 0.15) 0%, transparent 60%), linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 30%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
  animation: overlayPulse 8s ease-in-out infinite;
}

.game-popup-overlay .game-popup .popup-wrapper .game-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.85) 40%, rgba(0, 0, 0, 0.5) 80%, transparent 100%);
  z-index: 2;
  text-align: right;
}

.game-popup-overlay .game-popup .popup-wrapper .game-content h3 {
  font-size: 30px;
  color: #fff;
  padding-bottom: 10px;
  text-align: left;
}

@media (min-width: 2560px) {
  .game-popup-overlay .game-popup .popup-wrapper .game-content h3 {
    font-size: clamp(2.5rem, 1.5vw + 0.75rem, 4.5rem);
    padding-bottom: 15px;
  }
}

@media (max-width: 1000px) and (max-height: 500px) and (orientation: landscape) {
  .game-popup-overlay .game-popup .popup-wrapper .game-content h3 {
    font-size: 18px;
  }
}

@media (max-width: 639px) {
  .game-popup-overlay .game-popup .popup-wrapper .game-content h3 {
    font-size: 24px;
  }
}

.game-popup-overlay .game-popup .popup-wrapper .game-content p {
  color: #fff;
  margin: 0 0 25px 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  text-align: left;
}

@media (max-width: 1000px) and (max-height: 500px) and (orientation: landscape) {
  .game-popup-overlay .game-popup .popup-wrapper .game-content p {
    margin: 0 0 15px 0;
  }
}

.game-popup-overlay .game-popup .popup-wrapper .game-content .play-button {
  display: inline-block;
  background: linear-gradient(135deg, #00FFFF 0%, #0EC3F2 50%);
  color: #fff;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 1px 10px rgba(0, 255, 255, 0.5), 0 0 0 1px rgba(14, 204, 242, 0.2);
  position: relative;
}

@media (max-width: 1000px) and (max-height: 500px) and (orientation: landscape) {
  .game-popup-overlay .game-popup .popup-wrapper .game-content .play-button {
    padding: 7px 12px;
  }
}

@media (max-width: 639px) {
  .game-popup-overlay .game-popup .popup-wrapper .game-content .play-button {
    padding: 12px 25px;
  }
}

.game-popup-overlay .game-popup .popup-wrapper .game-content .play-button:hover {
  transform: translateY(-3px) scale(1);
  background: linear-gradient(135deg, #0EC3F2 50%, #00FFFF 100%);
  box-shadow: 0 1px 10px rgba(0, 255, 255, 0.5), 0 0 0 1px rgba(14, 204, 242, 0.2);
}

.game-popup-overlay .game-popup .popup-wrapper .game-content .play-button:active {
  transform: translateY(-1px) scale(1);
}

.game-popup-overlay .game-popup .popup-wrapper .game-content .play-button img {
  width: 20px;
  vertical-align: middle;
  margin-top: -2px;
  margin-right: 2px;
}

@media (min-width: 2560px) {
  .game-popup-overlay .game-popup .popup-wrapper .game-content .play-button img {
    width: 40px;
    margin-top: -10px;
  }
}

@media (max-width: 1000px) and (max-height: 500px) and (orientation: landscape) {
  .game-popup-overlay .game-popup .popup-wrapper .game-content .play-button img {
    width: 12px;
  }
}

@media (max-width: 639px) {
  .game-popup-overlay .game-popup .popup-wrapper .game-content .play-button img {
    width: 16px;
    margin-top: -5px;
  }
}

@keyframes kenBurnsCinematic {
  0% {
    background-size: 120% 120%;
    background-position: 50% 50%;
    filter: brightness(0.85) contrast(1.1) saturate(1);
  }
  15% {
    background-size: 125% 125%;
    background-position: 45% 48%;
    filter: brightness(0.9) contrast(1.05) saturate(1.1);
  }
  35% {
    background-size: 130% 130%;
    background-position: 55% 52%;
    filter: brightness(0.88) contrast(1.15) saturate(1.05);
  }
  55% {
    background-size: 127% 127%;
    background-position: 52% 45%;
    filter: brightness(0.92) contrast(1.08) saturate(1.2);
  }
  75% {
    background-size: 128% 128%;
    background-position: 48% 53%;
    filter: brightness(0.87) contrast(1.12) saturate(1.15);
  }
  100% {
    background-size: 120% 120%;
    background-position: 50% 50%;
    filter: brightness(0.85) contrast(1.1) saturate(1);
  }
}

@keyframes overlayPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.9;
  }
}

.sga-chart-popup-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(51, 51, 51, 0.7);
  opacity: 0;
  visibility: hidden;
  z-index: -999999;
  transition: 0.3s ease;
}

.sga-chart-popup-overlay.active {
  opacity: 1;
  visibility: visible;
  z-index: 999999;
}

.sga-chart-popup-overlay .sga-chart-popup {
  width: 900px;
  padding: 25px;
  border-radius: 5px;
  line-height: 0;
  box-shadow: rgba(0, 255, 255, 0.16) 0px 1px 10px;
  background-color: #333333;
  text-align: center;
  z-index: 3;
  overflow: hidden;
}

@media (min-width: 2560px) {
  .sga-chart-popup-overlay .sga-chart-popup {
    width: 70%;
  }
}

@media (max-width: 980px) {
  .sga-chart-popup-overlay .sga-chart-popup {
    width: 70%;
  }
}

@media (max-width: 639px) {
  .sga-chart-popup-overlay .sga-chart-popup {
    width: 90.7%;
  }
}

.sga-chart-popup-overlay .sga-chart-popup .popup-wrapper {
  display: flex;
  align-items: center;  /* Center vertically */
  justify-content: flex-start;  /* Keep them side by side */
  gap: 20px;
  flex-wrap: wrap;  /* Allow wrapping on small screens */
}

@media (max-width: 639px) {
  .sga-chart-popup-overlay .sga-chart-popup .popup-wrapper {
    flex-direction: column;
    gap: 10px;
  }
}

@media (min-width: 2560px) {
  .sga-chart-popup-overlay .sga-chart-popup .popup-wrapper .sga-chart {
    width: 40%;
  }
}

@media (min-width: 1025px) and (max-width: 2559px) {
  .sga-chart-popup-overlay .sga-chart-popup .popup-wrapper .sga-chart {
    width: 45%;
  }
}

@media (max-width: 639px) {
  .sga-chart-popup-overlay .sga-chart-popup .popup-wrapper .sga-chart {
    width: 200px;
  }
}

.sga-chart-popup-overlay .sga-chart-popup .popup-wrapper .sga-chart-content div {
  display: none;
}

.sga-chart-popup-overlay .sga-chart-popup .popup-wrapper .sga-chart-content div.active-text {
  display: block;
}

.sga-chart-popup-overlay .sga-chart-popup .popup-wrapper .sga-chart-content {
  max-height: 400px;  /* Prevents content from overflowing */
  overflow-y: auto;  /* Enables scrolling if necessary */
  flex: 1 1 50%;  /* Flex to ensure content takes up equal space with chart */
  padding: 10px;
  box-sizing: border-box;
  display: flex;  /* Set flex to align text properly */
  justify-content: center;  /* Vertically center text */
  align-items: center;  /* Vertically align content */
  text-align: left;
}

.sga-chart-popup-overlay .sga-chart-popup .popup-wrapper .sga-chart-content p {
  color: #fff;
  word-wrap: break-word;
  word-break: break-word;  /* Ensure long words (e.g., URLs) break correctly */
}

.sga-chart-popup-overlay .sga-chart-popup .popup-wrapper .sga-chart-content a {
  color: #fff;
  text-align: left;
}

.sga-chart-popup-overlay .sga-chart-popup .popup-wrapper .sga-chart-content a:hover {
  color: #0EC3F2;
}

.markets-menu-item-popup-overlay {
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  content: "";
  background: rgba(51, 51, 51, 0.7);
  z-index: 999999;
}

.markets-menu-item-popup-overlay .markets-menu-item-popup {
  width: 300px;
  padding: 35px;
  border-radius: 5px;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
  background: #fff;
  text-align: center;
  z-index: 3;
  transition: 0.5s;
}

.markets-menu-item-popup-overlay .markets-menu-item-popup .custom-select {
  position: relative;
  display: inline-block;
  width: 100%;
}

.markets-menu-item-popup-overlay .markets-menu-item-popup .custom-select .select-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #333333;
  border-radius: 5px;
  background: white;
  font-size: 18px;
  cursor: pointer;
  outline: none;
}

.markets-menu-item-popup-overlay .markets-menu-item-popup .custom-select .select-input .caret-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #333333;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.markets-menu-item-popup-overlay .markets-menu-item-popup .custom-select .select-input .caret-icon.rotate {
  transform: translateY(-50%) rotate(180deg);
}

.markets-menu-item-popup-overlay .markets-menu-item-popup .custom-select .select-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #333333;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-height: 300px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.markets-menu-item-popup-overlay .markets-menu-item-popup .custom-select .select-options li {
  display: flex;
  align-items: center;
  padding: 10px;
  text-decoration: none;
  color: #333;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #333333;
  transition: background 0.2s ease;
}

.markets-menu-item-popup-overlay .markets-menu-item-popup .custom-select .select-options li:last-child {
  border-bottom: none;
}

.markets-menu-item-popup-overlay .markets-menu-item-popup .custom-select .select-options li:hover {
  background: #e6f3ff;
}

.markets-menu-item-popup-overlay .markets-menu-item-popup .custom-select .select-options li img {
  width: 20px;
  margin-right: 10px;
}

.markets-menu-item-popup-overlay .markets-menu-item-popup button {
  display: inline-block;
  font-size: 18px;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #00FFFF;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 300ms ease;
}

.markets-menu-item-popup-overlay .markets-menu-item-popup button:hover {
  background-color: #0EC3F2;
}

.not-available-popup-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(51, 51, 51, 0.7);
  opacity: 0;
  visibility: hidden;
  z-index: -99999;
  transition: 0.3s ease;
}


.not-available-popup-overlay.active {
  opacity: 1;
  visibility: visible;
  z-index: 9999991;
}

.not-available-popup-overlay .not-available-popup {
  width: 300px;
  padding: 35px;
  border-radius: 5px;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
  background: #fff;
  text-align: center;
  z-index: 3;
  transition: 0.5s;
}

@media (min-width: 2560px) {
  .not-available-popup-overlay .not-available-popup {
    width: 20%;
  }
}

@media (max-width: 1000px) and (max-height: 500px) and (orientation: landscape) {
  .not-available-popup-overlay .not-available-popup {
    width: 200px;
    padding: 20px;
  }
}

@media (max-width: 639px) {
  .not-available-popup-overlay .not-available-popup {
    padding: 25px;
  }
}

.not-available-popup-overlay .not-available-popup button {
  display: inline-block;
  font-size: 18px;
  color: #fff;
  margin-top: 20px;
  padding: 10px 25px;
  border-radius: 50px;
  background: linear-gradient(135deg, #00FFFF 0%, #0EC3F2 50%);
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 10px rgba(0, 255, 255, 0.5), 0 0 0 1px rgba(14, 204, 242, 0.2);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (min-width: 2560px) {
  .not-available-popup-overlay .not-available-popup button {
    font-size: clamp(1.25rem, 1.25vw + 0.625rem, 3.25rem);
  }
}

@media (max-width: 1000px) and (max-height: 500px) and (orientation: landscape) {
  .not-available-popup-overlay .not-available-popup button {
    font-size: 11px;
    margin-top: 8px;
    padding: 7px 12px;
  }
}

@media (max-width: 639px) {
  .not-available-popup-overlay .not-available-popup button {
    font-size: 14px;
    padding: 10px 20px;
    margin-top: 15px;
  }
}

.not-available-popup-overlay .not-available-popup button:hover {
  transform: translateY(-3px) scale(1);
  background: linear-gradient(135deg, #0EC3F2 50%, #00FFFF 100%);
  box-shadow: 0 1px 10px rgba(0, 255, 255, 0.5), 0 0 0 1px rgba(14, 204, 242, 0.2);
}

.not-available-popup-overlay .not-available-popup button:active {
  transform: translateY(-1px) scale(1);
}

.coming-soon-popup-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(51, 51, 51, 0.7);
  opacity: 0;
  visibility: hidden;
  z-index: -99999;
  transition: 0.3s ease;
}

.coming-soon-popup-overlay.active {
  opacity: 1;
  visibility: visible;
  z-index: 9999999999;
}

.coming-soon-popup-overlay .coming-soon-popup {
  width: 300px;
  padding: 35px;
  border-radius: 5px;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
  background: #fff;
  text-align: center;
  z-index: 3;
  transition: 0.5s;
}

@media (min-width: 2560px) {
  .coming-soon-popup-overlay .coming-soon-popup {
    width: 20%;
  }
}

@media (max-width: 1000px) and (max-height: 500px) and (orientation: landscape) {
  .coming-soon-popup-overlay .coming-soon-popup {
    width: 200px;
    padding: 20px;
  }
}

@media (max-width: 639px) {
  .coming-soon-popup-overlay .coming-soon-popup {
    padding: 25px;
  }
}

.coming-soon-popup-overlay .coming-soon-popup button {
  display: inline-block;
  font-size: 18px;
  color: #fff;
  margin-top: 20px;
  padding: 10px 25px;
  border-radius: 50px;
  background: linear-gradient(135deg, #00FFFF 0%, #0EC3F2 50%);
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 10px rgba(0, 255, 255, 0.5), 0 0 0 1px rgba(14, 204, 242, 0.2);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (min-width: 2560px) {
  .coming-soon-popup-overlay .coming-soon-popup button {
    font-size: clamp(1.25rem, 1.25vw + 0.625rem, 3.25rem);
  }
}

@media (max-width: 1000px) and (max-height: 500px) and (orientation: landscape) {
  .coming-soon-popup-overlay .coming-soon-popup button {
    font-size: 11px;
    margin-top: 8px;
    padding: 7px 12px;
  }
}

@media (max-width: 639px) {
  .coming-soon-popup-overlay .coming-soon-popup button {
    font-size: 14px;
    padding: 10px 20px;
    margin-top: 15px;
  }
}

.coming-soon-popup-overlay .coming-soon-popup button:hover {
  transform: translateY(-3px) scale(1);
  background: linear-gradient(135deg, #0EC3F2 50%, #00FFFF 100%);
  box-shadow: 0 1px 10px rgba(0, 255, 255, 0.5), 0 0 0 1px rgba(14, 204, 242, 0.2);
}

.coming-soon-popup-overlay .coming-soon-popup button:active {
  transform: translateY(-1px) scale(1);
}


.about-popup-overlay {
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: var(--header-height);
    left: 0;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    z-index: -99999;
    transition: opacity 500ms ease;
  }
  .desktop-overlay-toggler{
      display: none;
  }
  
  @media (min-width:639px){
    .about-popup-overlay{
        top: 0;
    }
    .desktop-overlay-toggler{
        display: block;
    }
}

  .about-popup-overlay.active {
    opacity: 1;
    visibility: visible;
    z-index: 99999999;
  }

  .about-popup-overlay .about-popup {
    height: 100%;
    border-radius: 5px;
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    z-index: 3;
  }
.about-popup-overlay .about-popup {
    width: calc(100% - 60px);
  }


@media (max-width: 639px) {
  .about-popup-overlay .about-popup {
    width: calc(100% - 40px);
  }
}


.about-popup-overlay .about-popup .popup-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .about-popup-overlay .about-popup .popup-wrapper .about-text {
    margin-top: calc(var(--header-height) * -1);
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    text-align: left;
  }
  
.about-popup-overlay .about-popup .popup-wrapper p.copyright {
    transform: translateY(calc(var(--header-height) * -1.1));
}
  
/* Mobile Landscape Fix */
@media (max-height: 500px) and (orientation: landscape) {
  /* Reset margin-top for .about-text in landscape */
  .about-popup-overlay .about-popup .popup-wrapper .about-text {
    margin-top: 0;  /* Removes negative margin for proper centering */
    flex-grow: 1;  /* Ensure text fills available space */
  }

  /* Ensure copyright stays at the bottom and visible */
  .about-popup-overlay .about-popup .popup-wrapper p.copyright {
    margin-top: auto;  /* Pushes copyright to the bottom */
    transform: none;  /* Remove transform for landscape */
  }
}

  .about-popup-overlay .about-popup .popup-wrapper .about-text p.text-width-icon {
    padding-bottom: 0;
  }

  .about-popup-overlay .about-popup .popup-wrapper .about-text p.text-width-icon img {
    width: 1em;
    height: 1em;
    transform: translateY(2px);
    margin-right: 2px;
  }

  .about-popup-overlay .about-popup .popup-wrapper p {
    font-size: 25px;
    padding-bottom: 15px;
  }
  
@media (max-width: 1024px) {
    .about-popup-overlay .about-popup .popup-wrapper p {
        font-size: 18px;
    }
  }
  @media (max-width: 1024px) and (orientation: landscape) {
  .about-popup-overlay .about-popup .popup-wrapper p {
    font-size: 15px;
  }
}
@media (max-width: 639px) {
  .about-popup-overlay .about-popup .popup-wrapper p {
    font-size: 16px;
  }
}
.about-popup-overlay .about-popup .popup-wrapper p:last-of-type {
    padding-bottom: 0;
  }

  .about-popup-overlay .about-popup .popup-wrapper a {
    font-size: 25px;
    color: #000;
  }

@media (max-width: 1024px) {
  .about-popup-overlay .about-popup .popup-wrapper a {
    font-size: 18px;
  }
}
@media (max-width: 1024px) {
  .about-popup-overlay .about-popup .popup-wrapper a {
    font-size: 15px;
  }
}
@media (max-width: 639px) {
  .about-popup-overlay .about-popup .popup-wrapper a {
    font-size: 16px;
  }
}

.about-popup-overlay .about-popup .popup-wrapper a:hover span {
    color: #0EC3F2;
  }

  .about-popup-overlay .about-popup .popup-wrapper .address {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
  }


@media (max-width: 639px) {
  .about-popup-overlay .about-popup .popup-wrapper .address {
    display: block;
  }
}

.about-popup-overlay .about-popup .popup-wrapper .address button {
    position: relative;
    border: none;
    background: transparent;
    padding: 0;
    vertical-align: middle;
    cursor: pointer;
  }

  .about-popup-overlay .about-popup .popup-wrapper .address button:after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: #000;
    opacity: 0;
    transition: 300ms ease-in-out;
  }

  .about-popup-overlay .about-popup .popup-wrapper .address button:hover:after {
    opacity: 1;
    bottom: -12px;
  }

  .about-popup-overlay .about-popup .popup-wrapper .address button.clicked:after {
    content: "Copied";
    bottom: -12px;
  }
    
  .text-width-icon img {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.125em; /* emoji baseline alignment */
}

.sga-preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  overflow: hidden;
  z-index: 9999999999;
}

.sga-preloader .preloader-content {
  position: relative;
  width: 100%;
  height: 100%;
}

@media (max-width: 980px) {
  .sga-preloader .preloader-content .preloader-screen {
    padding: 0 20px;
  }
}

.sga-preloader .preloader-screen.first {
  position: absolute;
  width: max-content;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sga-preloader .preloader-screen.first h2 {
  font-size: 70px;
  color: transparent;
  text-transform: uppercase;
  cursor: default;
  position: relative;
}

@media (min-width: 2560px) {
  .sga-preloader .preloader-screen.first h2 {
    font-size: clamp(3rem, 6vw + 1.5rem, 8rem);
  }
}

@media (max-width: 1000px) and (max-height: 500px) and (orientation: landscape) {
  .sga-preloader .preloader-screen.first h2 {
    font-size: 44px;
  }
}

@media (max-width: 639px) {
  .sga-preloader .preloader-screen.first h2 {
    font-size: 40px;
  }
}

.sga-preloader .preloader-screen.first h2 span {
  position: absolute;
  top: 0;
  left: 0;
  color: #000;
  transition: transform 0.8s ease-in-out, scale 0.8s ease-in-out;
  will-change: transform;
}

.sga-preloader .preloader-screen.first h2 span:nth-child(1) {
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
  transform: translateY(0);
}

.sga-preloader .preloader-screen.first h2 span:nth-child(2) {
  clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
  transform: translateY(0);
}

.sga-preloader .preloader-screen.first h2 span:nth-child(3) {
  top: 50%;
  left: 0;
  transform: translateY(-50%) scaleY(0);
  width: 100%;
  color: #fff;
  background: #ca171a;
  font-size: 20px;
  height: 24px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: 0.7em;
  text-align: center;
  transform-origin: center;
  opacity: 0;
  transition: transform 0.8s ease-in-out, opacity 0.5s ease-in-out;
}

@media (min-width: 2560px) {
  .sga-preloader .preloader-screen.first h2 span:nth-child(3) {
    font-size: 30px;
    height: 34px;
    line-height: 34px;
  }
}

@media (max-width: 1000px) and (max-height: 500px) and (orientation: landscape) {
  .sga-preloader .preloader-screen.first h2 span:nth-child(3) {
    font-size: 10px;
    height: 14px;
    line-height: 14px;
  }
}

@media (max-width: 639px) {
  .sga-preloader .preloader-screen.first h2 span:nth-child(3) {
    font-size: 12px;
    height: 16px;
    line-height: 16px;
    letter-spacing: 0.5em;
  }
}

.sga-preloader .preloader-screen.first h2.play span:nth-child(1) {
  transform: translateY(-18px);
}

@media (min-width: 2560px) {
  .sga-preloader .preloader-screen.first h2.play span:nth-child(1) {
    transform: translateY(-28px);
  }
}

@media (max-width: 1000px) and (max-height: 500px) and (orientation: landscape) {
  .sga-preloader .preloader-screen.first h2.play span:nth-child(1) {
    transform: translateY(-11px);
  }
}

@media (max-width: 639px) {
  .sga-preloader .preloader-screen.first h2.play span:nth-child(1) {
    transform: translateY(-12px);
  }
}

.sga-preloader .preloader-screen.first h2.play span:nth-child(2) {
  transform: translateY(18px);
}

@media (min-width: 2560px) {
  .sga-preloader .preloader-screen.first h2.play span:nth-child(2) {
    transform: translateY(28px);
  }
}

@media (max-width: 1000px) and (max-height: 500px) and (orientation: landscape) {
  .sga-preloader .preloader-screen.first h2.play span:nth-child(2) {
    transform: translateY(11px);
  }
}

@media (max-width: 639px) {
  .sga-preloader .preloader-screen.first h2.play span:nth-child(2) {
    transform: translateY(12px);
  }
}

.sga-preloader .preloader-screen.first h2.play span:nth-child(3) {
  transform: translateY(-50%) scaleY(1);
  opacity: 1;
}

.sga-preloader .preloader-screen.second {
  opacity: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: -webkit-fill-available;
  z-index: 2;
}

.sga-preloader .preloader-screen.second .matrix-text {
  color: #000;
  font-size: 40px;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 2560px) {
  .sga-preloader .preloader-screen.second .matrix-text {
    font-size: clamp(2rem, 5vw + 1rem, 5rem);
  }
}

@media (min-width: 1281px) and (max-width: 1366px) {
  .sga-preloader .preloader-screen.second .matrix-text {
    font-size: 38px;
  }
}

@media (min-width: 981px) and (max-width: 1280px) {
  .sga-preloader .preloader-screen.second .matrix-text {
    font-size: 30px;
  }
}

@media (max-width: 1000px) and (max-height: 500px) and (orientation: landscape) {
  .sga-preloader .preloader-screen.second .matrix-text {
    font-size: 24px;
  }
}

@media (max-width: 639px) {
  .sga-preloader .preloader-screen.second .matrix-text {
    font-size: 24px;
    line-height: 1.3em;
  }
}

.sga-preloader .preloader-screen.second .matrix-text::before {
  content: attr(data-text);
  font-size: 40px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: glitch 2s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
  transform: translate(-2px, -2px);
  color: #fff;
  text-shadow: 0 0 5px #fff, 0 0 15px #fff;
}

@media (min-width: 2560px) {
  .sga-preloader .preloader-screen.second .matrix-text::before {
    font-size: clamp(2rem, 5vw + 1rem, 4.85rem);
  }
}

@media (min-width: 1281px) and (max-width: 1366px) {
  .sga-preloader .preloader-screen.second .matrix-text::before {
    font-size: 38px;
  }
}

@media (min-width: 981px) and (max-width: 1280px) {
  .sga-preloader .preloader-screen.second .matrix-text::before {
    font-size: 30px;
  }
}

@media (max-width: 1000px) and (max-height: 500px) and (orientation: landscape) {
  .sga-preloader .preloader-screen.second .matrix-text::before {
    font-size: 24px;
  }
}

@media (max-width: 639px) {
  .sga-preloader .preloader-screen.second .matrix-text::before {
    font-size: 24px;
  }
}

.sga-preloader .preloader-screen.second .rain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(0deg, rgba(230, 23, 23, 0.2) 0, rgba(230, 23, 23, 0.3) 2px, transparent 4px);
  animation: rain 6s linear forwards;
  z-index: 1;
}

@keyframes moveTop {
  0%, 100% {
    transform: translateY(0);
  }

  25%, 75% {
    transform: translateY(-18px);
  }
}

@keyframes moveBottom {
  0%, 100% {
    transform: translateY(0);
  }

  25%, 75% {
    transform: translateY(18px);
  }
}

@keyframes barAppear {
  0%, 20%, 100% {
    transform: translateY(-50%) scaleY(0);
  }

  40%, 60% {
    transform: translateY(-50%) scaleY(1);
  }
}

@keyframes rain {
  0% {
    transform: translateY(-100%);
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(100%);
    opacity: 0;
  }
}

@keyframes glitch {
  0%, 100% {
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    transform: translate(0);
  }

  33% {
    clip-path: polygon(0 0, 100% 0, 100% 15%, 0 15%);
    transform: translate(-5px, -5px);
  }

  66% {
    clip-path: polygon(0 85%, 100% 85%, 100% 100%, 0 100%);
    transform: translate(5px, 5px);
  }
}

/*# sourceMappingURL=style.css.map */
