.wrapperx3 {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #3b3839;
  color: #fff;
  font-family: Arial, sans-serif;
}
main {
  flex: 1;
  width: 95%;
  max-width: 1300px;
  margin: 0 auto;
}
.navbarx3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #2e2b2c;
}
.logox3 {
  height: 40px;
  cursor: pointer;
}
.logo img {
 width: 100%;
 height: auto;
}
.nav-linksx3 a {
  margin: 0 10px;
  color: white;
  text-decoration: none;
}
.auth-buttonsx3 {
  display: flex;
  gap: 10px;
}
.login-btnx3, .register-btnx3 {
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
}
.login-btnx3 {
  background: #23ba9e;
}
.register-btnx3 {
  background: #ff2401;
}
.banner-imgx3 {
  width: 100%;
  height: auto;
  cursor: pointer;
}
.game-blockx3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin: 20px 0;
}
.gamex3 {
  cursor: pointer;
}
.gamex3 img {
width: 100%;
  height: auto;
}
.text-blockx3 {
  background: #4c494a;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
}
.footerx3 {
  display: flex;
  justify-content: center;
  padding: 20px;
  gap: 10px;
  background: #2e2b2c;
}
.footerx3 img {
  cursor: pointer;
}
@media (max-width: 768px) {
  .game-blockx3 {
    grid-template-columns: repeat(2, 1fr);
  }
}