/* ----- Trang sản phẩm (product.html) ----- */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #333;
  text-align: center;
}


header {
  background: #1034b5;
  color: white;
  padding: 15px;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration:  underline #ec0602;
  font-size: 20px;
  transition: all 0.3s ease;
}

nav a:hover {
  color: yellow;
}

.product-list {
  text-align: center;
  margin: 40px auto;
}

.games-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 20px;
}

.game-card {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.game-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.game-card h3 a {
  color: #1877F2;
  text-decoration: none;
}

.game-card h3 a:hover {
  text-decoration: underline;
}

.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 15px;
  background-color: #1877F2;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #0f5ec7;
}

/* ----- Chi tiết từng game ----- */
.game-details {
  margin: 199px auto;
  width: 90%;
  text-align: center;
  background-color: #f5f5f5;
  padding: 30px;
  border-radius: 15px;
}

.game-details img.detail-img {
  width: 900px;
  margin-top: 20px;
  border-radius: 10px;
}
