@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,600;1,100;1,200;1,400&family=Sora:wght@600&family=Playfair+Display:ital@1&display=swap');

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background: #000;
  overflow-x: hidden;
}

body {
  background: #000;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

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

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

/* ===========================
   CSS CUSTOM PROPERTIES
=========================== */
:root {
  --btn-gradient: linear-gradient(153.02deg, rgba(64, 152, 59, 0.8) 14.539%, rgba(201, 250, 40, 0.8) 41.085%, rgba(62, 193, 249, 0.8) 80.085%);
  --glow-shadow: 0px 0px 95.8px 0px #bbec6c;
  --glow-shadow-mobile: 0px 0px 32.209px 0px #bbec6c;
}

/* ===========================
   BUTTON
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 48px;
  border-radius: 30px;
  background: var(--btn-gradient);
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-transform: capitalize;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  line-height: 1.2;
  flex-shrink: 0;
  max-width: 269px;
}

.btn:hover {
  opacity: 0.9;
}

/* ===========================
   HEADER
=========================== */
.site-header {
  position: relative;
  background: #000;
  width: 100%;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px;
  height: 114px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  font-size: 26.667px;
  text-transform: uppercase;
  letter-spacing: -0.2667px;
  color: #fff;
  line-height: 40px;
}

.logo-bold {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.logo-thin {
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
}

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

.header-nav a {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: -0.48px;
  line-height: 20px;
}

.header-nav a:hover {
  color: #fff;
}

.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.burger-btn img {
  width: 31px;
  height: 12px;
  display: block;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 20px 24px;
  background: #000;
  border-top: 1px solid #222;
}

.mobile-nav a {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: -0.48px;
}

.mobile-nav a:hover {
  color: #fff;
}

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

/* ===========================
   HERO SECTION
=========================== */
.hero {
  position: relative;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
  padding: 60px 0;
  height: 792px;
  overflow: hidden;
}

/* Background ellipse */
.hero-ellipse-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 62px));
  pointer-events: none;
  z-index: 0;
}

