body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family: sans-serif;
  width: 100vw;
  height: 100vh;
}

.gallery-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  background: url("../images/bg.png") no-repeat center center/cover;
  box-sizing: border-box;
}

/* Responsive game card sizing */
.game-card {
  width: clamp(140px, 15vw, 350px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.game-card:hover {
  transform: scale(1.05);
}

.game-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Fixed logo */
.logo {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 120px;
  height: auto;
  z-index: 999;
  pointer-events: none;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .gallery-container {
    background: url("../images/bg-mobile.png") no-repeat center center/cover;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 10px;body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family: sans-serif;
  width: 100vw;
  height: 100vh;
}

.gallery-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  background: url("../images/bg.png") no-repeat center center;
  background-size: contain;
  background-attachment: fixed;
  image-rendering: crisp-edges;
  box-sizing: border-box;
  position: relative;
}

/* Responsive game card sizing */
.game-card {
  width: clamp(140px, 20vw, 350px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.game-card:hover {
  transform: scale(1.05);
}

.game-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Fixed logo */
.logo {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 400px;
  height: auto;
  z-index: 999;
  pointer-events: none;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .gallery-container {
    background: url("../images/bg-mobile.png") no-repeat center center/cover;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 10px;
  }

  .game-card {
    scroll-snap-align: center;
  }

  .logo {
    width: 200px;
    top: 15px;
    right: 15px;
  }

  .gallery-container::-webkit-scrollbar {
    display: none;
  }
}

  }

  .game-card {
    scroll-snap-align: center;
  }

  .logo {
    width: 150px;
    top: 15px;
    right: 15px;
  }

  .gallery-container::-webkit-scrollbar {
    display: none;
  }
}
