@import url('https://fonts.googleapis.com/css2?family=Michroma&family=Chakra+Petch:wght@700&display=swap');

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

html,
body {
  margin: 0;
  padding: 0;
  background: #000;
}

img {
  display: block;
}

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

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  line-height: 1;
}

.page-wrapper {
  width: 100%;
  background: #000;
  position: relative;
}

/* ===================== HEADER ===================== */

.site-header {
  background: #000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 42px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.logo-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Michroma', sans-serif;
  font-size: 28px;
  color: #fff;
  text-transform: capitalize;
  white-space: nowrap;
  line-height: normal;
}

.nav-desktop {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.nav-desktop a {
  font-family: 'Michroma', sans-serif;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  line-height: normal;
  white-space: nowrap;
}

.btn-menu-open {
  display: none;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.btn-menu-open img {
  width: 24px;
  height: 24px;
}

/* ===================== MOBILE MENU ===================== */

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  flex-direction: column;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  flex-shrink: 0;
}

.btn-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.btn-menu-close img {
  width: 24px;
  height: 24px;
}

.mobile-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 96px;
}

.mobile-nav a {
  font-family: 'Michroma', sans-serif;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  line-height: normal;
  white-space: nowrap;
}

/* ===================== SECTION GLOW BG ===================== */

.section-glow {
  background:
    radial-gradient(ellipse 100% 100% at 50% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 100%),
    #000;
}

/* ===================== HERO SECTION ===================== */