.hero-ellipse-wrap img {
  width: 494px;
  height: 396px;
  max-width: none;
  transform: rotate(-90deg);
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 80px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  color: #fff;
  letter-spacing: -2.4px;
  width: 1080px;
  max-width: 100%;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.hero-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  text-align: center;
  color: #fff;
  letter-spacing: -0.48px;
  width: 815px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

/* Hero Cards */
.hero-cards {
  position: relative;
  width: 100%;
  height: 319px;
  flex-shrink: 0;
  z-index: 1;
}

.card-wrapper {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-card {
  width: 198px;
  height: 275px;
  border-radius: 30px;
  box-shadow: var(--glow-shadow);
  overflow: hidden;
  flex-shrink: 0;
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-wrapper:nth-child(1) {
  left: -2.167%;
  top: 127px;
  width: 266.13px;
  height: 318.923px;
}
.card-wrapper:nth-child(1) .game-card {
  transform: rotate(-16deg);
}

.card-wrapper:nth-child(2) {
  left: 19.261%;
  top: 29px;
  width: 234.346px;
  height: 299.88px;
}
.card-wrapper:nth-child(2) .game-card {
  transform: rotate(-8deg);
}

.card-wrapper:nth-child(3) {
  left: 41.457%;
  top: 0;
  width: 198px;
  height: 275px;
}

.card-wrapper:nth-child(4) {
  left: 63.813%;
  top: 29px;
  width: 234.346px;
  height: 299.88px;
}
.card-wrapper:nth-child(4) .game-card {
  transform: rotate(8deg);
}

.card-wrapper:nth-child(5) {
  left: 86.4%;
  top: 127px;
  width: 266.13px;
  height: 318.923px;
}
.card-wrapper:nth-child(5) .game-card {
  transform: rotate(16deg);
}

/* Hero decorative corner (top-right) */
.hero-decor {
  position: absolute;
  left: 986px;
  top: 118px;
  width: 238px;
  height: 268px;
  pointer-events: none;
  z-index: 0;
}

.decor-rect-lg {
  position: absolute;
  left: 92.5px;
  top: 72px;
  width: 143px;
  height: 143px;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.decor-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(206, 206, 206, 0.6);
  border: 1px solid rgba(73, 73, 73, 0.6);
}

.decor-dot-1 { left: 90.5px; top: 70px; }
.decor-dot-2 { left: 233.5px; top: 70.5px; }
.decor-dot-3 { left: 233px; top: 213px; }
.decor-dot-4 { left: 90.5px; top: 213px; }

.decor-rect-sm {
  position: absolute;
  left: 54.7px;
  top: 161.9px;
  width: 85.8px;
  height: 85.8px;
  border: 0.6px solid rgba(255, 255, 255, 0.6);
}

.decor-dot-sm-1 {
  position: absolute;
  width: 2.4px;
  height: 2.4px;
  background: rgba(206, 206, 206, 0.6);
  border: 0.6px solid rgba(255, 255, 255, 0.6);
  left: 139.3px;
  top: 161px;
}

.decor-dot-sm-2 {
  position: absolute;
  width: 2.4px;
  height: 2.4px;
  background: rgba(206, 206, 206, 0.6);
  border: 0.6px solid rgba(255, 255, 255, 0.6);
  left: 139px;
  top: 246.5px;
}

/* ===========================
   ABOUT SECTION
=========================== */
.about-section {
  background: #000;
  display: flex;
  gap: 50px;
  align-items: center;
  padding: 60px;
  overflow: hidden;
  min-height: 846px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-img {
  flex: 1 0 0;
  align-self: stretch;
  min-width: 0;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 30px;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 530px;
  flex-shrink: 0;
}

.about-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 54px;
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
}

.about-content h2 .font-thin {
  font-weight: 100;
}

.about-text {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
  letter-spacing: -0.32px;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

/* ===========================
   WHY SECTION
=========================== */
.why-section {
  position: relative;
  background: #000;
  padding: 80px 60px;
  overflow: hidden;
  min-height: 802px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-ellipse-wrap {
  position: absolute;
  top: -80px;
  left: 130px;
  width: 935.833px;
  height: 160.833px;
  pointer-events: none;
}

.why-ellipse-wrap img {
  width: 100%;
  height: 100%;
  max-width: none;
}

.why-section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 54px;
  font-weight: 400;
  line-height: 0.8;
  text-align: center;
  color: #fff;
  letter-spacing: -2.5px;
  margin-bottom: 40px;
  position: relative;
}

.why-section h2 em {
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
  font-style: italic;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
}

.feature-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 0.833px solid #333;
}

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

.feature-name {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 27px;
  color: #fff;
  letter-spacing: -0.2px;
  width: 350px;
  flex-shrink: 0;
}

.feature-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 17px;
  color: #bbb;
  width: 460px;
  flex-shrink: 0;
}

/* ===========================
   CTA SECTION
=========================== */
.cta-section {
  position: relative;
  background: #000;
  padding: 80px 60px;
  overflow: hidden;
  height: 292px;
  max-width: 1200px;
  margin: 0 auto;
}

.cta-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
  width: 1080px;
  max-width: 100%;
}

.cta-line1 {
  font-family: 'Poppins', sans-serif;
  font-size: 80px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  letter-spacing: -5.6px;
  white-space: nowrap;
}

.cta-line2 {
  font-family: 'Poppins', sans-serif;
  font-size: 80px;
  font-weight: 400;
  line-height: 1;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: -5.6px;
  white-space: nowrap;
}

/* CTA decorative left */
.cta-decor-left {
  position: absolute;
  left: -33px;
  top: -115px;
  width: 238px;
  height: 268px;
  pointer-events: none;
}

.cta-decor-left .decor-rect-lg {
  left: 92.5px;
  top: 72px;
}

/* CTA decorative right */
.cta-decor-right {
  position: absolute;
  left: 1092px;
  top: 56px;
  width: 181.164px;
  height: 204px;
  pointer-events: none;
  transform: scaleY(-1);
}

.cta-decor-right .decor-rect-lg {
  left: 70.41px;
  top: 54.81px;
  width: 108.851px;
  height: 108.851px;
  border-width: 0.761px;
}

.cta-decor-right .decor-dot {
  width: 3.045px;
  height: 3.045px;
  border-width: 0.761px;
}

.cta-decor-right .decor-rect-sm {
  left: 41.64px;
  top: 123.24px;
  width: 65.31px;
  height: 65.31px;
  border-width: 0.457px;
}

/* ===========================
   STEPS SECTION
=========================== */
.steps-section {
  background: #000;
  display: flex;
  gap: 50px;
  align-items: center;
  padding: 60px;
  overflow: hidden;
  min-height: 678px;
  max-width: 1200px;
  margin: 0 auto;
}

.steps-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 530px;
  flex-shrink: 0;
}

