.container {
  max-width: 1080px;
  margin: 0 auto;
}

.specs-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 15px;
  font-weight: var(--font-semibold);
  color:white
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 50px;
  font-size: 1.2rem;
}

.specs-comparison {
  /* background: rgba(255, 255, 255, 0.05); */
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
  margin-top: 40px;
}

.specs-tabs {
  display: flex;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  justify-content: center;
}

.specs-tab {
  background: none;
  border: none;
  color: var(--text-muted);
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: var(--font-medium);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.specs-tab::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--color-purple);
  transition: width 0.3s ease;
}

.specs-tab:hover {
  color: var(--text-light);
}

.specs-tab.active {
  color: var(--text-light);
}

.specs-tab.active::after {
  width: 100%;
}

.specs-content {
  position: relative;
}

.specs-table {
  display: none;
  animation: fadeIn 0.5s ease;
}

.specs-table.active {
  display: block;
}

.specs-header {
  margin-bottom: 30px;
  text-align: center;
}

.specs-header h3 {
  font-size: 1.8rem;
  color: var(--text-light);
  margin-bottom: 10px;
  font-weight: var(--font-semibold);
}

.specs-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.specs-category {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.specs-category h4 {
  color: var(--color-purple);
  font-size: 1.2rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: var(--font-semibold);
}

.specs-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
}

.specs-item:hover {
  background: rgba(205, 86, 255, 0.1);
}

.specs-label {
  font-weight: var(--font-medium);
  color: var(--text-light);
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.specs-value {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .specs-comparison {
    padding: 20px;
  }

  .specs-tabs {
    flex-direction: column;
    align-items: center;
  }

  .specs-tab {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }

  .specs-grid {
    grid-template-columns: 1fr;
  }

  .specs-header h3 {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }
}
