/* ============================================
   NORXIANBRAND — Global Stylesheet
   ============================================ */

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

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Unbounded', sans-serif;
  background-color: #a6bee3;
  color: #001027;
  overflow-x: hidden;
}

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

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

/* ---- CSS Variables ---- */
:root {
  --color-bg: #a6bee3;
  --color-dark: #001027;
  --color-accent: #289bfa;
  --color-white: #ffffff;
  --color-divider: rgba(255, 255, 255, 0.3);
  --font: 'Unbounded', sans-serif;
  --container-max: 1200px;
  --side-pad: 60px;
  --side-pad-mobile: 20px;
}

/* ---- Shared Button ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 60px;
  width: 275px;
  height: 65px;
  white-space: nowrap;
}

/* ---- Section Title ---- */
.section-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 40px;
  color: var(--color-dark);
  text-transform: uppercase;
  line-height: 1.15;
}

.section-title--white {
  color: var(--color-white);
}

.section-title--center {
  text-align: center;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-top: 10px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--side-pad);
}

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

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

.logo-text {
  font-family: var(--font);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-dark);
  text-transform: uppercase;
}

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

.nav a {
  font-family: var(--font);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-dark);
  transition: opacity 0.2s;
}

.nav a:hover {
  opacity: 0.7;
}

.nav a.active {
  font-weight: 700;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
}

.header-divider {
  width: 100%;
  height: 1px;
  background: var(--color-divider);
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 20px;
  padding: 20px var(--side-pad-mobile);
  background: var(--color-bg);
}

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

.mobile-nav a {
  font-family: var(--font);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-dark);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 727px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url(/wp-content/themes/norxianbrand/assets/images/hero-bg.png) center / cover no-repeat;
}

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

.hero-headline {
  position: absolute;
  top: 60px;
  left: 60px;
  width: 842px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 60px;
  color: var(--color-white);
  text-transform: uppercase;
  line-height: 1.1;
  z-index: 1;
}

.hero-cta {
  position: absolute;
  top: 502px;
  left: 60px;
  z-index: 1;
}

.hero-right {
  display: none; /* wrapper not used; body/quote positioned individually */
}

.hero-body {
  position: absolute;
  top: 212px;
  right: 60px;
  width: 275px;
  font-family: var(--font);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-white);
  line-height: 1.7;
  text-align: justify;
  z-index: 1;
}

.hero-quote {
  position: absolute;
  top: 567px;
  right: 60px;
  width: 275px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-white);
  text-transform: uppercase;
  line-height: 1.2;
  z-index: 1;
}

/* Mobile hero elements (hidden on desktop) */
.hero-mobile-content {
  display: none;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  position: relative;
  overflow: hidden;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-right: var(--side-pad);
}

.about-bg-right {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: right center;
  pointer-events: none;
  z-index: 0;
}

.about-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 27px;
}

.about-image {
  width: 495px;
  height: 577px;
  object-fit: cover;
  border-radius: 0 40px 40px 0;
  flex-shrink: 0;
}

.about-text {
  width: 618px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 10px;
}

.about-body-row {
  display: flex;
  align-items: flex-end;
  gap: 38px;
}

.about-body-text {
  width: 480px;
  font-family: var(--font);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-dark);
  line-height: 1.7;
  text-align: justify;
}

.about-badge {
  width: 100px;
  height: 100px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ============================================
   WHY CHOOSE
   ============================================ */
.why-choose {
  position: relative;
  padding: 60px var(--side-pad);
  overflow: hidden;
}

.why-choose-ellipse {
  position: absolute;
  left: -130px;
  top: 81px;
  width: 430px;
  height: 430px;
  pointer-events: none;
  z-index: 0;
}

.why-choose-ellipse img {
  width: 100%;
  height: 100%;
}

.why-choose-inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

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

.cards-row {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.card {
  width: 330px;
  border: 1px solid var(--color-dark);
  border-radius: 28px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: transparent;
}

.card-pill {
  background: var(--color-accent);
  border: 1px solid var(--color-white);
  border-radius: 60px;
  padding: 14px 20px;
  font-family: var(--font);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-white);
  text-transform: uppercase;
  line-height: 1.2;
}

.card-body {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 5px 5px;
  flex: 1;
}

.card-desc {
  font-family: var(--font);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-dark);
  line-height: 1.6;
  flex: 1;
  padding-right: 10px;
}

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

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