.steps-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 54px;
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
}

.steps-content h2 em {
  font-family: 'Poppins', sans-serif;
  font-weight: 100;
  font-style: italic;
}

.steps-text {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
  letter-spacing: -0.32px;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.steps-img {
  flex: 1 0 0;
  align-self: stretch;
  min-width: 0;
}

.steps-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 30px;
}

/* ===========================
   FOOTER
=========================== */
.site-footer {
  position: relative;
  background: #000;
  height: 580px;
  overflow: hidden;
}

.footer-watermark {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 249px;
  pointer-events: none;
}

.footer-ellipse-img {
  position: absolute;
  top: 114.83px;
  left: -27.5px;
  width: 1229.762px;
  height: 217.221px;
  max-width: none;
}

.footer-watermark-text {
  position: absolute;
  left: 600px;
  top: calc(50% - 29.5px);
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 200px;
  line-height: 60px;
  color: rgba(255, 255, 255, 0.1);
  text-align: center;
  white-space: nowrap;
  letter-spacing: -6px;
}

.footer-content {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 364px;
  width: 1080px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

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

.footer-info {
  display: flex;
  gap: 100px;
  align-items: flex-start;
  color: #fff;
  white-space: nowrap;
}

.footer-location,
.footer-inquiry {
  display: flex;
  flex-direction: column;
  gap: 27px;
  width: 255px;
}

.footer-label {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  opacity: 0.5;
  line-height: 13px;
  letter-spacing: 0.5px;
  font-weight: 400;
}

.footer-location address,
.footer-inquiry address {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 23px;
  font-style: normal;
  font-weight: 400;
  white-space: normal;
}

.footer-social {
  display: flex;
  gap: 32.3px;
  align-items: flex-start;
}

.footer-social a {
  display: block;
  width: 76px;
  height: 76px;
  flex-shrink: 0;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.footer-copy {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: #bbb;
  line-height: 17px;
  font-weight: 400;
}

.footer-links {
  position: absolute;
  left: 368px;
  display: flex;
  gap: 53px;
  align-items: center;
}

.footer-links a {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #bbb;
  line-height: 17px;
  white-space: nowrap;
}

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

.back-to-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  overflow: hidden;
}

.back-to-top img {
  width: 100%;
  height: 100%;
}

/* ===========================
   MOBILE STYLES (≤768px)
=========================== */
@media (max-width: 768px) {

  /* Header */
  .header-inner {
    flex-direction: row;
    justify-content: center;
    height: auto;
    padding: 20px;
    gap: 0;
    position: relative;
  }

  .header-nav {
    display: none;
  }

  .burger-btn {
    display: block;
    position: static;
    transform: none;
  }

  /* Hero */
  .hero {
    padding: 40px 20px;
    gap: 40px;
    height: auto;
    min-height: auto;
  }

  .hero-ellipse-wrap img {
    width: 286px;
    height: 230px;
  }

  .hero-title {
    font-size: 40px;
    letter-spacing: -1.2px;
    width: 100%;
  }

  .hero-desc {
    width: 100%;
    font-size: 16px;
  }

  .hero-cards {
    width: 390px;
    max-width: 100%;
    height: 107.25px;
  }

  .game-card {
    width: 66.569px;
    height: 92.457px;
    border-radius: 10.086px;
    box-shadow: var(--glow-shadow-mobile);
  }

  .card-wrapper:nth-child(1) {
    left: -8.74px;
    top: 42.7px;
    width: 89.475px;
    height: 107.224px;
  }

  .card-wrapper:nth-child(2) {
    left: 77.71px;
    top: 9.75px;
    width: 78.789px;
    height: 100.822px;
  }

  .card-wrapper:nth-child(3) {
    left: 167.26px;
    top: 0;
    width: 66.569px;
    height: 92.457px;
  }

  .card-wrapper:nth-child(4) {
    left: 244.58px;
    top: 9.75px;
    width: 78.789px;
    height: 100.822px;
  }

  .card-wrapper:nth-child(5) {
    left: 323.09px;
    top: 42.7px;
    width: 89.475px;
    height: 107.224px;
  }

  .hero-decor {
    display: none;
  }

  /* About */
  .about-section {
    flex-direction: column;
    padding: 40px 20px;
    gap: 20px;
    min-height: auto;
    align-items: flex-start;
  }

  .about-img {
    width: 100%;
    height: 464px;
    align-self: auto;
  }

  .about-img img {
    height: 100%;
    object-fit: cover;
  }

  .about-content {
    width: 100%;
  }

  .about-content h2 {
    font-size: 34px;
  }

  /* Why */
  .why-section {
    padding: 40px 20px;
    min-height: auto;
  }

  .why-ellipse-wrap {
    top: -26px;
    left: -20px;
    width: 470px;
    height: 81px;
  }

  .why-section h2 {
    font-size: 34px;
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: 0.8;
  }

  .why-features {
    gap: 10px;
  }

  .feature-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .feature-name {
    width: 100%;
    font-size: 20px;
  }

  .feature-desc {
    width: 100%;
    line-height: 1.5;
  }

  /* CTA */
  .cta-section {
    padding: 80px 20px;
    height: auto;
  }

  .cta-line1,
  .cta-line2 {
    font-size: 40px;
    letter-spacing: -2.8px;
    line-height: 1.1;
    white-space: normal;
  }

  .cta-decor-left,
  .cta-decor-right {
    display: none;
  }

  /* Steps */
  .steps-section {
    flex-direction: column;
    padding: 40px 20px;
    gap: 20px;
    min-height: auto;
    align-items: flex-start;
  }

  .steps-img {
    width: 100%;
    height: 357px;
    order: -1;
    align-self: auto;
  }

  .steps-img img {
    height: 100%;
    object-fit: cover;
  }

  .steps-content {
    width: 100%;
  }

  .steps-content h2 {
    font-size: 34px;
  }

  /* Footer */
  .site-footer {
    height: auto;
    overflow: hidden;
  }

  .footer-watermark {
    position: relative;
    left: 0;
    transform: none;
    width: 100%;
    height: 80.925px;
  }

  .footer-ellipse-img {
    top: 37.32px;
    left: -8.94px;
    width: 399.673px;
    height: 70.597px;
  }

  .footer-watermark-text {
    left: 50%;
    font-size: 65px;
    line-height: 19.5px;
    letter-spacing: -1.95px;
    top: calc(50% - 9.59px);
  }

  .footer-content {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    width: 100%;
    padding: 0 20px 40px;
    gap: 20px;
  }

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

  .footer-info {
    flex-direction: column;
    gap: 20px;
    white-space: normal;
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .footer-location,
  .footer-inquiry {
    width: 100%;
    gap: 10px;
    align-items: center;
  }

  .footer-social {
    align-self: center;
  }

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

  .footer-links {
    position: static;
    gap: 10px;
    flex-wrap: wrap;
  }

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

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

.catalog-hero {
  position: relative;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
  padding: 60px 0;
  height: 912px;
  overflow: hidden;
}

/* Two side glow ellipses */
.catalog-ellipse-right,
.catalog-ellipse-left {
  position: absolute;
  width: 396px;
  height: 494px;
  pointer-events: none;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog-ellipse-right {
  left: calc(50% + 631px);
  top: calc(50% - 33px);
  transform: translate(-50%, -50%);
}

.catalog-ellipse-left {
  left: calc(50% - 631px);
  top: calc(50% - 33px);
  transform: translate(-50%, -50%);
}

.catalog-ellipse-right img,
.catalog-ellipse-left img {
  transform: rotate(-90deg);
  width: 494px;
  height: 396px;
  max-width: none;
}

.catalog-title {
  font-family: 'Poppins', sans-serif;
  font-size: 80px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  color: #fff;
  letter-spacing: -2.4px;
  width: 1080px;
  max-width: 100%;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.catalog-title em {
  font-family: 'Poppins', sans-serif;
  font-weight: 100;
  font-style: italic;
}

.catalog-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  text-align: center;
  color: #fff;
  letter-spacing: -0.48px;
  width: 815px;
  max-width: 90%;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Linked game cards (catalog) */
.game-card-link {
  display: block;
}

/* ===========================
   CATALOG — MOBILE OVERRIDES
=========================== */
@media (max-width: 768px) {
  .catalog-hero {
    padding: 40px 20px;
    height: auto;
    min-height: auto;
  }

  .catalog-title {
    font-size: 34px;
    letter-spacing: -1.02px;
    width: 100%;
  }

  .catalog-desc {
    width: 100%;
  }

  .catalog-ellipse-right {
    left: calc(50% + 228px);
    top: calc(50% - 66.13px);
  }

  .catalog-ellipse-left {
    left: calc(50% - 195px);
    top: calc(50% - 68.13px);
  }

  .catalog-ellipse-right img,
  .catalog-ellipse-left img {
    width: 290px;
    height: 232px;
  }
}


@media (max-width: 768px) {
  .header-inner{
    display: flex;
    flex-direction: column;
  }
 .footer-links{
  align-items: center;
  justify-content: center;
 }
}

/* ===========================
   POLICY PAGES
=========================== */
.policy-section {
  background: #000;
  padding: 80px 0;
}

.policy-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.policy-title {
  font-family: 'Poppins', sans-serif;
  font-size: 54px;
  font-weight: 400;
  line-height: 0.8;
  text-align: center;
  color: #fff;
  letter-spacing: -2.5px;
}

.policy-body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #bbb;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.policy-body h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .policy-section {
    padding: 40px 0;
  }

  .policy-title {
    font-size: 34px;
    letter-spacing: -1px;
    line-height: 1.1;
  }
}

/* ===========================
   GAME DESCRIPTION PAGE
=========================== */
.game-hero {
  position: relative;
  background: #000;
  padding: 60px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  min-height: 873px;
}

.game-hero-ellipse-right,
.game-hero-ellipse-left {
  position: absolute;
  width: 596px;
  height: 494px;
  pointer-events: none;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-hero-ellipse-right {
  left: calc(60% + 642px);
  top: 40%;
  transform: translate(-50%, -50%);
}

.game-hero-ellipse-left {
  left: calc(50% - 573px);
  top: 80%;
  transform: translate(-50%, -50%);
}

.game-hero-ellipse-right img,
.game-hero-ellipse-left img {
  transform: rotate(-90deg);
  width: 494px;
  height: 396px;
  max-width: none;
}

.game-hero-inner {
  position: relative;
  z-index: 1;
  width: 1080px;
  max-width: calc(100% - 40px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.game-hero-image {
  width: 600px;
  max-width: 100%;
  height: 300px;
  border-radius: 30px;
  box-shadow: var(--glow-shadow);
  object-fit: cover;
  flex-shrink: 0;
}

.game-hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 54px;
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
}

.game-hero-title .font-thin {
  font-weight: 200;
}

.game-hero-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.32px;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

@media (max-width: 768px) {
  .game-hero {
    padding: 40px 20px;
    gap: 20px;
    min-height: auto;
  }

  .game-hero-ellipse-right {
    left: calc(50% + 195px);
    top: 50%;
    width: 320px;
    height: 256px;
  }

  .game-hero-ellipse-left {
    left: calc(50% - 195px);
    top: 55%;
    width: 282px;
    height: 226px;
  }

  .game-hero-ellipse-right img,
  .game-hero-ellipse-left img {
    width: 100%;
    height: 100%;
  }

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

  .game-hero-image {
    width: 100%;
    height: 200px;
  }

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

/* ===========================
   ANIMATIONS
=========================== */
@keyframes mascotFloat {
  0%   { transform: translateY(0) rotate(0deg); }
  25%  { transform: translateY(-6px) rotate(3deg); }
  50%  { transform: translateY(0) rotate(0deg); }
  75%  { transform: translateY(-4px) rotate(-3deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

.about-img img,
.steps-img img {
  animation: mascotFloat 3.5s ease-in-out infinite;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideUpBanner {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Hero entrance — staggered */
.hero-title,
.catalog-title,
.game-hero-title {
  animation: fadeInUp 0.7s ease both;
}

.hero-desc,
.catalog-desc,
.game-hero-desc {
  animation: fadeInUp 0.7s ease 0.15s both;
}

.hero .btn,
.catalog-hero .btn,
.game-hero .btn {
  animation: fadeInUp 0.7s ease 0.28s both;
}

.hero-cards {
  animation: fadeInUp 0.8s ease 0.1s both;
}

/* Scroll-reveal base state */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger for feature rows */
.feature-row.reveal:nth-child(2) { transition-delay: 0.08s; }
.feature-row.reveal:nth-child(3) { transition-delay: 0.16s; }
.feature-row.reveal:nth-child(4) { transition-delay: 0.24s; }
.feature-row.reveal:nth-child(5) { transition-delay: 0.32s; }

/* Card hover lift */
.game-card-link {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.game-card-link:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 0 120px 0 #bbec6c;
}

/* Button press */
.btn {
  transition: opacity 0.2s ease, transform 0.15s ease;
}

.btn:active {
  transform: scale(0.97);
}

/* Nav link underline */
.header-nav a,
.mobile-nav a {
  position: relative;
  transition: color 0.2s ease;
}

.header-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.25s ease;
}

.header-nav a:hover::after {
  width: 100%;
}

/* Cookie banner entrance */
/* ===========================
   COOKIE BANNER
=========================== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 700px;
  background: #fff;
  border-radius: 20px;
  padding: 32px 36px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: slideUpBanner 0.45s ease both;
}

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

.cookie-banner-title {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #000;
  line-height: 1.1;
}

.cookie-banner-text {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #000;
  line-height: 1.6;
}

.cookie-banner-actions {
  display: flex;
  gap: 16px;
}

.cookie-btn {
  flex: 1;
  padding: 16px 24px;
  border-radius: 50px;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  background: #5a9a4a;
  cursor: pointer;
}

.cookie-btn:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .cookie-banner {
    bottom: 16px;
    padding: 24px 20px;
    border-radius: 16px;
    width: calc(100% - 32px);
  }

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

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

  .cookie-banner-actions {
    flex-direction: column;
  }
}