.tabs-container {
  margin-top: 160px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.tabs-container ul ul li {
  color: #999999;
}

.tabs-navigation {
  display: flex;
  gap: 2px;
  background: rgba(255, 255, 255, 0.03);
  padding: 5px;
  border-radius: 5px 5px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: none;
}

.tab-button {
  font-family: var(--x0ne-font-display);
  background: transparent;
  color: rgba(255, 255, 255, 0.3);
  border: none;
  padding: 10px 20px;
  font-size: 18px;
  cursor: pointer;
  transition: color 0.3s ease;
  border-radius: 3px 3px 0 0;
  position: relative;
}

.tab-button:hover {
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  box-shadow: none;
}

.tab-button::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tab-button:hover::after {
  transform: scaleX(1);
}

.tab-button.active {
  color: rgba(255, 255, 255, 0.8);
  background: transparent;
}

.tab-button.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: scaleX(1);
}

.tab-content {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top: none;
  padding: 20px;
  border-radius: 0 0 5px 5px;
  min-height: 400px;
  box-shadow: none;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}
