/* Game Page Styles */
.gp-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 40px 20px;
}

.gp-header {
  text-align: center;
  color: white;
  margin-bottom: 60px;
  animation: fadeInDown 0.8s ease-out;
}

.gp-header h1 {
  font-size: 3.5rem;
  margin: 0;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.gp-subtitle {
  font-size: 1.3rem;
  margin: 12px 0 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
}

.gp-main {
  max-width: 1200px;
  margin: 0 auto;
}

.gp-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 20px;
}

.gp-game-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  animation: fadeInUp 0.8s ease-out;
}

.gp-game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.gp-card-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 25px;
}

.gp-card-header h2 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
}

.gp-card-body {
  padding: 25px;
  flex-grow: 1;
}

.gp-description {
  margin: 0;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.gp-card-footer {
  padding: 20px 25px;
  border-top: 1px solid #e0e0e0;
  display: flex;
  gap: 12px;
}

.gp-btn {
  flex: 1;
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.gp-btn:hover {
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
  transform: translateY(-2px);
}

.gp-btn:active {
  transform: translateY(0);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .gp-header h1 {
    font-size: 2.5rem;
  }

  .gp-subtitle {
    font-size: 1.1rem;
  }

  .gp-games-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 10px;
  }

  .gp-card-header h2 {
    font-size: 1.5rem;
  }

  .gp-description {
    font-size: 0.95rem;
  }
}
