.features-page-section {
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg,
      rgba(0, 255, 255, 0.05) 0%,
      rgba(255, 0, 255, 0.05) 100%),
    #0a0a0f;
  min-height: calc(100vh - 80px);
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-header h1 {
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  color: #00ffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
  margin-bottom: 1rem;
}

.features-header p {
  color: #b0b0b0;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

.features-grid-large {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-box {
  background: rgba(15, 15, 25, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(0, 255, 255, 0.1);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-box:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 255, 255, 0.4);
  box-shadow: 0 0 50px rgba(0, 255, 255, 0.2);
}

.feature-box h2 {
  font-family: "Orbitron", sans-serif;
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-icon {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #00ffff, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-box p {
  color: #d0d0d0;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feature-box ul {
  list-style: none;
  padding-left: 1rem;
}

.feature-box li {
  color: #b0b0b0;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-box li::before {
  content: "✓";
  color: #00ffff;
  font-weight: bold;
}

/* Highlight specifically for Multiplayer */
.feature-box.highlight {
  border-color: rgba(255, 0, 255, 0.3);
  background: linear-gradient(145deg,
      rgba(15, 15, 25, 0.95),
      rgba(25, 10, 25, 0.95));
}

.feature-box.highlight h2 .feature-icon {
  background: linear-gradient(135deg, #ff00ff, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
  .features-grid-large {
    grid-template-columns: 1fr;
  }

  .features-header h1 {
    font-size: 2.2rem;
  }
}

/* RTL Support */
[dir="rtl"] .feature-box ul {
  padding-left: 0;
  padding-right: 1rem;
}