*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background-color: #ffffff;
  color: #111;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.back-btn {
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border: 1px solid #333;
  background: none;
  cursor: pointer;
}

.logo {
  height: clamp(40px, 5vw, 70px);
}

.game-card {
  max-width: 90%;
  background-color: #F3F3F3;
  padding: 2rem;
  text-align: center;
  border-radius: 0;
  border: 1px solid #dadada;
  margin: auto;
  min-height: 67vh;
  display: flex;
  position: relative;
}
.game-card .game-card-container {
  width: fit-content;
  background-color: rgba(218, 218, 218, 0.5);
  padding: 2rem;
  text-align: center;
  margin: auto;
  z-index: 1;
}
.game-card .box-left {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40%;
  height: 40%;
  background: #E9E9E9;
  z-index: 0;
}
.game-card .box-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 40%;
  background: #E9E9E9;
  z-index: 0;
}

.game-thumb {
  width: 202px;
  height: 202px;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 1rem;
}

.game-title {
  color: #3B21CC;
  margin: 0.5rem 0;
}

.creator-label {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #666;
}

.creator-name {
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.play-btn {
  display: inline-block;
  background-color: #3B21CC;
  color: white;
  text-decoration: none;
  padding: 0.75rem 2rem;
  border-radius: 0;
  font-weight: 500;
  transition: background 0.3s ease;
  outline: none;
  border: none;
}

.play-btn:hover {
  background-color: #1a07a9;
}

.content-container {
  min-height: 75vh;
}

.footer-art {
  min-height: 25vh;
  background: url(../img/gamepage-footer-background.svg) no-repeat;
  background-size: cover;
  background-position: center bottom;
}
@media screen and (orientation: landscape) and (max-width: 920px) {
  .footer-art {
    min-height: 60vh;
    background-position: top right;
  }
}
@media screen and (orientation: landscape) and (min-width: 920px) {
  .footer-art {
    min-height: 23vh;
    background-position: top right;
  }
}

#game-container {
  height: 100%;
}

/*# sourceMappingURL=game.css.map */