.testimonials-ellipse {
  position: absolute;
  right: -130px;
  top: 73px;
  width: 430px;
  height: 430px;
  pointer-events: none;
  z-index: 0;
}

.testimonials-ellipse img {
  width: 100%;
  height: 100%;
}

.testimonials-inner {
  position: relative;
  z-index: 1;
}

.testimonials-header {
  max-width: 1080px;
  margin: 0 auto 40px;
  padding: 0 var(--side-pad);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonials-subtitle {
  font-family: var(--font);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-dark);
  line-height: 1.6;
}

.testimonials-layout {
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.testimonials-photo {
  object-fit: cover;
  transform: rotate(180deg) scaleY(-1);
  flex-shrink: 0;
}

.testimonials-photo--left {
  width: 509px;
  height: 507px;
  border-radius: 40px 0px 0px 40px;
}

.testimonials-photo--right {
  width: 250px;
  height: 507px;
  border-radius: 40px 0 0 40px;
}

.testimonials-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 27px;
}

.testimonial-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.testimonial-name {
  font-family: var(--font);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-dark);
}

.testimonial-quote {
  font-family: var(--font);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-dark);
  line-height: 1.6;
}

/* ============================================
   GET IN TOUCH
   ============================================ */
.contact {
  padding: 60px var(--side-pad);
}

.contact-card {
  max-width: 1080px;
  margin: 0 auto;
  background: var(--color-accent);
  border-radius: 40px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}

.contact-body {
  font-family: var(--font);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-white);
  line-height: 1.6;
  max-width: 700px;
}

.contact-pills {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-white);
  border-radius: 60px;
  padding: 18px 20px;
  width: 310px;
  height: 70px;
  font-family: var(--font);
  font-weight: 500;
  font-size: 12px;
  color: var(--color-white);
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  position: relative;
  padding: 40px var(--side-pad);
  overflow: hidden;
}

.footer-ellipse {
  position: absolute;
  left: 385px;
  top: 48px;
  width: 430px;
  height: 430px;
  pointer-events: none;
  z-index: 0;
}

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

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.footer-nav a {
  font-family: var(--font);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-dark);
  transition: opacity 0.2s;
}

.footer-nav a:hover {
  opacity: 0.7;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: var(--color-divider);
}

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

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

.footer-socials a {
  display: flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
}

.footer-socials img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.footer-copy {
  font-family: var(--font);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-dark);
}

