body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  text-align: center;
}

header {
  background-color: #4CAF50;
  color: white;
  padding: 10px 0;
  text-align: center;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline;
  margin: 0 10px;
}

nav ul li a {
  color: white;
  text-decoration: none;
}

.hero {
  background-color: #e9ecef;
  padding: 50px 0;
}

.player-box {
  width: 80%;
  height: 600px;
  margin: 0 auto;
  background-color: #ddd;
  position: relative;
  overflow: hidden;
}

#hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

#game-frame {
  width: 100%;
  height: 100%;
  display: none;
}

#fullscreen-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  height: 60px;
  width: 60px;
  background-color: white;

  border: none;
  cursor: pointer;
  z-index: 10;
}

#fullscreen-btn img {
  width: 40px;
  height: 40px;
  opacity: 1;

}

#fullscreen-btn:hover img {
  opacity: 1;
}




#play-btn {
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  margin: 10px;
}

#play-btn:hover{
  background-color: #45a049;
}

#game-frame {
  width: 100%;
  height: 100%;
  display: none;
}

.similar-games {
  padding: 20px;
  background-color: white;
}

.similar-games h2 {
  margin-bottom: 20px;
}

.game-list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.game-card {
  width: 150px;
  text-align: center;
  transition: transform 0.2s ease;
}

.game-card img {
  width: 100%;
  border-radius: 8px;
}

.game-card:hover {
  transform: scale(1.05);
}

.game-overview {
  padding: 20px;
  background-color: white;
  margin-top: 20px;
  padding:20px;
  padding-left: 100px;
  padding-right: 100px;
}

.game-overview p {
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
}
