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

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

html, body {
  font-family: 'Roboto Condensed', sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

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

img {
  display: block;
}

/* ============ CSS VARIABLES ============ */
:root {
  --purple: #7300ff;
  --teal: #008f99;
  --gradient: linear-gradient(to right, #7300ff, #008f99);
}

/* ============ PAGE WRAPPER ============ */
.page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* ============ GRADIENT BUTTON ============ */
.btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 60px;
  background: var(--gradient);
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.1;
  color: #fff;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  flex-shrink: 0;
}

/* ============ HEADER ============ */
.site-header {
  background: #000;
  border-bottom: 1px solid #fff;
  padding: 10px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  overflow: hidden;
}

.site-header .logo {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
}

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

.site-header .logo-name {
  font-size: 40px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}

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

.site-header .header-nav a {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.site-header .hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.site-header .hamburger-btn img {
  width: 36px;
  height: 12px;
  display: block;
}

/* Mobile nav overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.97);
  z-index: 1000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.mobile-nav-overlay.active {
  display: flex;
}

.mobile-nav-overlay a {
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.mobile-nav-overlay .close-nav {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}

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

.hero-decor-center {
  position: absolute;
  left: 476px;
  top: 24px;
  width: 248px;
  height: 248px;
  flex-shrink: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-decor-center img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  inset: 0;
}

.hero-decor-center .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.39);
}

.hero-decor-right {
  position: absolute;
  right: -50px;
  top: 47px;
  width: 201px;
  height: 201px;
  flex-shrink: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-decor-right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-decor-left {
  position: absolute;
  left: -50px;
  top: 47px;
  width: 201px;
  height: 201px;
  flex-shrink: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-decor-left img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-headline {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.045;
  letter-spacing: 4.2px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  width: 862px;
  position: relative;
  z-index: 1;
}

.hero-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.hero-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 1100px;
}

.hero-text-cols {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #fff;
}

.hero-text-cols p:first-child {
  width: 500px;
  flex-shrink: 0;
}

.hero-text-cols p:last-child {
  width: 544px;
  flex-shrink: 0;
}

.hero-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.5);
  flex-shrink: 0;
}

/* ============ STATS + WHO WE ARE ============ */
.stats-section {
  background: #000;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  overflow: hidden;
}

.stats-row {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  width: 100%;
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 1px solid var(--purple);
  padding-left: 10px;
  min-width: 0;
}

.stat-number {
  font-size: 60px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.3;
  color: #fff;
}

.stat-label {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #fff;
}

.who-we-are {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
}

.section-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  flex-shrink: 0;
}

.section-heading {
  font-size: 50px;
  font-weight: 500;
  line-height: 1.045;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #fff;
}

.body-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.2px;
  color: #fff;
}

.body-text p + p {
  margin-top: 24px;
}

/* ============ WHY CHOOSE US ============ */
.why-section {
  background: #000;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  overflow: hidden;
}

.why-section .section-heading {
  text-align: center;
  width: 100%;
}

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

.feature-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--purple);
}

.feature-desc {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
  width: 394px;
  flex-shrink: 0;
}

.feature-title {
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  width: 311px;
  flex-shrink: 0;
}

.feature-arrow {
  width: 39px;
  height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: visible;
}

.feature-arrow img {
  transform: rotate(38.48deg);
  width: 50px;
  height: 30px;
  display: block;
}

.feature-item .feature-title-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

/* ============ TESTIMONIALS ============ */
.testimonials-section {
  background: #000;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  position: relative;
  overflow: hidden;
}

.testimonials-section .section-heading {
  text-align: center;
  width: 100%;
}

.testimonials-heading-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.testimonials-decor {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: auto;
  pointer-events: none;
  z-index: 0;
}

.testimonials-heading-wrap .section-heading {
  position: relative;
  z-index: 1;
}

.testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 600px;
  position: relative;
  z-index: 3;
}

.testimonial-card {
  background: var(--gradient);
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 20px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  color: #fff;
  white-space: nowrap;
}

.testimonial-quote {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: #fff;
}

/* ============ FAQ ============ */
.faq-section {
  background: #000;
  padding: 60px 50px;
  display: flex;
  gap: 50px;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.faq-questions {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-width: 0;
}

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

.faq-question {
  display: flex;
  align-items: center;
  gap: 21px;
  cursor: pointer;
  min-height: 28px;
}

.faq-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  position: relative;
}

