/* ================= AUCTIONS COMING SOON STYLES ================= */
body {
  background: #000000 !important;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

/* ================= BACK ARROW ================= */
.back-arrow {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.back-arrow:hover {
  opacity: 1;
  transform: translateX(-5px);
}

.back-arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1); /* Makes the image white */
}

/* ================= COMING SOON CONTAINER ================= */
.coming-soon-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  padding-top: 80px; /* Account for navbar */
}
.coming-soon-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px;
}
/* ================= BLUR CIRCLES ================= */
.blur-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  animation: float 8s ease-in-out infinite;
}
.blur-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #8B0000, #FF0000);
  top: 10%;
  left: 15%;
  animation-delay: 0s;
}
.blur-2 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, #4B0000, #8B0000);
  bottom: 15%;
  right: 20%;
  animation-delay: 2s;
}
.blur-3 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #2B0000, #5B0000);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 4s;
}
@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(20px, -20px) scale(1.05);
  }
  50% {
    transform: translate(-15px, 15px) scale(0.95);
  }
  75% {
    transform: translate(15px, 10px) scale(1.02);
  }
}
/* ================= COMING SOON TEXT ================= */
.coming-soon-text {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}
.coming-soon-text h1 {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: bold;
  color: white;
  margin: 0 0 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff, #cccccc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glow 3s ease-in-out infinite;
}
.coming-soon-text p {
  font-size: clamp(16px, 2vw, 22px);
  color: rgba(255, 255, 255, 0.8);
  margin: 15px 0;
  line-height: 1.6;
}
.coming-soon-text .subtitle {
  font-size: clamp(14px, 1.8vw, 18px);
  color: rgba(255, 255, 255, 0.5);
  margin-top: 30px;
  font-style: italic;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes glow {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.5));
  }
}
/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .coming-soon-container {
    padding-top: 100px;
  }
  .blur-1, .blur-2, .blur-3 {
    width: 250px;
    height: 250px;
    filter: blur(80px);
  }
  .coming-soon-content {
    padding: 20px;
  }
  .coming-soon-text h1 {
    letter-spacing: 1px;
  }
  .back-arrow {
    top: 15px;
    left: 15px;
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 480px) {
  .blur-1, .blur-2, .blur-3 {
    width: 200px;
    height: 200px;
    filter: blur(60px);
  }
  .back-arrow {
    top: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
  }
}