@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 image settings */
/* --------------------------------------------- */
.floating {
  animation: float 4s ease-in-out infinite;
  width: clamp(150px, 18vw, 280px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.2));
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Unique glow colors per item */
img[src*="valk.png"] {
  filter: drop-shadow(0 0 25px rgba(255, 128, 0, 0.7)) 
          drop-shadow(0 0 8px rgba(255, 128, 0, 0.6));
}

img[src*="pstf.png"] {
  filter: drop-shadow(0 0 25px rgba(0, 170, 255, 0.7)) 
          drop-shadow(0 0 8px rgba(0, 170, 255, 0.6));
}

img[src*="bloxy.png"] {
  filter: drop-shadow(0 0 25px rgba(255, 230, 80, 0.7)) 
          drop-shadow(0 0 8px rgba(255, 230, 80, 0.6));
}

img[src*="aureus.png"] {
  filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.75)) 
          drop-shadow(0 0 8px rgba(255, 200, 0, 0.6));
}

/* Subtle hover interaction */
.floating:hover {
  transform: scale(1.05);
  filter: brightness(1.2) drop-shadow(0 0 30px rgba(255, 255, 255, 0.3));
}

/* --------------------------------------------- */
/* Layout and structure */
/* --------------------------------------------- */
.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;
  justify-content: center;
}

/* Center logo group */
.coming-soon .overlap-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 1;
}

.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: #ff7700;
}

.coming-soon .seach-input {
  display: inline-flex;
  height: 36px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 4px 16px;
  background-color: #803c00;
  border-radius: 10px;
}

.coming-soon .name {
  font-family: "Onest", Helvetica;
  font-weight: 700;
  color: #ff7700;
  font-size: 16px;
  line-height: 20px;
  white-space: nowrap;
}

/* Button styling */
.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: #ff7700;
  border-radius: 8px;
  box-shadow: inset 0px 2px 0px #ffaa60, inset 0px -2px 0px #ff7700;
  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 positioning */
/* --------------------------------------------- */
.float-left,
.float-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Default positioning */
.float-left {
  left: 5%;
}

.float-right {
  right: 5%;
}

/* Responsive offsets for ultra-wide screens */
@media screen and (min-width: 1600px) {
  .float-left { left: 7% !important; }
  .float-right { right: 7% !important; }
}

@media screen and (min-width: 1750px) {
  .float-left { left: 9% !important; }
  .float-right { right: 9% !important; }
}

@media screen and (min-width: 1950px) {
  .float-left { left: 12% !important; }
  .float-right { right: 12% !important; }
}

@media screen and (min-width: 2100px) {
  .float-left { left: 14% !important; }
  .float-right { right: 14% !important; }
}

@media screen and (min-width: 2300px) {
  .float-left { left: 16% !important; }
  .float-right { right: 16% !important; }
}

@media screen and (min-width: 2500px) {
  .float-left { left: 18% !important; }
  .float-right { right: 18% !important; }
}

@media screen and (min-width: 2700px) {
  .float-left { left: 21% !important; }
  .float-right { right: 21% !important; }
}

@media screen and (min-width: 2900px) {
  .float-left { left: 24% !important; }
  .float-right { right: 24% !important; }
}

@media screen and (min-width: 3100px) {
  .float-left { left: 27% !important; }
  .float-right { right: 27% !important; }
}

/* --------------------------------------------- */
/* Global body rules */
/* --------------------------------------------- */
body {
  overflow: hidden;
  background-color: #22252d;
}
