@keyframes fade-in {
    from {
        background-color: rgba(0, 0, 0, 0);
    }
    to {
        background-color: rgba(0, 0, 0, 0.8);
    }
}

@keyframes fade-out {
    from {
        background-color: rgba(0, 0, 0, 0.8);
    }
    to {
        background-color: rgba(0, 0, 0, 0);
    }
}

@keyframes slide-in {
    from {
        transform: translateX(500px);
    }
    to {
        transform: translateX(0px);
    }
}

@keyframes slide-out {
    from {
        transform: translateX(0px);
    }
    to {
        transform: translateX(500px);
    }
}

@layer base {
}

#cart-drawer[data-state="open"] {
    animation: fade-in 0.4s forwards;
}

#cart-drawer[data-state="closed"] {
    animation: fade-out 0.4s forwards;
}

#cart-drawer[data-state="open"] > div {
    animation: slide-in 0.4s forwards;
}

#cart-drawer[data-state="closed"] > div {
    animation: slide-out 0.4s forwards;
}

.dialog[data-state="open"] {
    animation: fade-in 0.4s forwards;
}

.dialog[data-state="closed"] {
    animation: fade-out 0.4s forwards;
}

.dialog[data-state="open"] > div {
    animation: dialog-in 0.2s forwards;
}

.dialog[data-state="closed"] > div {
    animation: dialog-out 0.2s forwards;
}

@keyframes dialog-in {
    from {
        opacity: 0;
        scale: 50%;
    }
    to {
        opacity: 1;
        scale: 100%;
    }
}

@keyframes dialog-out {
    from {
        opacity: 1;
        scale: 100%;
    }
    to {
        opacity: 0;
        scale: 50%;
    }
}

#category-section,
#category #products-list {
    scroll-margin-top: 100px;
    transition:
        opacity 0.5s ease-out,
        transform 0.5s ease-out;
    opacity: 0;
    transform: translateY(20px);
}

#category-section.visible,
#category #products-list.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes loading {
    0% {
        left: -50%;
    }

    to {
        left: 100%;
    }
}

.rnzw-floating-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
  background: #000; /* fundo escuro */
}

.rnzw-word {
  position: absolute;
  font-family: sans-serif;
  font-weight: bold;
  color: hsl(0, 100%, 50%);
  white-space: nowrap;
  animation: fly-random linear infinite, colorCycle 6s infinite;
}

@keyframes fly-random {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translateX(100px) translateY(100px) rotate(var(--angle));
  }
}

@keyframes colorCycle {
  0%   { color: hsl(0, 100%, 50%); }
  25%  { color: hsl(120, 100%, 50%); }
  50%  { color: hsl(240, 100%, 50%); }
  75%  { color: hsl(300, 100%, 50%); }
  100% { color: hsl(0, 100%, 50%); }
}
.fake-review-popup {
  position: fixed;
  bottom: 80px;
  left: 20px;
  background-color: #1c1c1c;
  color: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-family: sans-serif;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 9999;
  pointer-events: none;
}

.fake-review-popup.show {
  opacity: 1;
  transform: translateY(0);
}
<link rel="stylesheet" href="/styles/main.css">

/* Container do fundo com texto gigante */
.blood-bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -999;
  width: 100%;
  height: 100%;
  background: #000;
  overflow: hidden;
  pointer-events: none;
}

/* Texto central gigante */
.blood-bg::before {
  content: "RNZW STORE";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 120px;
  font-weight: 900;
  color: rgba(255, 0, 0, 0.05);
  white-space: nowrap;
  user-select: none;
}

/* Gotículas de sangue */
.blood-drop {
  position: absolute;
  width: 3px;
  height: 20px;
  background: red;
  opacity: 0.3;
  border-radius: 50%;
  animation: fall linear infinite;
}

/* Animação da chuva */
@keyframes fall {
  0% {
    transform: translateY(-100px) scaleX(0.5);
    opacity: 0.4;
  }
  100% {
    transform: translateY(100vh) scaleX(1);
    opacity: 0;
  }
}
.social-buttons {
  position: fixed;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.social-icon {
  background-color: #8a2be2;
  color: white;
  font-size: 24px;
  padding: 16px;
  border-radius: 20px;
  text-align: center;
  width: 52px;
  height: 52px;
  line-height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #a95dfc;
  transition: transform 0.2s, background 0.3s;
}

.social-icon:hover {
  transform: scale(1.1);
  background-color: #9b30ff;
}
