@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@700;800&family=Nunito:wght@600;800;900&display=swap");
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: #211b2c;
  color: #fff7f0;
  font-family: "Nunito", system-ui, sans-serif;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
a {
  color: inherit;
  text-decoration: none;
}
header {
  height: 86px;
  margin: 0 6%;
  border-bottom: 1px solid #ffffff20;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-weight: 900;
  font-size: 23px;
  letter-spacing: -1px;
}
.brand span {
  color: #f592b6;
  margin-left: 10px;
}
.independent {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #bdb2c7;
}
main {
  padding: 45px 6% 55px;
  max-width: 1400px;
  width: 100%;
  margin: auto;
}
.heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 33px;
}
.heading h1 {
  font-size: clamp(35px, 5.5vw, 66px);
  line-height: 1.06;
  letter-spacing: -3px;
  font-weight: 900;
  margin: 0;
}
.heading p {
  color: #c5b5cd;
  font-size: 14px;
}
.game-cover {
  display: block;
  max-width: 790px;
}
.cover-art {
  position: relative;
  height: 330px;
  background: #fbcddd;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 12px 35px #100c1633;
  transition: transform 0.2s;
}
.game-cover:hover .cover-art {
  transform: translateY(-4px);
}
.cover-art img {
  position: absolute;
  width: 65%;
  right: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cover-art:after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, #fbcddd 23%, #fbcddd00 55%);
  pointer-events: none;
}
.cover-title {
  position: absolute;
  z-index: 1;
  top: 52px;
  left: 30px;
  transform: rotate(-6deg);
  text-align: center;
}
.cover-title > span {
  color: #b8487c;
  font-size: 10px;
  letter-spacing: 3px;
}
.cover-title strong {
  display: block;
  font-family: "Baloo 2", "Arial Rounded MT Bold", ui-rounded, sans-serif;
  font-size: 61px;
  line-height: 0.9;
  letter-spacing: -3px;
  color: #e55d98;
  text-shadow:
    0 3px white,
    0 5px #b35a88;
  -webkit-text-stroke: 2px white;
  paint-order: stroke fill;
  margin-top: 14px;
}
.cover-title b {
  font-size: 78px;
}
.play {
  position: absolute;
  bottom: 20px;
  left: 30px;
  z-index: 2;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 2px;
  background: #fff4f8;
  color: #a5366a;
  padding: 10px 19px;
  border-radius: 22px;
}
.game-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}
.game-caption h2 {
  font-size: 20px;
  letter-spacing: -0.5px;
  margin: 0;
}
.game-caption h2 span {
  color: #f196bc;
}
.game-caption > span {
  font-size: 9px;
  letter-spacing: 2px;
  color: #bfafcb;
}
footer {
  padding: 20px 6%;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  border-top: 1px solid #ffffff15;
  font-size: 10px;
  color: #a79aac;
}
a:focus-visible {
  outline: 3px solid #f899c2;
  outline-offset: 8px;
}
@media (max-width: 600px) {
  header {
    height: 65px;
  }
  .brand {
    font-size: 20px;
  }
  .independent {
    font-size: 7px;
    letter-spacing: 1px;
  }
  main {
    padding-top: 31px;
    padding-bottom: 25px;
  }
  .heading {
    display: block;
    margin-bottom: 25px;
  }
  .heading h1 {
    font-size: 45px;
    letter-spacing: -2px;
  }
  .heading p {
    margin-bottom: 0;
  }
  .cover-art {
    height: 310px;
  }
  .cover-art img {
    width: 100%;
    height: 68%;
    top: 32%;
    object-fit: cover;
    object-position: 50% 22%;
  }
  .cover-art:after {
    background: linear-gradient(#fbcddd 0%, #fbcddd 20%, transparent 60%);
  }
  .cover-title {
    top: 16px;
    left: 0;
    right: 0;
  }
  .cover-title strong {
    font-size: 43px;
    margin-top: 6px;
  }
  .cover-title strong br {
    display: none;
  }
  .cover-title b {
    font-size: 45px;
  }
  .cover-title > span {
    font-size: 8px;
  }
  .play {
    left: auto;
    right: 13px;
    bottom: 13px;
    padding: 8px 13px;
    font-size: 9px;
  }
  .game-caption {
    gap: 10px;
  }
  .game-caption h2 {
    font-size: 18px;
  }
  .game-caption > span {
    font-size: 8px;
    letter-spacing: 1px;
  }
  footer {
    font-size: 8px;
    flex-direction: column;
    gap: 6px;
  }
}