/* ============================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
  /* ---- Header ---- */
  .header-inner {
    padding: 0 var(--side-pad-mobile);
  }

  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* ---- Hero ---- */
  .hero {
    height: auto;
  }

  .hero-bg {
    display: none;
  }

  .hero-overlay {
    display: none;
  }

  .hero-headline,
  .hero-cta,
  .hero-body,
  .hero-quote {
    display: none;
  }

  .hero-mobile-content {
    display: flex;
    position: relative;
    flex-direction: column;
    gap: 20px;
    z-index: 1;
    padding: 40px var(--side-pad-mobile);
    background: url(/wp-content/themes/norxianbrand/assets/images/hero-bg.png) center / cover no-repeat;
  }

  .hero-mobile-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
  }

  .hero-mobile-headline,
  .hero-mobile-body,
  .hero-mobile-quote,
  .hero-mobile-content .btn-primary {
    position: relative;
    z-index: 1;
  }

  .hero-mobile-headline {
    font-family: var(--font);
    font-weight: 700;
    font-size: 34px;
    color: var(--color-white);
    text-transform: uppercase;
    line-height: 1.15;
  }

  .hero-mobile-body {
    font-family: var(--font);
    font-weight: 300;
    font-size: 14px;
    color: var(--color-white);
    line-height: 1.7;
    text-align: justify;
  }

  .hero-mobile-quote {
    font-family: var(--font);
    font-weight: 700;
    font-size: 20px;
    color: var(--color-white);
    text-transform: uppercase;
    line-height: 1.2;
  }

  /* ---- About ---- */
  .about {
    padding: 40px var(--side-pad-mobile);
  }

  .about-inner {
    flex-direction: column;
    gap: 20px;
  }

  .about-image {
    width: 100%;
    height: 200px;
    border-radius: 40px;
  }

  .about-text {
    width: 100%;
    gap: 20px;
    padding-top: 0;
  }

  .about-body-row {
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
  }

  .about-body-text {
    width: 100%;
  }

  .section-title {
    font-size: 28px;
  }

  /* ---- Why Choose ---- */
  .why-choose {
    padding: 40px var(--side-pad-mobile);
  }

  .why-choose-inner {
    gap: 20px;
  }

  .cards-wrapper {
    gap: 20px;
  }

  .cards-row {
    flex-direction: column;
    align-items: center;
  }

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

  /* ---- Testimonials ---- */
  .testimonials {
    padding: 40px 0;
  }

  .testimonials-header {
    padding: 0 var(--side-pad-mobile);
    margin-bottom: 20px;
  }

  .testimonials-layout {
    flex-direction: column;
    gap: 20px;
    padding: 0 var(--side-pad-mobile);
  }

  .testimonials-photo--left {
    width: 100%;
    height: 200px;
    border-radius: 40px;
  }

  .testimonials-photo--right {
    width: 100%;
    height: 200px;
    border-radius: 40px;
  }

  .testimonials-text {
    width: 100%;
  }

  .testimonials-ellipse {
    right: -200px;
    top: 349px;
    width: 430px;
    height: 430px;
  }

  /* ---- Contact ---- */
  .contact {
    padding: 40px var(--side-pad-mobile);
  }

  .contact-card {
    max-width: 390px;
    padding: 20px;
    gap: 20px;
  }

  .contact-pills {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .contact-pill {
    width: 100%;
    height: auto;
    padding: 10px 20px;
  }

  /* ---- Footer ---- */
  .footer {
    padding: 40px var(--side-pad-mobile);
  }

  .footer-ellipse {
    left: 47px;
    top: 158px;
    width: 296px;
    height: 296px;
  }

  .footer-inner {
    gap: 20px;
  }

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

  .footer-nav {
    justify-content: space-between;
    width: 100%;
  }

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

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

/* ============================================
   CATALOG PAGE — HERO
   ============================================ */
.catalog-hero {
  display: flex;
  align-items: center;
  gap: 27px;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: var(--side-pad);
  /* no right padding — image bleeds to edge */
  position: relative;
  overflow: hidden;
}

.catalog-hero-ellipse {
  position: absolute;
  right: -100px;
  top: -100px;
  width: 430px;
  height: 430px;
  pointer-events: none;
  z-index: 0;
}

.catalog-hero-ellipse img {
  width: 100%;
  height: 100%;
}

.catalog-hero-text {
  width: 618px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.catalog-hero-heading {
  font-family: var(--font);
  font-weight: 700;
  font-size: 54px;
  color: var(--color-dark);
  text-transform: uppercase;
  line-height: 1.1;
}

.catalog-hero-body {
  font-family: var(--font);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-dark);
  line-height: 1.7;
}

.catalog-hero-body p + p {
  margin-top: 14px;
}

.catalog-mascot-small {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.catalog-hero-image {
  flex: 1;
  min-width: 400px;
  height: 577px;
  object-fit: cover;
  object-position: center;
  border-radius: 40px 0 0 40px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* ============================================
   CATALOG PAGE — GAMES GRID
   ============================================ */
.catalog-section {
  position: relative;
  padding: 60px var(--side-pad);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.catalog-section-ellipse {
  position: absolute;
  left: -130px;
  top: 81px;
  width: 430px;
  height: 430px;
  pointer-events: none;
  z-index: 0;
}

.catalog-section-ellipse img {
  width: 100%;
  height: 100%;
}

.catalog-section-heading {
  font-family: var(--font);
  font-weight: 700;
  font-size: 54px;
  color: var(--color-dark);
  text-transform: uppercase;
  text-align: center;
  max-width: 1080px;
  position: relative;
  z-index: 1;
  line-height: 1.1;
}

.games-container {
  width: 1080px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}

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

.games-row-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

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

.game-card-link {
  display: block;
  flex-shrink: 0;
  will-change: transform;
  border-radius: 20px;
  overflow: hidden;
}

.game-card {
  width: 224px;
  height: 220px;
  object-fit: cover;
  display: block;
}

.catalog-mascot-large {
  width: 216px;
  height: 216px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ============================================
   CATALOG PAGE — RESPONSIVE MOBILE
   ============================================ */
@media (max-width: 768px) {
  /* Hero */
  .catalog-hero {
    flex-direction: column;
    padding: 40px var(--side-pad-mobile);
    gap: 20px;
    align-items: flex-start;
  }

  .catalog-hero-image {
    width: 100%;
    height: 200px;
    border-radius: 40px;
    order: -1; /* image first on mobile */
  }

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

  .catalog-hero-heading {
    font-size: 28px;
  }

  /* Games section */
  .catalog-section {
    padding: 40px var(--side-pad-mobile);
    gap: 20px;
  }

  .catalog-section-heading {
    font-size: 28px;
    max-width: 100%;
  }

  .games-container {
    width: 100%;
    gap: 20px;
  }

  .games-row {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .game-card-link {
    width: calc((100% - 12px) / 2);
  }

  .game-card {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
  }

  .games-row-bottom {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .catalog-mascot-large {
    order: 1;
    width: 160px;
    height: 160px;
  }

  .games-row-right {
    order: 2;
    margin-top: 20px;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
}

/* ============================================
   GAME DETAIL PAGE
   ============================================ */
.game-detail {
  position: relative;
  padding: 60px;
  overflow: hidden;
}

.game-detail-ellipse {
  position: absolute;
  left: -130px;
  top: 81px;
  width: 430px;
  height: 430px;
  pointer-events: none;
  z-index: 0;
}

.game-detail-ellipse img {
  width: 100%;
  height: 100%;
}

.game-detail-inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.game-detail-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 54px;
  color: var(--color-dark);
  text-transform: uppercase;
  text-align: center;
  line-height: 1.1;
}

.game-detail-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.game-detail-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.game-detail-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.game-detail-body p {
  font-family: var(--font);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-dark);
  line-height: 1.7;
}

.game-detail-image {
  width: 224px;
  height: 220px;
  border-radius: 20px;
  object-fit: cover;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .game-detail {
    padding: 40px var(--side-pad-mobile);
  }

  .game-detail-inner {
    gap: 20px;
  }

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

  .game-detail-content {
    flex-direction: column;
    gap: 20px;
  }

  .game-detail-image {
    order: -1;
    align-self: center;
  }

  .game-detail-text {
    gap: 20px;
    width: 100%;
  }
}

/* ============================================
   POLICY PAGES (Privacy / Terms / Cookies)
   ============================================ */
.policy {
  position: relative;
  padding: 60px var(--side-pad);
  overflow: hidden;
}

.policy-ellipse {
  position: absolute;
  left: -130px;
  top: 81px;
  width: 430px;
  height: 430px;
  pointer-events: none;
  z-index: 0;
}

.policy-ellipse img {
  width: 100%;
  height: 100%;
}

.policy-inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.policy-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 40px;
  color: var(--color-dark);
  text-transform: uppercase;
  text-align: center;
  line-height: 1.15;
}

.policy-body {
  font-family: var(--font);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-dark);
  line-height: 1.7;
}

.policy-body p {
  margin-bottom: 20px;
}

.policy-body h2 {
  font-family: var(--font);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-dark);
  line-height: 1.7;
  margin-top: 20px;
  margin-bottom: 10px;
}

.policy-body h3 {
  font-family: var(--font);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-dark);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 8px;
}

.policy-body ul {
  list-style: disc;
  margin-left: 21px;
  margin-bottom: 20px;
}

.policy-body li {
  margin-bottom: 4px;
  font-weight: 300;
}

@media (max-width: 768px) {
  .policy {
    padding: 40px var(--side-pad-mobile);
  }

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

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

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay for child elements */
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }

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

.btn-primary:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(40, 155, 250, 0.4);
}

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

.logo:hover {
  opacity: 0.8;
}

/* ---- Nav links — underline slide ---- */
.nav a {
  position: relative;
  transition: opacity 0.2s ease;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-dark);
  transition: width 0.25s ease;
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

/* ---- Cards (Why Choose) hover ---- */
.card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 16, 39, 0.12);
  border-color: var(--color-accent);
}

