/* Action Buttons Styles */
.action-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.action-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff3838 0%, #c41e1e 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 56, 56, 0.3);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.action-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s ease;
}

.action-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 56, 56, 0.5);
  background: #c41e1e;
}

.action-button:hover::before {
  left: 100%;
}

.action-button ion-icon {
  font-size: 20px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .action-buttons {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 0 10px;
  }

  .action-button {
    flex: 1;
    min-width: 140px;
    max-width: 200px;
    padding: 10px 15px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .action-buttons {
    flex-direction: column;
    width: 90%;
  }

  .action-button {
    width: 100%;
    max-width: 100%;
  }
}

/* Animation for buttons */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 56, 56, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 56, 56, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 56, 56, 0);
  }
}

.action-button.pulse {
  animation: pulse 2s infinite;
}

/* Floating animation for the invite button */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0px);
  }
}

.action-button.float {
  animation: float 3s ease-in-out infinite;
  box-shadow: 0 6px 15px rgba(255, 56, 56, 0.3);
}
