.ai-knowledge-section {
  background: rgba(10, 30, 50, 0.9);
  border: 1px solid rgba(0, 234, 255, 0.3);
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 0 20px rgba(0, 234, 255, 0.2);
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
}

.ai-knowledge-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 234, 255, 0.1) 0%, transparent 70%);
  z-index: -1;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.ai-knowledge-title {
  font-family: 'Orbitron', sans-serif;
  color: #00eaff;
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(0, 234, 255, 0.7);
  position: relative;
}

.ai-knowledge-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00eaff, transparent);
  margin: 8px auto;
}

.ai-knowledge-content {
  color: #c8d6e5;
  line-height: 1.7;
  font-size: 0.9rem;
}

.ai-knowledge-content p {
  margin-bottom: 12px;
  text-align: justify;
}

.ai-knowledge-content strong {
  color: #ffd700;
  font-weight: 600;
}

.ai-knowledge-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 15px;
}

.ai-knowledge-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  background: rgba(2, 12, 27, 0.4);
  border-radius: 8px;
  border: 1px solid rgba(0, 234, 255, 0.15);
  transition: all 0.3s ease;
}

.ai-knowledge-point:hover {
  transform: translateX(5px);
  border-color: rgba(0, 234, 255, 0.4);
  box-shadow: 0 0 10px rgba(0, 234, 255, 0.2);
}

.ai-point-icon {
  color: #00eaff;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.ai-point-text {
  color: #a0b0c0;
  font-size: 0.85rem;
  line-height: 1.5;
}

@media (max-width: 480px) {
  .ai-knowledge-section {
    padding: 15px;
    margin: 15px 0;
  }
  
  .ai-knowledge-title {
    font-size: 1.2rem;
  }
  
  .ai-knowledge-content {
    font-size: 0.85rem;
  }
  
  .ai-knowledge-points {
    gap: 10px;
  }
  
  .ai-point-text {
    font-size: 0.8rem;
  }
}