.your-button-class {
  position: relative;
  background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 50%, #45b7d1 100%);
  border: none;
  border-radius: 12px;
  padding: 16px 32px;
  font-weight: 600;
  color: white;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  cursor: pointer;
  overflow: hidden;
  
  
  box-shadow: 
    0 8px 16px rgba(0,0,0,0.2),
    0 4px 8px rgba(0,0,0,0.1),
    inset 0 1px 0 rgba(255,255,255,0.3);
  
  transform: perspective(500px) rotateX(10deg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


.your-button-class::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(
    180deg, 
    rgba(255,255,255,0.4) 0%, 
    rgba(255,255,255,0.1) 100%
  );
  border-radius: 12px 12px 0 0;
  pointer-events: none;
}


.your-button-class::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255,255,255,0.3) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s;
}


.your-button-class:hover {
  transform: perspective(500px) rotateX(5deg) translateY(-2px);
  box-shadow: 
    0 12px 24px rgba(0,0,0,0.25),
    0 6px 12px rgba(0,0,0,0.15),
    inset 0 1px 0 rgba(255,255,255,0.4);
}

.your-button-class:hover::after {
  transform: translateX(100%);
}


.your-button-class:active {
  transform: perspective(500px) rotateX(15deg) translateY(1px);
  box-shadow: 
    0 4px 8px rgba(0,0,0,0.3),
    0 2px 4px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.2);
}