/* ---- Game cards hover (improve existing) ---- */
.game-card-link {
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.game-card-link:hover {
  transform: translateY(-6px) scale(1.02);
  opacity: 1;
}

/* ---- About image hover ---- */
.about-image {
  transition: transform 0.4s ease;
}

.about-image:hover {
  transform: scale(1.02);
}

/* ---- Footer socials hover ---- */
.footer-socials a {
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-socials a:hover {
  transform: translateY(-3px) scale(1.1);
  opacity: 0.85;
}

/* ---- Footer nav links ---- */
.footer-nav a {
  position: relative;
  transition: opacity 0.2s ease;
}

.footer-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-dark);
  transition: width 0.25s ease;
}

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

/* ---- Contact pills hover ---- */
.contact-pill {
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-pill:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* ---- Cookie banner buttons hover ---- */
.cookie-btn-accept {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.cookie-btn-decline {
  transition: background 0.2s ease, transform 0.2s ease;
}

.cookie-btn-decline:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

/* ---- Hero: entrance animation ---- */
.hero-headline,
.hero-cta,
.hero-body,
.hero-quote {
  animation: fadeUp 0.7s ease both;
}

.hero-cta      { animation-delay: 0.15s; }
.hero-body     { animation-delay: 0.25s; }
.hero-quote    { animation-delay: 0.4s; }

/* ---- Mobile nav links ---- */
.mobile-nav a {
  transition: opacity 0.2s ease;
}

.mobile-nav a:hover {
  opacity: 0.6;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1000px;
  background: var(--color-accent);
  border-radius: 24px;
  padding: 40px 48px;
  z-index: 9999;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.cookie-banner-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 32px;
  color: var(--color-white);
  text-transform: uppercase;
}

.cookie-banner-text {
  font-family: var(--font);
  font-weight: 300;
  font-size: 13px;
  color: var(--color-white);
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.cookie-btn-accept {
  font-family: var(--font);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--color-white);
  color: var(--color-dark);
  border: none;
  border-radius: 50px;
  padding: 18px 48px;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-btn-decline {
  font-family: var(--font);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.25);
  color: var(--color-white);
  border: none;
  border-radius: 50px;
  padding: 18px 48px;
  cursor: pointer;
  white-space: nowrap;
}

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

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

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

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

  .cookie-btn-accept,
  .cookie-btn-decline {
    padding: 14px 32px;
  }
}
