/* ========== Gaming Page Styles ========== */

.gaming-projects {
  padding: 5rem 10%;
  background: #0f0f0f;
  text-align: center;
}

.gaming-projects .grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.game-card {
  background: #161616;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 255, 102, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 255, 102, 0.25);
}

.game-image {
  position: relative;
  overflow: hidden;
  height: 180px;
}

.game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.game-card:hover .game-image img {
  transform: scale(1.1);
}

.game-info {
  padding: 1.5rem;
  text-align: left;
}

.game-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #00ff66;
}

.game-info p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #ddd;
}

/* CTA innerhalb Gaming Seite */
.cta {
  margin-top: 4rem;
  background: linear-gradient(135deg, #00ff66, #00ccff);
  color: #000;
  padding: 3rem 2rem;
  border-radius: 15px;
}

.cta h2 span {
  color: #fff;
  text-shadow: 0 0 10px #000;
}

/* Responsive */
@media (max-width: 768px) {
  .game-info {
    text-align: center;
  }
}
