/* Game Pages Specific Styles */

.game-section {
  padding: 6rem 0;
  min-height: calc(100vh - 300px);
}

.game-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  text-shadow: 0 0 10px var(--primary-glow);
}

.game-description {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
}

.game-frame {
  background-color: var(--card-bg);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 255, 255, 0.1);
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.game-frame p {
  color: var(--text-secondary);
  font-size: 1.2rem;
  text-align: center;
}

.game-controls {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

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

.key {
  background-color: var(--card-bg);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 4px;
  padding: 0.5rem 1rem;
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  margin-bottom: 0.5rem;
  min-width: 80px;
  text-align: center;
  box-shadow: 0 0 5px var(--primary-glow);
}

.action {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .game-title {
    font-size: 2rem;
  }
  
  .game-frame {
    min-height: 400px;
  }
}

@media (max-width: 480px) {
  .game-title {
    font-size: 1.8rem;
  }
  
  .game-frame {
    min-height: 300px;
  }
  
  .game-controls {
    gap: 1rem;
  }
  
  .key {
    min-width: 60px;
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
}