﻿/* /css/components/navigation-buttons.css */
/* Cyberpunk Navigation Buttons */

.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 155px;
  height: 42px;
  margin: 4px 0;
  padding: 0 20px;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #f1f5f9;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
}

.nav-btn::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #00f0ff, #8b5cf6, #ff006e, #00f0ff);
  border-radius: 8px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
  animation: gradient-rotate 3s linear infinite;
  background-size: 400% 400%;
}

@keyframes gradient-rotate {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.nav-btn:hover {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(139, 92, 246, 0.2));
  border-color: rgba(0, 240, 255, 0.6);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
  transform: translateY(-2px);
}

.nav-btn:hover::before {
  opacity: 0.5;
}

.nav-btn.active {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.3), rgba(139, 92, 246, 0.3));
  border-color: #00f0ff;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.nav-btn-primary {
  background: linear-gradient(135deg, rgba(255, 0, 110, 0.2), rgba(139, 92, 246, 0.2));
  border-color: rgba(255, 0, 110, 0.5);
  box-shadow: 0 0 15px rgba(255, 0, 110, 0.3);
}

.nav-btn-primary:hover {
  background: linear-gradient(135deg, rgba(255, 0, 110, 0.3), rgba(139, 92, 246, 0.3));
  border-color: #ff006e;
  box-shadow: 0 0 25px rgba(255, 0, 110, 0.5);
}

.nav-btn:active {
  transform: translateY(0);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

@media (max-width: 768px) {
  .nav-btn {
    width: 100%;
    min-width: 100%;
    height: 48px;
    font-size: 16px;
  }
}
