* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #121212;
  color: white;
}

.container {
  width: 80%;
  margin: 0 auto;
}

header {
  background-color: #2d2d2d;
  color: white;
  padding: 20px 0;
  text-align: center;
}

header .logo h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

header nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  padding-top: 10px;
}

header nav ul li {
  margin: 0 20px;
}

header nav ul li a {
  color: #ff5722;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
}

header nav ul li a:hover {
  color: #ff9800;
}

.section {
  padding: 60px 20px;
  background-color: #1c1c1c;
  text-align: center;
  margin-top: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.advantages, .posts {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.advantage, .post {
  background-color: #333;
  padding: 30px;
  border-radius: 8px;
  flex-basis: 30%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.advantage h3, .post h3 {
  margin-bottom: 10px;
}

.post a {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 15px;
  background-color: #ff5722;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.post a:hover {
  background-color: #ff9800;
}

footer {
  background-color: #2d2d2d;
  color: white;
  text-align: center;
  padding: 20px 0;
}

footer p {
  margin: 0;
}

footer .footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

footer .footer-links li {
  display: inline;
}

footer .footer-links li a {
  color: #ff5722;
  text-decoration: none;
  font-size: 1rem;
}

footer .footer-links li a:hover {
  color: #ff9800;
}


.game-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.games-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.game {
  background-color: #333;
  padding: 30px;
  border-radius: 8px;
  flex: 1;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.game h3 {
  margin-bottom: 10px;
}

.game-img {
  width: 80%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