.faq-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.faq-question-text {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.2px;
  text-transform: capitalize;
  color: #fff;
  line-height: 1.1;
  flex: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  border-left: 2px solid var(--purple);
  padding: 0 0 0 10px;
  transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
  max-height: 200px;
  opacity: 1;
  padding: 6px 0 6px 10px;
}

.faq-answer p {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 24px;
  color: #fff;
}

.faq-title-box {
  width: 431px;
  height: 254px;
  flex-shrink: 0;
  position: relative;
  border: 1px solid #fff;
}

.faq-title-box .faq-title-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
}

.faq-line-1 { top: 99px; }
.faq-line-2 { top: 171px; }

.faq-title-text {
  position: absolute;
  left: 20.5px;
  font-size: 50px;
  font-weight: 500;
  line-height: 1.045;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  width: 390px;
}

.faq-word-1 { top: 27px; }
.faq-word-2 { top: 109px; }
.faq-word-3 { top: 186px; }

.faq-title-text.white { color: #fff; }

.faq-title-text.gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-decor-desktop {
  position: absolute;
  left: 433px;
  top: 176px;
  width: 223px;
  height: 223px;
  object-fit: contain;
  pointer-events: none;
  z-index: 0;
}

.faq-decor-mobile {
  display: none;
  width: 223px;
  height: 223px;
  object-fit: contain;
  align-self: center;
}

/* ============ FOOTER ============ */
.site-footer {
  background: #000;
  border-top: 1px solid #fff;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  overflow: hidden;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 24px;
  text-decoration: none;
  flex-shrink: 0;
}

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

.footer-logo-name {
  font-size: 60px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}

.footer-contact {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
  text-align: right;
}

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

.social-links {
  display: flex;
  align-items: flex-start;
  gap: 11.745px;
  flex-shrink: 0;
}

.social-links a {
  display: block;
  flex-shrink: 0;
}

.social-icon-fb {
  width: 56.962px;
  height: 55.788px;
  overflow: hidden;
  position: relative;
}

.social-icon-fb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.social-icon-tw {
  width: 56.293px;
  height: 56.293px;
  overflow: hidden;
  position: relative;
}

.social-icon-tw img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

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

.footer-nav a {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.footer-copyright {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  text-align: center;
  width: 100%;
}

/* ============ RESPONSIVE — MOBILE ============ */
@media (max-width: 768px) {

  /* Header */
  .site-header {
    padding: 10px 20px;
    width: 100%;
  }

  .site-header .header-nav {
    display: none;
  }

  .site-header .hamburger-btn {
    display: flex;
  }

  /* Hero */
  .hero-section {
    padding: 40px 20px;
    gap: 20px;
    width: 100%;
  }

  .hero-decor-center {
    position: relative;
    left: auto;
    top: auto;
    width: 248px;
    height: 248px;
    align-self: center;
    flex-shrink: 0;
    z-index: 1;
  }

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

  .hero-headline {
    font-size: 40px;
    letter-spacing: 2.8px;
    width: 100%;
    position: relative;
    z-index: 1;
  }

  .hero-body {
    width: 100%;
    z-index: 1;
    position: relative;
  }

  .hero-text-wrap {
    width: 100%;
  }

  .hero-text-cols {
    flex-direction: column;
    gap: 20px;
  }

  .hero-text-cols p:first-child,
  .hero-text-cols p:last-child {
    width: 100%;
  }

  /* Stats */
  .stats-section {
    padding: 40px 20px;
    width: 100%;
  }

  .stats-row {
    flex-direction: column;
    gap: 20px;
  }

  .stat-number {
    font-size: 40px;
  }

  .section-image {
    height: 200px;
  }

  .section-heading {
    font-size: 30px;
    letter-spacing: 2.1px;
  }

  /* Why choose */
  .why-section {
    padding: 40px 20px;
    width: 100%;
  }

  .feature-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .feature-desc {
    width: 100%;
    flex-shrink: 1;
  }

  .feature-item .feature-title-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
  }

  .feature-title {
    text-align: left;
    flex: 1;
    width: auto;
  }

  /* Testimonials */
  .testimonials-section {
    padding: 40px 20px;
    gap: 20px;
    width: 100%;
  }

  .testimonials-list {
    width: 100%;
  }

  /* FAQ */
  .faq-section {
    padding: 40px 20px;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 100%;
  }

  .faq-title-box {
    width: 100%;
    height: 178px;
    order: -1;
  }

  .faq-title-text {
    font-size: 30px;
    letter-spacing: 2.1px;
    left: 21px;
    width: calc(100% - 42px);
  }

  .faq-line-1 { top: 65px; }
  .faq-line-2 { top: 114px; }
  .faq-word-1 { top: 25px; }
  .faq-word-2 { top: 74px; }
  .faq-word-3 { top: 123px; }

  .faq-decor-desktop {
    display: none;
  }

  .faq-decor-mobile {
    display: block;
    order: 0;
  }

  .faq-questions {
    order: 1;
    width: 100%;
  }

  /* Footer */
  .site-footer {
    padding: 40px 20px;
    gap: 20px;
    width: 100%;
  }

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

  .footer-contact {
    text-align: center;
  }

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

  .footer-logo-name {
    font-size: 40px;
  }

  .footer-logo img {
    width: 50px;
    height: 50px;
  }

  .footer-nav {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

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

/* Intro/Hero section */
.catalog-intro {
  background: #000;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  overflow: hidden;
}

.catalog-intro .section-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.catalog-intro .section-heading {
  text-align: left;
}

/* Banner section */
.catalog-banner-section {
  background: #000;
  padding: 60px 50px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.catalog-banner-box {
  background: var(--gradient);
  width: 1100px;
  padding: 40px;
  position: relative;
  overflow: visible;
}

.catalog-banner-text {
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  color: #fff;
  width: 940px;
}

.catalog-banner-text p + p {
  margin-top: 18px;
}

/* Desktop: floating game thumbnails */
.catalog-desktop-floats {
  position: absolute;
  left: -25px;
  top: -42px;
  width: 1150px;
  height: 319px;
  pointer-events: none;
}

.catalog-desktop-floats .game-float {
  position: absolute;
  display: block;
  pointer-events: auto;
  overflow: hidden;
}

.catalog-desktop-floats .game-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.game-float-1 { left: 444px; top: 216px; width: 59px;  height: 59px;  }
.game-float-2 { left: 24px;  top: 216px; width: 76px;  height: 76px;  }
.game-float-3 { left: 0px;   top: 21px;  width: 100px; height: 100px; }
.game-float-4 { left: 1008px;top: 0px;   width: 71px;  height: 71px;  }
.game-float-5 { left: 809px; top: 224px; width: 73px;  height: 73px;  }
.game-float-6 { left: 1064px;top: 108px; width: 86px;  height: 86px;  }

/* Mobile: game grid (hidden on desktop) */
.catalog-mobile-grid {
  display: none;
}

/* ============ CATALOG PAGE — MOBILE ============ */
@media (max-width: 768px) {
  .catalog-intro {
    padding: 40px 20px;
    gap: 20px;
  }

  .catalog-intro .section-image {
    height: 200px;
    width: 100%;
  }

  .catalog-banner-section {
    padding: 40px 20px;
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }

  .catalog-banner-box {
    width: 100%;
    padding: 20px;
    overflow: hidden;
  }

  .catalog-banner-text {
    width: 100%;
  }

  .catalog-desktop-floats {
    display: none;
  }

  /* Mobile game grid */
  .catalog-mobile-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    order: -1;
  }

  .catalog-mobile-grid .game-grid-card {
    display: block;
    overflow: hidden;
    flex-shrink: 0;
  }

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

  .game-grid-card-1 { width: 99px;  height: 99px;  }
  .game-grid-card-2 { width: 127px; height: 127px; }
  .game-grid-card-3 { width: 167px; height: 167px; }
  .game-grid-card-4 { width: 119px; height: 119px; }
  .game-grid-card-5 { width: 121px; height: 122px; }
  .game-grid-card-6 { width: 143px; height: 144px; }
}

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

.game-detail-section {
  background: #000;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  overflow: hidden;
}

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

.game-thumbnail {
  width: 200px;
  height: 200px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

.game-title {
  font-size: 50px;
  font-weight: 500;
  line-height: 1.045;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #fff;
  width: 400px;
}

.game-description {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.2px;
  color: #fff;
  width: 100%;
}

.game-description p + p {
  margin-top: 24px;
}

/* ============ GAME DETAIL PAGE — MOBILE ============ */
@media (max-width: 768px) {

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

  .game-hero-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
  }

  .game-title {
    font-size: 30px;
    letter-spacing: 2.1px;
    text-align: center;
    width: 100%;
  }

  .game-description {
    width: 100%;
  }
}

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

.policy-section {
  background: #000;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  overflow: hidden;
}

.policy-title {
  font-size: 50px;
  font-weight: 500;
  line-height: 1.045;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #fff;
  width: 100%;
}

.policy-body {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.2px;
  color: #fff;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.policy-body p {
  line-height: 24px;
  margin-bottom: 0;
}

.policy-body p + p {
  margin-top: 0;
}

.policy-body ul {
  list-style: disc;
  padding-left: 24px;
  margin: 0;
}

.policy-body ul li {
  line-height: 24px;
}

/* ============ POLICY PAGES — MOBILE ============ */
@media (max-width: 768px) {

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

  .policy-title {
    font-size: 30px;
    letter-spacing: 2.1px;
  }
}

/* ============ ANIMATIONS & HOVER EFFECTS ============ */

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

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* Page-load entrance animations */
.hero-headline {
  animation: fadeInDown 0.7s ease both;
}

.hero-body {
  animation: fadeInUp 0.7s ease 0.2s both;
}

.stats-row {
  animation: fadeInUp 0.6s ease 0.1s both;
}

.who-we-are {
  animation: fadeInUp 0.6s ease 0.2s both;
}

.feature-item:nth-child(1) { animation: fadeInUp 0.5s ease 0.05s both; }
.feature-item:nth-child(2) { animation: fadeInUp 0.5s ease 0.15s both; }
.feature-item:nth-child(3) { animation: fadeInUp 0.5s ease 0.25s both; }
.feature-item:nth-child(4) { animation: fadeInUp 0.5s ease 0.35s both; }
.feature-item:nth-child(5) { animation: fadeInUp 0.5s ease 0.45s both; }

.testimonial-card:nth-child(1) { animation: fadeInUp 0.5s ease 0.1s both; }
.testimonial-card:nth-child(2) { animation: fadeInUp 0.5s ease 0.2s both; }
.testimonial-card:nth-child(3) { animation: fadeInUp 0.5s ease 0.3s both; }

/* Floating decorative images */
.hero-decor-left img,
.hero-decor-right img {
  animation: floatY 4s ease-in-out infinite;
}

.hero-decor-right img {
  animation-delay: 1s;
}

.faq-decor-desktop,
.faq-decor-mobile {
  animation: floatY 5s ease-in-out infinite;
}

/* Button hover */
.btn-gradient {
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn-gradient:hover {
  transform: scale(1.03);
  opacity: 0.88;
}

/* Nav links hover */
.site-header .header-nav a,
.footer-nav a,
.mobile-nav-overlay a {
  transition: opacity 0.2s ease;
}

.site-header .header-nav a:hover,
.footer-nav a:hover,
.mobile-nav-overlay a:hover {
  opacity: 0.65;
}

/* Logo hover */
.site-header .logo,
.footer-logo {
  transition: opacity 0.2s ease;
}

.site-header .logo:hover,
.footer-logo:hover {
  opacity: 0.75;
}

/* Feature items hover */
.feature-item {
  transition: border-color 0.25s ease;
}

.feature-item:hover {
  border-color: #fff;
}

.feature-item .feature-title,
.feature-item .feature-desc {
  transition: opacity 0.2s ease;
}

.feature-item:hover .feature-title,
.feature-item:hover .feature-desc {
  opacity: 0.85;
}

/* Testimonial cards hover */
.testimonial-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(115, 0, 255, 0.35);
}

/* FAQ question hover */
.faq-question {
  transition: opacity 0.2s ease;
}

.faq-question:hover {
  opacity: 0.75;
}

/* Social icons hover */
.social-links a {
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-links a:hover {
  transform: scale(1.12);
  opacity: 0.8;
}

/* Game float thumbnails hover */
.game-float {
  transition: transform 0.25s ease;
}

.game-float:hover {
  transform: scale(1.08);
}

/* Catalog mobile grid hover */
.game-grid-card {
  transition: transform 0.25s ease;
}

.game-grid-card:hover {
  transform: scale(1.06);
}
