body {
  background: var(--background-alt);
  color: var(--text-primary-alt);
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}
h1,
h2,
h3 {
  color: var(--text-primary-alt);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: var(--background-alt);
}

#collection {
  scroll-margin-top: var(--nav-height);
}

.icon-btn {
  background: #0a0a0a;
}

.hero p{
  color: var(--text-artxtech-p);
}

.hero.axt {
  padding: 150px 0;
  position: relative;
  overflow: hidden;
}

.hero.axt * {
  margin: 0 20px;
}

.hero.one {
  background:
    linear-gradient(
      rgba(19, 19, 19, 1),
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.7),
      rgba(19, 19, 19, 1)
    ),
    url("/img/artXtech/kifoku-jellyfish-17685_512.gif");
  background-size: cover;
  /* background-position: center; */
  background-repeat: no-repeat;
  padding: 0 0 250px;
}

.hero.three {
  background:
    linear-gradient(
      rgba(19, 19, 19, 1),
      rgba(10, 10, 10, 0.6),
      rgba(10, 10, 10, 0.8),
      rgba(10, 10, 10, 0.6),
      rgba(19, 19, 19, 1)
    ),
    url("/img/artXtech/avedeto-night-12128.gif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 34px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.whatsapp-float img {
  width: 32px; /* Adjust as needed */
  height: 32px;
  object-fit: contain;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float.hide {
  opacity: 0;
  transform: translate(0, 20px);
  pointer-events: none;
}

.scroll-info {
  font-size: x-small;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 0.5rem;

  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  z-index: 1001;
}

.scroll-info.hide {
  opacity: 0;
  transform: translate(-50%, 20px);
  pointer-events: none;
}

.btn {
  position: relative;
  padding: 16px 42px;
  border: none;
  cursor: pointer;
  color: var(--text-primary-alt);
  letter-spacing: 2px;
  border-radius: 35px;
  z-index: 1;
  transform: translateY(0) scale(1);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.3s ease;
  will-change: transform;
}

.btn::before {
  content: "";
  border-radius: 35px;
  position: absolute;
  inset: -2px;
  z-index: -1;
  background: linear-gradient(
    90deg,
    #ff0000,
    #ff8800,
    #ffee00,
    #00ff66,
    #00ccff,
    #3355ff,
    #aa00ff,
    #ff0066,
    #ff0000
  );
  /* filter: blur(6px); */
  opacity: 0.85;
  background-size: 300% 100%;
  animation: rainbow 5s linear infinite;
}

.btn::after {
  content: "";
  border-radius: 35px;
  position: absolute;
  inset: 0.1px;
  background: var(--background-alt);
  z-index: -1;
}

/* Hover Effects */
.btn:hover {
  transform: translateY(-3px) scale(1.03);
  font-weight: bold;
  letter-spacing: 3px;
}

.btn:hover::before {
  /* filter: blur(12px); */
  opacity: 1;
  animation-duration: 2s;
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

@keyframes rainbow {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 300% 50%;
  }
}

.shine-text {
  display: inline-block;
  color: var(--text-artxtech-p);

  /* Normal text color */
  background: linear-gradient(
    120deg,
    var(--text-artxtech-p) 0%,
    var(--text-artxtech-p) 45%,
    #ffffff 50%,
    var(--text-artxtech-p) 55%,
    var(--text-artxtech-p) 100%
  );

  background-size: 250% 100%;
  background-position: 150% 0;

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.shine-text.shine {
  animation: textShine 5s ease-in-out;
}

@keyframes textShine {
  from {
    background-position: 150% 0;
  }

  to {
    background-position: -150% 0;
  }
}

.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  top: -20px;
  border-radius: 50%;
  opacity: 0;
  will-change: transform, opacity;
}

@keyframes floatDown {
  0% {
    transform: translate3d(0, -30px, 0) rotate(0deg) scale(0.7);
    opacity: 0;
  }

  10% {
    opacity: var(--opacity);
  }

  35% {
    transform: translate3d(var(--drift1), 35vh, 0) rotate(120deg) scale(1);
  }

  65% {
    transform: translate3d(var(--drift2), 70vh, 0) rotate(240deg) scale(0.9);
  }

  100% {
    transform: translate3d(var(--drift3), 110vh, 0) rotate(360deg) scale(0.7);

    opacity: 0;
  }
}
