@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-5px) rotate(-1deg);
  }
  50% {
    transform: translateY(0) rotate(0deg);
  }
  75% {
    transform: translateY(5px) rotate(1deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@font-face {
  font-family: "Onest";
  src: url("/fonts/Onest-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

.floating {
  animation: float 4s ease-in-out infinite;
  width: clamp(150px, 20vw, 400px);
  height: auto;
  object-fit: contain;
}

/* Main container */
.coming-soon {
  background-color: #22252d;
  display: flex;
  justify-content: center;
  width: 100%;
}

.coming-soon .div {
  background-color: #22252d;
  width: 100%;
  height: 100vh;
  position: relative;

  display: flex;
  align-items: center; /* vertical center */
  justify-content: center; /* horizontal center */
}

/* Centered logo block */
.coming-soon .overlap-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 1; /* keep above floating images */
}

.coming-soon .group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.coming-soon .ROSTAKE {
  width: 100%;
  max-width: 434px;
  height: auto;
}

.coming-soon .BOTTOM-TEXT {
  font-family: "Onest", Helvetica;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  line-height: 28px;
}

.coming-soon .text-wrapper {
  color: #ffffff;
}

.coming-soon .span {
  color: #88ff55;
}

.coming-soon .seach-input {
  display: inline-flex;
  height: 36px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 4px 16px;
  background-color: #88ff551a;
  border-radius: 10px;
}

.coming-soon .name {
  font-family: "Onest", Helvetica;
  font-weight: 700;
  color: #88ff55;
  font-size: 16px;
  line-height: 20px;
  white-space: nowrap;
}

.coming-soon .button {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 11px;
  gap: 6px;
  padding: 10px 16px;
  background-color: #88ff55;
  border-radius: 8px;
  box-shadow: inset 0px 2px 0px #caffb3, inset 0px -2px 0px #5eb639;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.button:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.coming-soon .text-wrapper-2 {
  font-family: "Onest", Helvetica;
  font-weight: 700;
  color: #1c2025;
  font-size: 14px;
  line-height: 20px;
}

/* Floating image containers */
.float-left,
.float-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0px; /* smaller gap so they appear closer together */
}

@media screen and (min-width: 1600px) {
  .float-left {
    left: 7% !important; /* closer to logo */
  }

  .float-right {
    right: 7% !important; /* closer to logo */
  }
}

@media screen and (min-width: 1750px) {
  .float-left {
    left: 9% !important; /* closer to logo */
  }

  .float-right {
    right: 9% !important; /* closer to logo */
  }
}

@media screen and (min-width: 1950px) {
  .float-left {
    left: 12% !important; /* closer to logo */
  }

  .float-right {
    right: 12% !important; /* closer to logo */
  }
}

@media screen and (min-width: 2100px) {
  .float-left {
    left: 14% !important; /* closer to logo */
  }

  .float-right {
    right: 14% !important; /* closer to logo */
  }
}

@media screen and (min-width: 2300px) {
  .float-left {
    left: 16% !important; /* closer to logo */
  }

  .float-right {
    right: 16% !important; /* closer to logo */
  }
}

@media screen and (min-width: 2500px) {
  .float-left {
    left: 18% !important; /* closer to logo */
  }

  .float-right {
    right: 18% !important; /* closer to logo */
  }
}

@media screen and (min-width: 2700px) {
  .float-left {
    left: 21% !important; /* closer to logo */
  }

  .float-right {
    right: 21% !important; /* closer to logo */
  }
}

@media screen and (min-width: 2900px) {
  .float-left {
    left: 24% !important; /* closer to logo */
  }

  .float-right {
    right: 24% !important; /* closer to logo */
  }
}

@media screen and (min-width: 3100px) {
  .float-left {
    left: 27% !important; /* closer to logo */
  }

  .float-right {
    right: 27% !important; /* closer to logo */
  }
}

.float-left {
  left: 5%; /* closer to logo */
}

.float-right {
  right: 5%; /* closer to logo */
}

.floating {
  animation: float 4s ease-in-out infinite;
  width: clamp(250px, 35vw, 550px); /* bigger size */
  height: auto;
  object-fit: contain;
}

body {
  overflow: hidden;
}
