@import url('https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400;500;600;700&display=swap');

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

body {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  background: #fff;
  color: #101010;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: 1200px;
  max-width: 100%;
}

.header {
  width: 1200px;
  max-width: 100%;
  padding: 10px 40px;
  display: flex;
  justify-content: center;
}

.header-inner {
  width: 1120px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 32px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.logo-text {
  font-family: 'Pixelify Sans', sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 0.9;
  text-transform: capitalize;
  letter-spacing: 3.2px;
  color: #000;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 49px;
}

.nav-link {
  background: #cacaca;
  padding: 0 40px;
  font-family: Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  white-space: nowrap;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  width: 41px;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background: #000;
}

.hamburger-dots {
  display: flex;
  gap: 1px;
}

.hamburger-dot {
  width: 5px;
  height: 2px;
  background: #000;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background: #fff;
  width: 1200px;
  max-width: 100%;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu-link {
  background: #cacaca;
  padding: 8px 20px;
  font-family: Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  text-align: center;
}

.hero {
  width: 1200px;
  max-width: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.hero-title {
  font-family: 'Pixelify Sans', sans-serif;
  font-weight: 400;
  font-size: 120px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  color: #101010;
  width: 100%;
}

.hero-image {
  width: 500px;
  height: 300px;
  object-fit: cover;
}

.hero-description {
  display: flex;
  gap: 5px;
  align-items: flex-start;
  justify-content: center;
}

.hero-description .pacman-icon {
  width: 36px;
  height: 36px;
  object-fit: cover;
  flex-shrink: 0;
}

.hero-description-text {
  font-family: Verdana, sans-serif;
  font-size: 16px;
  line-height: 1;
  color: #101010;
  width: 800px;
}

.hero-description-text p {
  margin-bottom: 10px;
}

.hero-description-text p:last-child {
  margin-bottom: 0;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn-outline {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 42px;
  padding: 11px 20px;
  border: 1px solid #000;
  background: transparent;
  font-family: 'Pixelify Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  color: #101010;
  white-space: nowrap;
}

.btn-primary {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 42px;
  padding: 11px 20px;
  background: #005df1;
  border: none;
  font-family: 'Pixelify Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
}

.btn-icon {
  width: 20px;
  height: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-icon img {
  width: 14px;
  height: 14px;
}

.pixel-decoration {
  pointer-events: none;
}

.hero-pixels {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 175px;
}

.pixel-block {
  position: absolute;
  width: 37.747px;
  height: 37.747px;
}

.pixel-block.yellow { background: #ffdb63; }
.pixel-block.green { background: #85de38; }
.pixel-block.cyan { background: #35bdc7; }
.pixel-block.red { background: #f54848; }

.section {
  width: 1200px;
  max-width: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 60px 40px;
}

.section-header {
  display: flex;
  gap: 5px;
  align-items: center;
  width: 100%;
}

.section-header .pacman-icon {
  width: 36px;
  height: 36px;
  object-fit: cover;
  flex-shrink: 0;
}

.section-title {
  font-family: Verdana, sans-serif;
  font-size: 44px;
  line-height: 1;
  color: #101010;
  white-space: nowrap;
}

.separator {
  width: 100%;
  height: 2px;
}

.variety-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.variety-content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
}

.window-card {
  display: grid;
  flex-shrink: 0;
}

.window-card > * {
  grid-row: 1;
  grid-column: 1;
}

.window-outer {
  width: 271px;
  height: 303px;
  background: #d9d9d9;
  border: 1px solid #6d6d6d;
}

.window-inner {
  width: 262px;
  height: 255px;
  background: #fff;
  border: 1px solid #6d6d6d;
  margin-left: 4px;
  margin-top: 43px;
}

.window-close {
  width: 13px;
  height: 13px;
  overflow: hidden;
  margin-left: 249px;
  margin-top: 9px;
}

.window-close img {
  width: 100%;
  height: 100%;
}

.window-image {
  width: 202px;
  height: 202px;
  object-fit: cover;
  margin-left: 34px;
  margin-top: 70px;
}

.variety-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  min-width: 0;
}

.variety-text .btn-outline {
  align-self: flex-start;
}

.variety-text-bold {
  font-family: Verdana, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  color: #272b2c;
}

.variety-text-regular {
  font-family: Verdana, sans-serif;
  font-size: 14px;
  line-height: 1;
  color: #272b2c;
}

.variety-text-regular p {
  margin-bottom: 0;
}

.variety-text-regular p + p {
  margin-top: 14px;
}

.reviews-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.reviews-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-card {
  background: #d9d9d9;
  border: 1px solid #6d6d6d;
  padding: 9px 4px 13px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 262px;
}

.review-card-dot,
.review-card-name {
  font-family: 'Pixelify Sans', sans-serif;
  font-weight: 400;
  font-size: 11px;
  line-height: 1;
  color: #696969;
}

.review-card-close {
  width: 13px;
  height: 13px;
  overflow: hidden;
}

.review-card-close img {
  width: 100%;
  height: 100%;
}

.review-card-body {
  background: #fff;
  border: 1px solid #6d6d6d;
  padding: 14px 10px;
  width: 262px;
}

.review-card-text {
  font-family: Verdana, sans-serif;
  font-size: 14px;
  line-height: 1;
  color: #000;
  width: 243px;
}

.reviews-image {
  width: 500px;
  height: 300px;
  object-fit: cover;
}

.games-section {
  width: 1200px;
  max-width: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 60px 40px;
}

.game-slider {
  width: 1120px;
  max-width: 100%;
}

.game-slide {
  display: none;
  width: 100%;
}

.game-slide.active {
  display: block;
}

.game-slide-image {
  width: 100%;
  height: auto;
  display: block;
}

.game-card-wrapper {
  width: 1120px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
}

.game-card {
  background: #272b2c;
  display: flex;
  gap: 49px;
  align-items: center;
  justify-content: center;
  padding: 49px 60px;
  overflow: hidden;
  width: 100%;
}

.game-card-image {
  width: 202px;
  height: 202px;
  object-fit: cover;
  flex-shrink: 0;
}

.game-card-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  min-width: 0;
  color: #fff;
}

.game-card-title {
  font-family: Verdana, sans-serif;
  font-size: 24px;
  line-height: 1;
}

.game-card-desc {
  font-family: Verdana, sans-serif;
  font-size: 14px;
  line-height: 1;
}

.game-card-border {
  width: 100%;
  aspect-ratio: 1336 / 44;
  overflow: hidden;
  position: relative;
}

.game-card-border img {
  position: absolute;
  width: 100%;
  left: 0;
  top: -2073%;
  height: 2174%;
}

.game-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.game-nav-prev {
  width: 36px;
  height: 36px;
  opacity: 0.4;
  transform: rotate(180deg) scaleY(-1);
}

.game-nav-next {
  width: 36px;
  height: 36px;
}

.faq-section {
  width: 1200px;
  max-width: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 40px;
}

.faq-inner {
  width: 1120px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border-bottom: 1px solid #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.faq-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
  padding: 15px 0;
}

.faq-item-left {
  display: flex;
  gap: 26px;
  align-items: center;
}

.faq-number {
  font-family: 'Pixelify Sans', sans-serif;
  font-weight: 400;
  font-size: 64px;
  line-height: 1;
  color: #272b2c;
  white-space: nowrap;
}

.faq-question {
  font-family: Verdana, sans-serif;
  font-size: 24px;
  line-height: 1;
  color: #101010;
  white-space: nowrap;
}

.faq-arrow {
  width: 62px;
  flex-shrink: 0;
}

.faq-arrow img {
  width: 100%;
}

.faq-item-body {
  display: none;
  padding-bottom: 20px;
}

.faq-item.active .faq-item-body {
  display: block;
}

.faq-answer-card {
  display: grid;
  margin-left: 92px;
}

.faq-answer-card > * {
  grid-row: 1;
  grid-column: 1;
  align-self: start;
  justify-self: start;
}

.faq-answer-outer {
  width: 308px;
  height: 126px;
  background: #d9d9d9;
  border: 1px solid #6d6d6d;
}

.faq-answer-inner {
  width: 300px;
  height: 78px;
  background: #fff;
  border: 1px solid #6d6d6d;
  margin-left: 4px;
  margin-top: 43px;
}

.faq-answer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 300px;
  margin-left: 4px;
  margin-top: 9px;
}

.faq-answer-label,
.faq-answer-tag {
  font-family: 'Pixelify Sans', sans-serif;
  font-weight: 400;
  font-size: 11px;
  line-height: 1;
  color: #696969;
}

.faq-answer-close {
  width: 13px;
  height: 13px;
  overflow: hidden;
}

.faq-answer-close img {
  width: 100%;
  height: 100%;
}

.faq-answer-text {
  font-family: Verdana, sans-serif;
  font-size: 14px;
  line-height: 1;
  color: #000;
  width: 280px;
  margin-left: 14px;
  margin-top: 55px;
}

.footer {
  width: 100%;
  background: #1e2527;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  padding-top: 30px;
  overflow: hidden;
}

.footer-inner {
  width: 1120px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 0 20px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.footer-logo .logo-text {
  color: #fff;
}

.footer-contacts {
  display: flex;
  gap: 20px;
  font-family: Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  white-space: nowrap;
}

.footer-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 12px;
  width: 100%;
}

.footer-copyright {
  font-family: Verdana, sans-serif;
  font-size: 14px;
  line-height: normal;
  color: #fff;
  white-space: nowrap;
}

.footer-links {
  display: flex;
  gap: 49px;
  align-items: center;
  font-family: Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.2;
  color: #fff;
  text-transform: capitalize;
  text-align: center;
}

.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  overflow: hidden;
}

.footer-social-icon img {
  width: 100%;
  height: 100%;
}

.footer-pixels {
  width: 1200px;
  max-width: 100%;
  height: 175px;
  position: relative;
  overflow: hidden;
}

.footer-pixels .pixel-block {
  width: 37.747px;
  height: 37.747px;
}

@media (max-width: 768px) {
  .container,
  .header,
  .hero,
  .section,
  .games-section,
  .faq-section {
    width: 430px;
    max-width: 100%;
  }

  .header {
    padding: 10px 20px;
  }

  .header-inner {
    width: 100%;
  }

  .logo-text {
    font-size: 26px;
    letter-spacing: 2.08px;
  }

  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    width: 430px;
  }

  .hero {
    gap: 20px;
    padding: 40px 20px;
  }

  .hero-pixels {
    height: 63px;
  }

  .hero-pixels .pixel-block {
    width: 13.528px;
    height: 13.528px;
  }

  .hero-title {
    font-size: 40px;
    width: 390px;
    max-width: 100%;
  }

  .hero-image {
    width: 390px;
    max-width: 100%;
    height: 234px;
  }

  .hero-description {
    width: 390px;
    max-width: 100%;
  }

  .hero-description-text {
    width: auto;
    flex: 1;
    min-width: 0;
  }

  .section {
    gap: 20px;
    padding: 40px 20px;
  }

  .section-title {
    font-size: 30px;
    white-space: normal;
    flex: 1;
    min-width: 0;
  }

  .variety-content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .variety-text {
    order: 2;
  }

  .window-card:last-child {
    order: 3;
  }

  .variety-text-bold {
    width: 390px;
    max-width: 100%;
  }

  .variety-text-regular {
    width: 390px;
    max-width: 100%;
  }

  .reviews-content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .review-card {
    width: 390px;
    max-width: 100%;
  }

  .review-card-header {
    width: 100%;
  }

  .review-card-body {
    width: 100%;
  }

  .review-card-text {
    width: auto;
    flex: 1;
  }

  .reviews-image {
    width: 390px;
    max-width: 100%;
    height: 300px;
  }

  .games-section {
    gap: 20px;
    padding: 40px 20px;
  }

  .game-card-wrapper {
    width: 390px;
    max-width: 100%;
  }

  .game-card {
    flex-direction: column;
    gap: 20px;
    padding: 20px 10px;
  }

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

  .faq-section {
    padding: 40px 20px;
  }

  .faq-inner {
    width: 390px;
    max-width: 100%;
    gap: 20px;
  }

  .faq-number {
    font-size: 20px;
    white-space: nowrap;
  }

  .faq-question {
    font-size: 20px;
    white-space: normal;
    flex: 1;
    min-width: 0;
  }

  .faq-item-left {
    width: calc(100% - 40px);
  }

  .faq-arrow {
    width: 30px;
  }

  .faq-answer-card {
    margin-left: 41px;
  }

  .footer {
    padding-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-inner {
    width: 100%;
    gap: 40px;
    padding: 0;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .footer-contacts {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .footer-pixels {
    height: 130px;
  }

  .footer-pixels .pixel-block {
    width: 27.113px;
    height: 27.113px;
  }

  .footer-logo .logo-text {
    font-size: 26px;
    letter-spacing: 2.08px;
  }

  .catalog-title {
    font-size: 40px;
    width: 390px;
    max-width: 100%;
  }

  .catalog-content {
    gap: 20px;
    padding: 40px 20px;
  }

  .games-grid-wrapper {
    width: 390px;
    max-width: 100%;
  }

  .games-grid {
    width: 390px;
    max-width: 100%;
    gap: 6px 4.27px;
  }

  .game-window-card {
    width: 192.865px;
  }

  .game-window-outer {
    width: 192.865px;
    height: 215.639px;
    border-width: 0.712px;
  }

  .game-window-inner {
    width: 186.46px;
    height: 181.478px;
    margin-left: 2.85px;
    margin-top: 30.6px;
    border-width: 0.712px;
  }

  .game-window-close {
    width: 9.252px;
    height: 9.252px;
    margin-left: 177.21px;
    margin-top: 6.41px;
  }

  .game-window-image {
    width: 143.759px;
    height: 143.759px;
    margin-left: 24.2px;
    margin-top: 49.82px;
  }

  .game-window-name {
    font-size: 16px;
    margin-left: 2.85px;
    margin-top: 7.12px;
  }

  .catalog-description {
    width: 390px;
    max-width: 100%;
  }

  .catalog-dark-wrapper {
    width: 390px;
    max-width: 100%;
  }

  .catalog-dark-box {
    padding: 20px 10px;
  }
}

.catalog-content {
  width: 1200px;
  max-width: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 60px 40px;
}

.catalog-title {
  font-family: 'Pixelify Sans', sans-serif;
  font-weight: 400;
  font-size: 80px;
  line-height: 1;
  text-transform: uppercase;
  color: #101010;
  width: 100%;
}

.games-grid-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}

.games-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
  width: 853px;
}

.games-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.game-window-card {
  display: grid;
  text-decoration: none;
  color: inherit;
}

.game-window-card > * {
  grid-row: 1;
  grid-column: 1;
}

.game-window-outer {
  width: 271px;
  height: 303px;
  background: #d9d9d9;
  border: 1px solid #6d6d6d;
}

.game-window-inner {
  width: 262px;
  height: 255px;
  background: #fff;
  border: 1px solid #6d6d6d;
  margin-left: 4px;
  margin-top: 43px;
}

.game-window-close {
  width: 13px;
  height: 13px;
  overflow: hidden;
  margin-left: 249px;
  margin-top: 9px;
}

.game-window-close img {
  width: 100%;
  height: 100%;
}

.game-window-image {
  width: 202px;
  height: 202px;
  object-fit: cover;
  margin-left: 34px;
  margin-top: 70px;
}

.game-window-name {
  font-family: 'Pixelify Sans', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
  color: #696969;
  margin-left: 4px;
  margin-top: 10px;
  white-space: nowrap;
}

.catalog-description {
  font-family: Verdana, sans-serif;
  font-size: 16px;
  line-height: 1;
  color: #101010;
  width: 100%;
}

.catalog-dark-wrapper {
  width: 1120px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
}

.catalog-dark-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.catalog-dark-box {
  background: #272b2c;
  padding: 49px 60px;
  overflow: hidden;
  width: 100%;
}

.catalog-dark-text {
  font-family: Verdana, sans-serif;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  width: 100%;
}

.catalog-dark-text p {
  margin-bottom: 0;
}

.catalog-dark-text p + p {
  margin-top: 14px;
}

.game-detail-content {
  width: 1200px;
  max-width: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 60px 40px;
}

.game-detail-hero {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.game-detail-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.game-detail-title {
  font-family: 'Pixelify Sans', sans-serif;
  font-weight: 400;
  font-size: 80px;
  line-height: 1;
  text-transform: uppercase;
  color: #101010;
  width: 400px;
}

.game-detail-play {
  text-decoration: none;
}

.game-detail-dark-wrapper {
  width: 1120px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
}

.game-detail-dark-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.game-detail-dark-box {
  background: #272b2c;
  padding: 49px 60px;
  overflow: hidden;
  width: 100%;
}

.game-detail-dark-text {
  font-family: Verdana, sans-serif;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  width: 100%;
}

.game-detail-dark-text p {
  margin-bottom: 0;
}

.game-detail-dark-text p + p {
  margin-top: 14px;
}

.features-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.feature-card {
  display: grid;
  width: 242px;
}

.feature-card-illustration {
  width: 124px;
  height: 100px;
  overflow: hidden;
  margin-left: 95px;
  grid-row: 1;
  grid-column: 1;
  position: relative;
}

.feature-card-illustration img {
  position: absolute;
  width: 102.59%;
  height: 116.53%;
  left: 9.1%;
  top: -16.15%;
  max-width: none;
}

.feature-card-body {
  width: 242px;
  height: 187px;
  margin-top: 54px;
  grid-row: 1;
  grid-column: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  padding: 19px 14px;
}

.feature-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 242px;
  height: 187px;
  pointer-events: none;
}

.feature-card-bg img {
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  margin: -2px;
}

.feature-card-title {
  font-family: 'Pixelify Sans', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
  color: #fff;
  position: relative;
  z-index: 1;
}

.feature-card-desc {
  font-family: Verdana, sans-serif;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .game-detail-content {
    gap: 20px;
    padding: 40px 20px;
  }

  .game-detail-hero {
    flex-direction: column;
  }

  .game-detail-info {
    align-items: center;
  }

  .game-detail-title {
    font-size: 40px;
    width: 390px;
    max-width: 100%;
  }

  .game-detail-dark-wrapper {
    width: 390px;
    max-width: 100%;
  }

  .game-detail-dark-box {
    padding: 20px 10px;
  }

  .features-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .policy-content {
    gap: 20px;
    padding: 40px 20px;
  }

  .policy-title {
    font-size: 40px;
  }

  .policy-body {
    width: 100%;
  }
}

.policy-content {
  width: 1200px;
  max-width: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 60px 40px;
}

.policy-title {
  font-family: 'Pixelify Sans', sans-serif;
  font-weight: 400;
  font-size: 80px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  color: #101010;
  width: 100%;
}

.policy-body {
  display: flex;
  gap: 5px;
  align-items: flex-start;
  width: 1120px;
  max-width: 100%;
}

.policy-body .pacman-icon {
  width: 36px;
  height: 36px;
  object-fit: cover;
  flex-shrink: 0;
}

.policy-text {
  font-family: Verdana, sans-serif;
  font-size: 16px;
  line-height: 1;
  color: #101010;
  flex: 1;
  min-width: 0;
}

.policy-text p {
  margin-bottom: 10px;
}

.policy-text p:last-child {
  margin-bottom: 0;
}

.policy-text ul {
  list-style: disc;
  margin-bottom: 10px;
  padding-left: 24px;
}

.policy-text ul li {
  line-height: 1;
  margin-bottom: 0;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 24px;
}

.cookie-banner.cookie-hidden {
  display: none;
}

.cookie-inner {
  width: 1200px;
  max-width: 100%;
  background: #2f3739;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cookie-head {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cookie-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
}

.cookie-title {
  font-family: Verdana, sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1;
  color: #fff;
}

.cookie-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.35;
  color: #fff;
}

.cookie-text p {
  margin: 0;
}

.cookie-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-btn {
  height: 50px;
  padding: 0 28px;
  font-family: 'Pixelify Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-accept {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.cookie-decline {
  background: #005df1;
  border: none;
  color: #fff;
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: 0;
  }

  .cookie-inner {
    padding: 24px;
    gap: 20px;
  }

  .cookie-title {
    font-size: 32px;
  }

  .cookie-text {
    font-size: 14px;
    gap: 16px;
  }

  .cookie-btn {
    height: 44px;
    padding: 0 18px;
    font-size: 16px;
  }
}

a,
button,
.btn-outline,
.btn-primary,
.cookie-btn,
.nav-link,
.mobile-menu-link,
.game-window-card,
.game-window-outer,
.review-card,
.faq-question,
.game-nav-prev,
.game-nav-next,
.footer-social-icon,
.footer-links a,
.logo {
  transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
}

.btn-outline:hover {
  background: #101010;
  color: #fff;
}

.btn-outline:hover .btn-icon img {
  filter: invert(1);
}

.btn-primary:hover,
.game-detail-play:hover {
  background: #0048bd;
  transform: translateY(-2px);
}

.cookie-accept:hover {
  background: #fff;
  color: #101010;
}

.cookie-decline:hover {
  background: #0048bd;
  transform: translateY(-2px);
}

.nav-link:hover {
  background: #005df1;
  color: #fff;
}

.mobile-menu-link:hover {
  color: #005df1;
}

.game-window-card:hover {
  transform: translateY(-6px);
}

.game-window-card:hover .game-window-outer {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.faq-item-header:hover .faq-question {
  color: #005df1;
}

.game-nav-prev:hover {
  opacity: 0.85;
}

.game-nav-next:hover {
  opacity: 0.6;
}

.footer-social-icon:hover {
  transform: translateY(-3px);
  opacity: 0.85;
}

.footer-links a:hover {
  color: #5b9bff;
}

.logo:hover {
  opacity: 0.85;
}
