:root {
  --pink: #d95273;
  --maroon: #89052f;
  --light-pink: #ffbdc8;
  --cream: #fff5f5;
  --off-white: #fdfdfd;
  --ink: #1e1e1e;
  --black: #000000;
  --white: #ffffff;
  --maxw: 1200px;
  --pad: 60px;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.3;
  overflow-x: hidden;
}

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

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: normal;
  text-transform: capitalize;
  text-align: center;
  border-radius: 25px;
  padding: 15px 46px;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
}

.site-header {
  background: var(--white);
  position: relative;
  z-index: 20;
}

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

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

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

.brand-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: var(--pink);
  text-transform: uppercase;
  white-space: nowrap;
}

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

.nav a {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--black);
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.hamburger {
  display: none;
  width: 36px;
  height: 26px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hamburger img {
  width: 36px;
  height: 13px;
}

.site-footer {
  background: var(--pink);
  color: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "brand links"
    "contact social"
    "bottom bottom";
  column-gap: 40px;
  row-gap: 40px;
  padding: var(--pad) 0;
}

.footer-brand {
  grid-area: brand;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-title {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(48px, 9vw, 108px);
  line-height: 0.935;
  color: var(--white);
  text-transform: capitalize;
  white-space: nowrap;
  font-variation-settings: "opsz" 14;
}

.subscribe {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 419px;
  height: 42px;
  border: 1px solid var(--white);
}

.subscribe input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  outline: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: var(--off-white);
  padding: 0 16px;
  text-transform: capitalize;
}

.subscribe input::placeholder {
  color: var(--off-white);
  text-transform: capitalize;
  opacity: 1;
}

.subscribe-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  background: var(--maroon);
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-transform: capitalize;
}

.footer-links {
  grid-area: links;
  align-self: end;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 115px;
}

.footer-links-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.footer-links li {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
}

.footer-contact {
  grid-area: contact;
  align-self: center;
  display: flex;
  gap: 30px;
}

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

.contact-label {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: capitalize;
}

.contact-value {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
}

.footer-social {
  grid-area: social;
  align-self: center;
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-social a {
  display: block;
  width: 43px;
  height: 43px;
}

.footer-social img {
  width: 43px;
  height: 43px;
}

.footer-bottom {
  grid-area: bottom;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.footer-line {
  width: 1033px;
  max-width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.85);
}

.footer-copy {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  color: var(--white);
}

@media (max-width: 900px) {
  :root {
    --pad: 20px;
  }

  .header-inner {
    padding: 16px 20px;
  }

  .brand-name {
    font-size: 20px;
  }

  .hamburger {
    display: flex;
  }

  .nav {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-top: 18px;
  }

  .nav-toggle:checked ~ .nav {
    display: flex;
  }

  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 40px 0;
  }

  .footer-brand {
    order: 1;
    width: 100%;
    align-items: flex-start;
  }

  .footer-title {
    font-size: clamp(36px, 11vw, 50px);
    white-space: normal;
  }

  .subscribe {
    max-width: none;
  }

  .footer-contact {
    order: 2;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
  }

  .footer-contact .contact-item:nth-child(2) {
    width: 175px;
  }

  .footer-links {
    order: 3;
    align-self: center;
    align-items: flex-start;
    width: 115px;
  }

  .footer-social {
    order: 4;
  }

  .footer-bottom {
    order: 5;
    width: 100%;
    margin-top: 0;
  }

  .footer-line {
    width: 100%;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.btn {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, filter 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(137, 5, 47, 0.25);
  filter: brightness(1.06);
}

.btn:active {
  transform: translateY(-1px);
}

.nav a {
  position: relative;
  transition: color 0.25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: width 0.25s ease;
}

.nav a:hover {
  color: var(--pink);
}

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

.brand-logo {
  transition: transform 0.4s ease;
}

.brand:hover .brand-logo {
  transform: rotate(-8deg) scale(1.06);
}

.feature-card,
.testimonial-card,
.category-card,
.game-card,
.game-cover img {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.feature-card:hover,
.testimonial-card:hover,
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.game-card {
  position: relative;
}

.game-card img {
  transition: transform 0.5s ease;
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(137, 5, 47, 0.28);
}

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

.game-cover:hover img {
  transform: scale(1.06);
}

.faq-q-text {
  transition: color 0.25s ease;
}

.faq-q:hover .faq-q-text {
  color: var(--maroon);
}

.faq-icon-sm,
.faq-icon-lg {
  transition: transform 0.3s ease;
}

.faq-q:hover .faq-icon-sm {
  transform: rotate(90deg) scale(1.15);
}

.footer-links a {
  transition: opacity 0.25s ease, padding-left 0.25s ease;
}

.footer-links a:hover {
  opacity: 0.8;
  padding-left: 4px;
}

.footer-social a {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-social a:hover {
  transform: translateY(-3px) scale(1.08);
  opacity: 0.9;
}

.subscribe-btn {
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.subscribe-btn:hover {
  background: var(--ink);
  transform: translateY(-1px);
}

a.contact-value {
  transition: opacity 0.25s ease;
}

a.contact-value:hover {
  opacity: 0.75;
  text-decoration: underline;
}

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

.cookie-card {
  pointer-events: auto;
  width: 100%;
  max-width: 1100px;
  background: var(--pink);
  color: var(--white);
  border-radius: 40px;
  padding: 40px 48px 44px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  text-align: center;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.55s ease;
}

.cookie-banner.is-open .cookie-card {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner.is-closing .cookie-card {
  transform: translateY(140%);
  opacity: 0;
}

.cookie-title {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  font-variation-settings: "opsz" 14;
  margin-bottom: 18px;
}

.cookie-text {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.5;
  color: var(--white);
  max-width: 880px;
  margin: 0 auto 28px;
}

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

.cookie-text a:hover {
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  background: var(--maroon);
  border: 0;
  border-radius: 30px;
  padding: 16px 60px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.cookie-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3);
  filter: brightness(1.12);
}

.cookie-btn:active {
  transform: translateY(-1px);
}

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

  .cookie-card {
    border-radius: 28px;
    padding: 28px 22px 30px;
  }

  .cookie-actions {
    gap: 14px;
  }

  .cookie-btn {
    flex: 1 1 auto;
    padding: 14px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .cookie-card {
    transform: none;
    transition: opacity 0.3s ease;
  }

  .cookie-banner.is-open .cookie-card {
    transform: none;
  }
}

.inline-link{color:#86d8ff;text-decoration:underline;text-underline-offset:3px;font-weight:500}
.inline-link:hover{opacity:.85}
.editorial-meta{display:block;color:#000;font-size:13px;line-height:1.6;margin:6px 0 14px;letter-spacing:.02em}
.source-line{font-size:14px;line-height:1.7;color:#000;margin:14px 0 0}
.byline{margin-bottom:8px;color:#000;font-size:13px;line-height:1.6}
