/* Tab Navigation Styles */
.tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
}

.tab-button {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.75rem 1.5rem;
  font-family: 'Comfortaa', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px 8px 0 0;
  position: relative;
}

.tab-button:hover {
  color: #fff;
  text-shadow: 0 0 2px #66ffff, 0 0 3px #ff66cc;
}

.tab-button.active {
  color: #fff;
  text-shadow: 0 0 2px #66ffff, 0 0 3px #ff66cc, 0 0 4px #9933ff;
}

.tab-button.active::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #66ffff, #ff66cc, #9933ff);
  box-shadow: 0 0 10px rgba(102, 255, 255, 0.5);
}

/* Tab Content Styles */
.tab-content {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tab-content.active {
  display: block;
  opacity: 1;
}