.holographic-stack {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  perspective: 1000px;
}

/* ALL ICONS BASE COLOR = TELEGRAM STYLE */
.holographic-icon {
  color: #FCB900;
}

/* UNIFIED HOVER = WHITE */
.holographic-icon:hover {
  color: #ffffff;
  transform: translateY(-10px) rotateX(20deg);
}

/* ICON BASE */
.holographic-icon {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
}

/* SVG */
.holographic-icon svg {
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 3;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 5px currentColor);
}

/* RING */
.holographic-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(252, 185, 0, 1);
  border-top-color: transparent;
  border-bottom-color: transparent;
  animation: rotate 3s linear infinite;
  opacity: 0.7;
}

/* ON HOVER RING = WHITE */
.holographic-icon:hover .holographic-ring {
  border-color: #ffffff;
  border-top-color: transparent;
  border-bottom-color: transparent;
}

/* PARTICLES */
.holographic-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    transparent 20%,
    currentColor 20%,
    currentColor 30%,
    transparent 30%,
    transparent 40%,
    currentColor 40%,
    currentColor 50%,
    transparent 50%
  );
  background-size: 15px 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* PULSE */
.holographic-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 15px currentColor;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* HOVER EFFECTS */
.holographic-icon:hover svg {
  transform: scale(1.2) rotate(10deg);
}

.holographic-icon:hover .holographic-particles {
  opacity: 0.3;
  animation: particles 3s linear infinite;
}

.holographic-icon:hover .holographic-pulse {
  opacity: 0.5;
  animation: pulse 2s ease-out infinite;
}

/* GLASS SHADOW BASE */
.holographic-icon::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 5%;
  width: 90%;
  height: 20%;
  background: rgba(252, 185, 0, 1);
  border-radius: 50%;
  filter: blur(10px);
  transform: rotateX(80deg) translateZ(-20px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* WHITE SHADOW ON HOVER */
.holographic-icon:hover::before {
  opacity: 0.5;
  background: rgba(252, 185, 0, 1);
}

/* ANIMATIONS */
@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes particles {
  from { background-position: 0 0; }
  to { background-position: 30px 30px; }
}

@keyframes pulse {
  0% { transform: scale(0.8); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.2; }
  100% { transform: scale(1.3); opacity: 0; }
}