/* ========== TECHNICAL SECTION - DYNAMIC ========== */
.technical-dynamic-section {
  background: #000000;
  padding: 4rem 0;
}

.technical-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tech-tab {
  padding: 0.8rem 2rem;
  background: rgba(170, 0, 255, 0.1);
  border: 1px solid rgba(170, 0, 255, 0.3);
  border-radius: 50px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1rem;
}

.tech-tab:hover {
  background: rgba(170, 0, 255, 0.2);
  transform: translateY(-2px);
}

.tech-tab.active {
  background: linear-gradient(135deg, #AA00FF, #CC33FF);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 0 15px rgba(170, 0, 255, 0.5);
}

.technical-content {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  min-height: 400px;
}

.tech-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  transform: translateX(20px);
  background: rgba(170, 0, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 2rem;
  padding: 2.5rem;
  border: 1px solid rgba(170, 0, 255, 0.3);
}

.tech-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.tech-panel h3 {
  background: linear-gradient(135deg, #00CCFF, #AA00FF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-family: 'Orbitron', monospace;
}

.tech-panel ul {
  list-style: none;
  padding: 0;
}

.tech-panel li {
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  color: white;
  font-size: 1rem;
  border-bottom: 1px solid rgba(170, 0, 255, 0.1);
}

.tech-panel li:last-child {
  border-bottom: none;
}

.tech-panel li::before {
  content: "✨";
  position: absolute;
  left: 0;
  color: #AA00FF;
}

.tech-grid-dynamic {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.tech-card-dynamic {
  background: rgba(170, 0, 255, 0.05);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid rgba(170, 0, 255, 0.2);
}

.tech-card-dynamic:hover {
  transform: translateY(-5px);
  border-color: #AA00FF;
  background: rgba(170, 0, 255, 0.1);
}

.tech-card-dynamic i {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #00CCFF, #AA00FF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}

.tech-card-dynamic h4 {
  background: linear-gradient(135deg, #00CCFF, #AA00FF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.8rem;
}

.tech-card-dynamic p {
  color: #AA88FF;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .tech-panel {
    padding: 1.5rem;
    position: relative;
    min-height: auto;
  }
  
  .technical-content {
    min-height: auto;
  }
  
  .tech-panel {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }
  
  .tech-panel.active {
    display: block;
  }
  
  .tech-tab {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}