.section-hero {
  padding: 72px 42px;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.hero-text {
  width: 546px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero-text-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-title {
  font-family: 'Michroma', sans-serif;
  font-size: 40px;
  color: #fff;
  text-transform: capitalize;
  line-height: 1.2;
  width: 100%;
}

.hero-para {
  font-family: 'Michroma', sans-serif;
  font-size: 18px;
  color: #fff;
  line-height: 1.4;
  width: 100%;
}

.hero-image-wrap {
  flex: 1;
  min-width: 0;
  aspect-ratio: 522 / 685;
  position: relative;
  overflow: hidden;
}

.hero-image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===================== CTA BUTTON ===================== */

.btn-cta {
  display: inline-flex;
  align-items: stretch;
}

.btn-cta-edge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-cta-edge.left img {
  display: block;
  width: 12px;
  height: 60px;
  transform: scaleY(-1);
}

.btn-cta-edge.right img {
  display: block;
  width: 12px;
  height: 60px;
  transform: scaleY(-1) rotate(180deg);
}

.btn-cta-body {
  background: linear-gradient(-69.143deg, #4d2c76 9.5709%, #3b59b7 90.268%);
  height: 60px;
  padding: 16.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: normal;
}

/* ===================== WHY SECTION ===================== */

.section-why {
  padding: 72px 42px;
}

.section-col-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading-center {
  font-family: 'Michroma', sans-serif;
  font-size: 40px;
  color: #fff;
  text-transform: capitalize;
  line-height: 1.2;
  text-align: center;
  width: 100%;
}

.cards-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.cards-row {
  display: flex;
  gap: 24px;
}

/* ===================== FEATURE / TESTIMONIAL CARDS ===================== */

.feature-card {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: stretch;
}

.card-deco {
  flex-shrink: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.card-deco img {
  display: block;
  width: 12px;
  height: 100%;
  object-fit: fill;
}

.card-deco.left img {
  transform: scaleY(-1);
}

.card-deco.right img {
  transform: scaleY(-1) rotate(180deg);
}

.card-content {
  flex: 1;
  min-width: 0;
  background: #000;
  border-top: 1px solid #4d2c76;
  border-bottom: 1px solid #4d2c76;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #fff;
}

.card-title {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  line-height: normal;
  width: 100%;
}

.card-text {
  font-family: 'Michroma', sans-serif;
  font-size: 18px;
  line-height: 1.4;
  width: 100%;
}

/* ===================== IMAGE + TEXT SECTIONS ===================== */

.section-img-text {
  padding: 72px 42px;
  overflow: hidden;
}

.img-text-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.img-text-inner.reversed {
  flex-direction: row-reverse;
}

.section-image-block {
  flex: 1;
  min-width: 0;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
}

.section-image-block img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-text-block {
  width: 546px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #fff;
}

.section-block-title {
  font-family: 'Michroma', sans-serif;
  font-size: 40px;
  color: #fff;
  text-transform: capitalize;
  line-height: 1.2;
  width: 100%;
}

.section-block-subtitle {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  line-height: normal;
  width: 100%;
}

.section-block-para {
  font-family: 'Michroma', sans-serif;
  font-size: 18px;
  line-height: 1.4;
  width: 100%;
}

/* ===================== PLAYER FEEDBACK SECTION ===================== */

.section-feedback {
  padding: 72px 42px;
}

.feedback-heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  text-align: center;
  color: #fff;
}

.feedback-title {
  font-family: 'Michroma', sans-serif;
  font-size: 40px;
  color: #fff;
  text-transform: capitalize;
  line-height: 1.2;
  width: 100%;
}

.feedback-subtitle {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  line-height: normal;
  width: 100%;
}

.testimonials-row {
  display: flex;
  gap: 24px;
  width: 100%;
  height: 310px;
}

/* ===================== FOOTER ===================== */

.site-footer {
  background: #000;
  overflow: hidden;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 42px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

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

.footer-nav a {
  font-family: 'Michroma', sans-serif;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  line-height: normal;
  white-space: nowrap;
}

.social-row {
  display: flex;
  gap: 6px;
  align-items: center;
}

/* ===================== SOCIAL BUTTONS ===================== */

.btn-social {
  display: inline-flex;
  align-items: stretch;
}

.social-deco {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-deco img {
  display: block;
}

.social-center {
  height: 48px;
  background: #202020;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16.5px;
  flex-shrink: 0;
}

.btn-twitter .social-deco.left img {
  width: 15px;
  height: 48px;
  transform: scaleY(-1) rotate(180deg);
}

.btn-twitter .social-deco.right img {
  width: 15px;
  height: 48px;
}

.btn-facebook .social-deco.left img {
  width: 12px;
  height: 48px;
  transform: scaleX(-1);
}

.btn-facebook .social-deco.right img {
  width: 12px;
  height: 48px;
  transform: rotate(180deg);
}

.twitter-icon-wrap {
  width: 24px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.twitter-icon-wrap img {
  display: block;
  width: 24px;
  height: 22px;
}

.facebook-icon-img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* ===================== FOOTER CONTACT ===================== */

.footer-contact {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
}

.footer-contact-text {
  font-family: 'Michroma', sans-serif;
  font-size: 16px;
  color: #fff;
  line-height: 1.4;
  white-space: nowrap;
}

.footer-divider {
  flex-shrink: 0;
  width: 1px;
  height: 16px;
  background: rgba(225, 225, 225, 0.5);
}

.footer-divider img {
  display: none;
}

.footer-copy {
  font-family: 'Michroma', sans-serif;
  font-size: 14px;
  color: #fff;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
}

/* ===================== CATALOG PAGE ===================== */

.catalog-page {
  background: #0a1216;
}

.section-catalog {
  padding: 72px 42px;
}

.catalog-text-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  color: #fff;
}

.game-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.game-row {
  display: flex;
  gap: 24px;
}

.game-card {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: stretch;
  height: 332px;
}

.game-card-img-wrap {
  aspect-ratio: 1 / 1;
  width: 100%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.game-card-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===================== GAME PAGE ===================== */

.section-game {
  padding: 72px 42px;
}

.game-page-inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.game-page-media {
  width: 534px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.game-page-image-card {
  height: 510px;
  display: flex;
  align-items: stretch;
}

.game-page-image-card .card-content,
.game-card .card-content {
  align-items: center;
  overflow: hidden;
}

.game-page-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #fff;
}

.game-page-title {
  font-family: 'Michroma', sans-serif;
  font-size: 40px;
  color: #fff;
  text-transform: capitalize;
  line-height: 1.2;
  width: 100%;
}

.game-label {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  line-height: normal;
  width: 100%;
  color: #fff;
}

.btn-cta-game .btn-cta-body {
  background: linear-gradient(-47.7606deg, #4d2c76 9.5709%, #3b59b7 90.268%);
}

/* ===================== POLICY PAGES ===================== */

.section-policy {
  padding: 72px 42px;
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #fff;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.policy-title {
  font-family: 'Michroma', sans-serif;
  font-size: 40px;
  color: #fff;
  text-transform: capitalize;
  line-height: 1.2;
  width: 100%;
}

.policy-body {
  font-family: 'Michroma', sans-serif;
  font-size: 18px;
  color: #fff;
  line-height: 1.4;
  width: 100%;
}

.policy-body p,
.policy-body ol,
.policy-body li {
  margin: 0;
  padding: 0;
}

.policy-body ol {
  list-style: decimal;
  padding-left: 27px;
}

.policy-body a {
  color: inherit;
  text-decoration: underline;
}

/* ===================== RESPONSIVE — MOBILE ===================== */

@media (max-width: 767px) {

  /* Header */
  .header-inner {
    padding: 12px;
  }

  .nav-desktop {
    display: none;
  }

  .btn-menu-open {
    display: flex;
  }

  /* Hero */
  .section-hero {
    padding: 48px 12px;
  }

  .hero-inner {
    flex-direction: column;
    gap: 24px;
  }

  .hero-text {
    width: 100%;
    gap: 24px;
  }

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

  .hero-image-wrap {
    width: 100%;
    flex: none;
    aspect-ratio: 522 / 685;
  }

  .btn-cta {
    width: 100%;
  }

  .btn-cta-body {
    flex: 1;
    background: linear-gradient(-55.78deg, #4d2c76 9.5709%, #3b59b7 90.268%);
  }

  /* Why section */
  .section-why {
    padding: 48px 12px;
  }

  .section-col-center {
    gap: 24px;
  }

  .section-heading-center {
    font-size: 32px;
  }

  .cards-container {
    gap: 12px;
  }

  .cards-row {
    flex-direction: column;
    gap: 12px;
  }

  /* Image-text sections */
  .section-img-text {
    padding: 48px 12px;
  }

  .img-text-inner,
  .img-text-inner.reversed {
    flex-direction: column;
    gap: 24px;
  }

  .section-image-block {
    width: 100%;
    flex: none;
  }

  .section-text-block {
    width: 100%;
    flex-shrink: 1;
  }

  .section-block-title {
    font-size: 32px;
  }

  /* Feedback */
  .section-feedback {
    padding: 48px 12px;
  }

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

  .section-col-center {
    gap: 24px;
  }

  .testimonials-row {
    flex-direction: column;
    height: auto;
    gap: 12px;
  }

  /* Footer */
  .footer-inner {
    padding: 42px 12px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 24px;
  }

  .footer-nav a {
    font-size: 16px;
  }

  .footer-contact {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-contact-text {
    white-space: normal;
    text-align: center;
  }

  .footer-divider {
    display: none;
  }

  .footer-copy {
    white-space: normal;
  }

  .section-catalog {
    padding: 48px 12px;
  }

  .game-grid {
    gap: 12px;
  }

  .game-row {
    flex-direction: column;
    gap: 12px;
  }

  .game-card {
    flex: none;
    height: 382px;
  }

  .section-game {
    padding: 48px 12px;
  }

  .game-page-inner {
    flex-direction: column;
    gap: 24px;
  }

  .game-page-media {
    width: 100%;
    flex-shrink: 1;
  }

  .game-page-image-card {
    height: 382px;
  }

  .btn-cta-game {
    width: 100%;
  }

  .btn-cta-game .btn-cta-body {
    flex: 1;
    background: linear-gradient(-55.78deg, #4d2c76 9.5709%, #3b59b7 90.268%);
  }

  .game-page-title {
    font-size: 32px;
  }

  .section-policy {
    padding: 48px 12px;
  }

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

/* ===================== HOVER EFFECTS ===================== */

.nav-desktop a {
  transition: color 0.2s ease;
}
.nav-desktop a:hover {
  color: #3b59b7;
}

.mobile-nav a {
  transition: color 0.2s ease;
}
.mobile-nav a:hover {
  color: #3b59b7;
}

.footer-nav a {
  transition: color 0.2s ease;
}
.footer-nav a:hover {
  color: #3b59b7;
}

.logo {
  transition: opacity 0.2s ease;
}
.logo:hover {
  opacity: 0.85;
}

.btn-cta {
  transition: filter 0.2s ease, transform 0.15s ease;
  cursor: pointer;
}
.btn-cta:hover {
  filter: brightness(1.15);
  transform: translateY(-2px);
}
.btn-cta:active {
  transform: translateY(0);
  filter: brightness(1);
}

.game-card {
  transition: transform 0.25s ease, filter 0.25s ease;
}
.game-card:hover {
  transform: translateY(-5px);
  filter: brightness(1.08);
}

.btn-social {
  transition: filter 0.2s ease, transform 0.15s ease;
}
.btn-social:hover {
  filter: brightness(1.25);
  transform: translateY(-1px);
}
.btn-social:active {
  transform: translateY(0);
}

.feature-card {
  transition: transform 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-3px);
}

/* ===================== ANIMATIONS ===================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
}
.animate-on-scroll.is-visible {
  animation: fadeInUp 0.55s ease forwards;
}

/* ===================== COOKIE BANNER ===================== */

.cookie-banner {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 600px;
  z-index: 9999;
  display: none;
  animation: fadeInUp 0.4s ease;
}
.cookie-banner.is-visible {
  display: block;
}

.cookie-banner-card {
  background: #111;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-banner-title {
  font-family: 'Michroma', sans-serif;
  font-size: 32px;
  color: #fff;
  line-height: 1.2;
}

.cookie-banner-text {
  font-family: 'Michroma', sans-serif;
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
}

.cookie-banner-text a {
  color: #3b59b7;
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  align-items: stretch;
  flex-wrap: wrap;
}

.btn-cookie-accept {
  display: inline-flex;
  align-items: stretch;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  line-height: 1;
}

.btn-cookie-accept .btn-cta-body {
  height: 48px;
  font-size: 16px;
  padding: 0 16px;
}

.btn-cookie-accept .btn-cta-edge.left img,
.btn-cookie-accept .btn-cta-edge.right img {
  height: 48px;
}

.btn-cookie-settings {
  background: #202020;
  height: 48px;
  padding: 0 20px;
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  line-height: normal;
  transition: background 0.2s ease;
}
.btn-cookie-settings:hover {
  background: #2e2e2e;
}

@media (max-width: 767px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
  }

  .cookie-banner-card {
    padding: 20px;
  }

  .cookie-banner-title {
    font-size: 24px;
  }

  .cookie-banner-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .btn-cookie-accept {
    width: 100%;
  }

  .btn-cookie-accept .btn-cta-body {
    flex: 1;
    background: linear-gradient(-55.78deg, #4d2c76 9.5709%, #3b59b7 90.268%);
  }

  .btn-cookie-settings {
    width: 100%;
    text-align: center;
  }
}
