/* About Section Styles */
#about-section {
  background: linear-gradient(to bottom, var(--darker-bg), var(--dark-bg));
  position: relative;
  overflow: hidden;
}

#about-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 10% 10%, rgba(123, 44, 191, 0.1) 0%, transparent 30%),
    radial-gradient(circle at 90% 90%, rgba(0, 245, 255, 0.1) 0%, transparent 30%);
  z-index: 0;
}

.console-container {
  background: rgba(10, 10, 20, 0.8);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 245, 255, 0.3);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
  position: relative;
  z-index: 1;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.console-container:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(45deg, transparent 48%, rgba(0, 245, 255, 0.1) 49%, rgba(0, 245, 255, 0.1) 51%, transparent 52%) repeat,
    linear-gradient(-45deg, transparent 48%, rgba(0, 245, 255, 0.1) 49%, rgba(0, 245, 255, 0.1) 51%, transparent 52%) repeat;
  background-size: 30px 30px;
  opacity: 0.3;
  z-index: -1;
  animation: backgroundPulse 10s linear infinite;
}

.console-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: var(--spacing-sm) var(--spacing-md);
  background: rgba(5, 5, 10, 0.8);
  border-bottom: 1px solid rgba(0, 245, 255, 0.3);
}

.console-light {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--neon-crimson);
  box-shadow: 0 0 10px rgba(255, 30, 86, 0.7);
  animation: pulse 2s infinite;
}

.console-light:nth-child(2) {
  background: var(--thunder-yellow);
  box-shadow: 0 0 10px rgba(255, 214, 10, 0.7);
  animation: pulse 2s infinite 0.3s;
}

.console-light:nth-child(3) {
  background: var(--electric-cyan);
  box-shadow: 0 0 10px rgba(0, 245, 255, 0.7);
  animation: pulse 2s infinite 0.6s;
}

.console-content {
  padding: var(--spacing-lg);
}

.console-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
}

.console-stats {
  display: flex;
  justify-content: space-around;
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--electric-cyan);
  text-shadow: var(--cyan-glow);
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

/* Animations */
@keyframes backgroundPulse {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 0.2;
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .console-content {
    padding: var(--spacing-md);
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .console-stats {
    flex-direction: column;
    gap: var(--spacing-lg);
  }
  
  .stat-item {
    width: 100%;
  }
}