.gameannouncement {
    width:100%;
}


.main-header {
  text-align: left;
  max-width:1000px;
  padding: 2rem;
  color: #fff;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  padding: 1rem;
}

.image-container {
  padding: 1rem;
  text-align: center;
}

.game-image {
  max-width: 100%;
  height: auto;
  border: 3px solid #005f73;
  margin-bottom: 0.5rem;
}

.image-caption {
  color: #666;
  font-style: italic;
}

.call-to-action {
  background: #0a9396;
  text-align: center;
  padding: 2rem;
  color: #fff;
}

.btn-register, .btn-gameselect {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  margin: 0.5rem;
  background: #94d2bd;
  color: #333;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.btn-register:hover, .btn-gameselect:hover {
  background: #e9d8a6;
}


@media (max-width: 768px) {
  .gallery {
    grid-template-columns: 1fr;
  }
  .gameannouncement {
    width: 95%;
  }
}

@media (max-width: 1024px) {
  .gallery {
    grid-template-columns: 1fr;
  }
  .gameannouncement {
    width:95%;
  }
}

