.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--black);
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 20px 60px;
  border-radius: 10px;
  border-top: 1px solid var(--black);
  border-left: 1px solid var(--black);
  border-right: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.15s ease;
}
.btn-white:hover {
  transform: translate(-1px, -2px);
}
.btn-white:active {
  transform: translate(2px, 2px);
  border-bottom-width: 1px;
  border-right-width: 1px;
}

.game-hero {
  background: var(--pink);
  overflow: hidden;
}

.game-hero-inner {
  max-width: 1368px;
  margin: 0 auto;
  padding: 60px 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.game-hero-text {
  max-width: 743px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}

.game-hero-title {
  font-size: 54px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
  width: 100%;
}

.game-hero-desc {
  font-size: 14px;
  color: var(--white);
  line-height: 1.6;
  width: 100%;
}

.game-hero-thumb {
  width: 300px;
  height: 300px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 0 20px 0 rgba(255, 255, 255, 0.5);
}

.game-hero-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: ken-burns 10s ease-in-out infinite alternate;
}

.game-secondary {
  background: var(--white);
  padding: 60px 84px;
  max-width: 1368px;
  margin: 0 auto;
}

.game-secondary-inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.game-secondary-text {
  width: 662px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.game-secondary-title {
  font-size: 54px;
  font-weight: 800;
  color: var(--pink);
  text-transform: uppercase;
  line-height: 1.1;
}

.game-secondary-desc {
  font-size: 14px;
  line-height: 1.6;
}

.game-secondary-img {
  flex: 1;
  min-height: 549px;
  border-radius: 30px;
  overflow: hidden;
}

.game-secondary-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 30px;
  animation: ken-burns-alt 12s ease-in-out infinite alternate;
  animation-delay: -5s;
}

@keyframes ken-burns {
  0%   { transform: scale(1)    translate(0, 0); }
  100% { transform: scale(1.06) translate(-2%, 1.5%); }
}

@keyframes ken-burns-alt {
  0%   { transform: scale(1.04) translate(1.5%, -1%); }
  100% { transform: scale(1)    translate(0, 0); }
}

@media (max-width: 768px) {

  .game-hero-inner {
    flex-direction: column;
    padding: 60px 15px;
    max-width: 360px;
    gap: 30px;
  }

  .game-hero-text {
    max-width: 100%;
    width: 100%;
  }

  .game-hero-title {
    font-size: 28px;
  }

  .game-hero-thumb {
    width: 300px;
    height: 300px;
  }

  .game-secondary {
    padding: 40px 15px;
    max-width: 360px;
  }

  .game-secondary-inner {
    flex-direction: column;
    gap: 30px;
  }

  .game-secondary-text {
    width: 100%;
  }

  .game-secondary-title {
    font-size: 28px;
  }

  .game-secondary-img {
    width: 100%;
    min-height: 471px;
    height: 471px;
    border-radius: 30px;
  }
}
