.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #403d3e;
  color: #fff;
  font-family: Arial, sans-serif;
}
main {
  flex: 1;
  width: 95%;
  max-width: 1300px;
  margin: 0 auto;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #2e2b2c;
}
.logo {
  cursor: pointer;
}
.nav-links a {
  margin: 0 10px;
  color: white;
  text-decoration: none;
}
.auth-buttons {
  display: flex;
  gap: 10px;
}
.login-btn, .register-btn {
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
}
.login-btn {
  background: #23ba9e;
}
.register-btn {
  background: #ff2401;
}
.banner-img {
  width: 100%;
  height: auto;
  cursor: pointer;
}
.game-block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin: 20px 0;
}
.game {
  cursor: pointer;
}
.game img{
    width:100%;
    height: 100%;
}
.text-block {
  background: #4c494a;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
}
.footer {
  display: flex;
  justify-content: center;
  padding: 20px;
  background: #2e2b2c;
  font-size: 14px;
}