body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.background-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 10, 1);
  background-repeat: repeat;
  z-index: -1;
}

.container {
  max-width: 700px;
  margin: 0 auto;
  box-sizing: border-box;
}

.full-width-image {
  width: 100%;
  height: auto;
}

.content {
  background-color: rgba(255, 255, 255, 0.03);
  padding: 10px;
}

.newsletter-form {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  margin-top: 30px;
}

.newsletter-form label,
.newsletter-form input,
.newsletter-form button {
  display: block;
  margin: 0 auto;
}

.newsletter-form label {
  color: white; /* Set label color to white */
}

.newsletter-form input[type="email"] {
  width: 40%; /* Make the email input full width */
  padding: 10px;
  margin-bottom: 10px;
}

.newsletter-form button {
  background-color: #4CAF50; /* Green background color */
  color: white; /* Text color */
  border: none;
  border-radius: 8px; /* Rounded corners */
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

.disclaimer {
  color: white;
  font-size: 10px;
  text-align: center;
  margin-top: 10px;
}

.game-grid-top {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(1, auto);
  gap: 0px;
  margin-top: 0px;
  margin-left: 20px;
  margin-bottom: 20px;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 0px;
  margin-top: 0px;
}

.game-item {
  text-align: center;
  text-decoration: none;
  color: #333;
}

.game-item img {
  width: 300px;
  height: auto;
}

.unsubscribe-link {
  text-align: center;
}

.unsubscribe-link a {
  color: #999; /* Szürke szín */
  text-decoration: none;
  font-size: 12px;
}

.unsubscribe-link a:hover {
  text-decoration: underline;
}
