/* Elegant Psychedelic Effects for Volsetes Theme (Modern & Minimal) */

/* Psychedelic link hover (subtle color transition) */
a:hover {
  color: #6a5acd;
  text-shadow: none;
}

/* Modern Button with subtle gradient */
.button {
  position: relative;
  overflow: hidden;
  background-color: #6a5acd;
  color: #ffffff;
  border: none;
  border-radius: 0;
  padding: 1rem 2.5rem;
  font-weight: 600;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: normal;
  transition: all 0.3s ease;
  box-shadow: none;
  display: inline-block;
  cursor: pointer;
  text-align: center;
}

.button:hover {
  background-color: #00a8a8;
  transform: none;
  box-shadow: none;
  color: #ffffff;
}

/* Psychedelic border (static gradient) */
.psychedelic-border {
  border: 2px solid;
  border-image: linear-gradient(to right, #6a5acd, #00a8a8) 1;
  border-radius: 0;
}

/* Elegant psychedelic text effect (static gradient) */
.psychedelic-text {
  background: linear-gradient(to right, #6a5acd, #00a8a8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Particle canvas styling (optional) */
#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  opacity: 0.3;
}

/* Remove all heavy animations */
@keyframes psychedelic-bg {
  /* Disabled */
}

body {
  animation: none;
}
