/* ====================================================================
   DarikZolNave — design tokens
   ==================================================================== */
:root {
  --accent: #8bff12;
  --accent-deep: #57ca00;
  --accent-mid: #57c600;
  --accent-soft: rgba(139, 255, 18, 0.16);
  --accent-glow: rgba(139, 255, 18, 0.45);
  --ink: #061006;
  --ink-2: #071007;
  --bg: #050605;
  --bg-2: #111711;
  --paper: #f0f3ea;
  --paper-2: #f6f7ee;
  --paper-3: #f2f4ea;
  --text-muted: #d7dfd0;
  --text-muted-2: #ccd7c8;
  --text-muted-3: #d3dfce;
  --text-muted-4: #dbe5d6;
  --card-body: #586057;
  --container: 1160px;
  --font-display: "Bebas Neue", "Impact", "Anton", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-hand: "Caveat", "Comic Sans MS", cursive;
}

/* ====================================================================
   Reset / base
   ==================================================================== */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 55% 8%, rgba(139, 255, 18, 0.13) 0%, transparent 12%),
    radial-gradient(circle at 22% 60%, rgba(139, 255, 18, 0.1) 0%, transparent 14%),
    var(--bg);
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

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

.text-accent { color: var(--accent); }
.text-accent-dark { color: var(--accent-deep); }
.text-accent-mid { color: var(--accent-mid); }

/* ====================================================================
   Buttons
   ==================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 25px;
  min-height: 48px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.07em;
  text-transform: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: var(--ink);
  border: 1px solid rgba(139, 255, 18, 0.38);
  box-shadow: 0 16px 19px rgba(139, 255, 18, 0.16);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 30px rgba(139, 255, 18, 0.25);
  background: #9bff2b;
}

.btn--outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(139, 255, 18, 0.38);
  box-shadow: 0 16px 38px rgba(139, 255, 18, 0.16);
}

.btn--outline:hover {
  background: rgba(139, 255, 18, 0.08);
  transform: translateY(-2px);
}

.btn--large { padding: 14px 28px; min-height: 52px; }
.btn--header { padding: 11px 20px; min-height: 42px; font-size: 16.5px; }
.btn--small { padding: 10px 18px; min-height: 38px; font-size: 14px; }

/* ====================================================================
   Header
   ==================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  background: rgba(5, 6, 5, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

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

.brand__mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--accent);
  box-shadow: 0 0 26px rgba(139, 255, 18, 0.45);
  position: relative;
  display: inline-block;
  -webkit-mask: radial-gradient(circle at 30% 30%, transparent 20%, #000 22%);
          mask: radial-gradient(circle at 30% 30%, transparent 20%, #000 22%);
}

.brand__name {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.03em;
  color: #fff;
}

.brand__accent { color: var(--accent); }

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

.site-nav__link {
  position: relative;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.84);
  padding: 6px 0;
  transition: color 0.18s ease;
}

.site-nav__link:hover { color: #fff; }

.site-nav__link.is-active {
  color: var(--accent);
}

.site-nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -10px;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(139, 255, 18, 0.8);
}

/* ====================================================================
   Hero
   ==================================================================== */
.hero {
  position: relative;
  padding-top: 80px;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 38px;
  align-items: center;
  min-height: 610px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.eyebrow__line {
  width: 38px;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 18px var(--accent);
}

.eyebrow__text {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.17em;
  color: var(--accent);
  text-transform: uppercase;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(64px, 11vw, 158px);
  line-height: 0.82;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 22px;
  text-transform: uppercase;
  text-shadow: 0 8px 0 rgba(255, 255, 255, 0.02);
}

.hero__title span { display: block; }

.hero__lede {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.55;
  max-width: 560px;
  margin: 0 0 22px;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 6px;
  flex-wrap: wrap;
}

.hero__free {
  position: relative;
  font-family: var(--font-hand);
  font-size: 28px;
  color: var(--accent);
  transform: rotate(-6deg);
  padding: 2px 8px;
}

.hero__free::before {
  content: "";
  position: absolute;
  inset: -2px -12px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  border-radius: 0 0 0 18px;
  transform: skewX(-18deg);
  opacity: 0.55;
}

/* Hero art (smiley with rings, decorative glyphs) */
.hero__art {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 540px;
  justify-self: center;
}

.hero__ring {
  position: absolute;
  inset: -3% -8% -3% -8%;
  border: 2px dashed rgba(139, 255, 18, 0.26);
  border-radius: 50%;
  transform: rotate(-14deg);
  box-shadow: 0 0 36px rgba(139, 255, 18, 0.18);
}

.hero__deco {
  position: absolute;
  font-family: var(--font-display);
  color: var(--accent);
  text-shadow: 0 0 22px rgba(139, 255, 18, 0.45);
  user-select: none;
}

.hero__deco--star {
  top: 4%;
  right: 6%;
  font-size: 76px;
  transform: rotate(12deg);
}

.hero__deco--bolt {
  bottom: 24%;
  left: -2%;
  font-size: 104px;
  transform: rotate(-14deg);
}

.hero__deco--plus {
  bottom: 8%;
  right: 12%;
  font-size: 68px;
}

.hero__face {
  position: absolute;
  inset: 6% 5% 8% 8%;
  border-radius: 52% 60% 48% 56% / 48% 58% 52% 52%;
  background: radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.4) 0%, transparent 18%),
              linear-gradient(140deg, var(--accent) 0%, #1bc94e 80%);
  box-shadow: 0 0 42px rgba(139, 255, 18, 0.28), inset -28px -38px 0 rgba(0, 0, 0, 0.18);
  transform: rotate(9deg);
}

.hero__eye {
  position: absolute;
  top: 32%;
  width: 22%;
  height: 22%;
  border-top: 12px solid var(--ink-2);
  border-right: 12px solid var(--ink-2);
  transform: rotate(45deg);
}

.hero__eye--left { left: 20%; }
.hero__eye--right { right: 20%; }

.hero__smile {
  position: absolute;
  left: 50%;
  top: 56%;
  width: 50%;
  transform: translateX(-50%) rotate(-3deg);
  height: 24%;
  border-bottom: 15px solid var(--ink-2);
  border-radius: 0 0 130px 130px;
}

.hero__shade {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset -28px -38px 0 rgba(0, 0, 0, 0.18);
  pointer-events: none;
}

    .hero__grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      padding: 70px 15px;
      background: #F0F3EA;
    }

    .hero__grid p {
      border-radius: 30px;
      border: 1px solid rgba(139, 255, 18, 0.24);
      background: #071007;
      box-shadow: 0 26px 54px 0 rgba(0, 0, 0, 0.22);
      padding: 34px;
      max-width: 1160px;
      margin: 0 auto;
    }

    @media(max-width:768px) {
      .hero__grid {
        grid-template-columns: repeat(1, 1fr);
      }
    }

/* ====================================================================
   Polaroid strip
   ==================================================================== */
.polaroids {
  margin-top: 78px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 0;
  padding: 0 8px;
  height: 230px;
}

.polaroid {
  position: relative;
  background: var(--paper-2);
  border: 1px solid rgba(255, 255, 255, 0.72);
  padding: 13px;
  box-shadow: 0 24px 24px rgba(0, 0, 0, 0.42);
  display: block;
  aspect-ratio: 1 / 1;
  width: 178px;
  max-width: 100%;
  align-self: end;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  justify-self: center;
}

.polaroid img {
  width: 100%;
  height: calc(100% - 0px);
  object-fit: cover;
  border-radius: 4px;
}

.polaroid__tape {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(var(--tape-rotate, 0deg));
  width: 58px;
  height: 28px;
  background: rgba(139, 255, 18, 0.62);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}

.polaroid:hover { transform: translateY(-6px) rotate(var(--tilt, 0)) !important; }

.polaroid--1 { --tilt: -10deg; --tape-rotate: 10deg; transform: rotate(-10deg); align-self: end; margin-bottom: -10px; }
.polaroid--2 { --tilt: 7deg;   --tape-rotate: -7deg; transform: rotate(7deg);  margin-bottom: 18px; }
.polaroid--3 { --tilt: -2deg;  --tape-rotate: 2deg;  transform: rotate(-2deg); margin-bottom: 36px; }
.polaroid--4 { --tilt: 9deg;   --tape-rotate: -9deg; transform: rotate(9deg);  margin-bottom: 12px; }
.polaroid--5 { --tilt: -7deg;  --tape-rotate: 7deg;  transform: rotate(-7deg); margin-bottom: 44px; }
.polaroid--6 { --tilt: 5deg;   --tape-rotate: -5deg; transform: rotate(5deg);  margin-bottom: -2px; }

.hero__divider {
  margin-top: 36px;
  height: 78px;
  background: var(--paper);
  clip-path: polygon(
    0% 100%, 0% 38%, 4% 30%, 9% 36%, 14% 28%, 19% 34%, 24% 26%,
    30% 32%, 36% 24%, 42% 32%, 48% 26%, 54% 32%, 60% 24%,
    66% 30%, 72% 22%, 78% 30%, 84% 24%, 90% 32%, 95% 26%, 100% 32%, 100% 100%
  );
}

/* ====================================================================
   Discover ("Play. Discover. Repeat.")
   ==================================================================== */
.discover {
  background: var(--paper);
  padding: 68px 0 76px;
}

.discover__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 340px);
  gap: 24px;
  align-items: start;
}

.discover__title {
  font-family: var(--font-display);
  font-weight: 400;
  margin: 0;
  font-size: clamp(72px, 9vw, 121px);
  line-height: 0.86;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.discover__title span { display: block; }

.callout {
  background: var(--ink-2);
  border: 1px solid rgba(139, 255, 18, 0.24);
  border-radius: 30px;
  padding: 34px 35px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 26px 27px rgba(0, 0, 0, 0.22);
  align-self: start;
}

.callout__heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 48px;
  line-height: 0.92;
  margin: 0;
  color: var(--accent);
  letter-spacing: 0.015em;
}

.callout__body {
  color: var(--text-muted-2);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

.callout .btn { align-self: flex-start; }

/* Icon cluster */
.icon-cluster {
  position: relative;
  height: 295px;
  width: 100%;
}

.icon-cluster__blob {
  position: absolute;
  inset: 4% 6% 4% 12%;
  border-radius: 38px;
  background: linear-gradient(122deg, #79f709 0%, #15250f 78%);
  box-shadow: 0 28px 54px rgba(0, 0, 0, 0.23);
  transform: rotate(-5deg) skewX(-2deg);
}

.icon-tile {
  position: absolute;
  width: 78px;
  height: 78px;
  background: #fff;
  border: 3px solid var(--ink-2);
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-size: 38px;
  box-shadow: 0 18px 19px rgba(0, 0, 0, 0.28);
}

.icon-tile--game   { top: 18%;  left: 0;    transform: rotate(-12deg); }
.icon-tile--bolt   { top: 6%;   right: 0;   transform: rotate(9deg); }
.icon-tile--rocket { bottom: 0;  left: 50%;  transform: translateX(-30%) rotate(-5deg); }
.icon-tile--diamond{ bottom: 6%; left: 22%;  transform: rotate(11deg); color: #071007; }

.icon-tile--smile {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 142px;
  height: 142px;
  border-radius: 50%;
  background: var(--ink-2);
  border: 2px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 68px;
  box-shadow: 0 0 18px rgba(139, 255, 18, 0.24);
}

.icon-tile--smile::after {
  content: "";
  position: absolute;
  inset: -17px;
  border: 1px dashed rgba(7, 16, 7, 0.33);
  border-radius: 50%;
}

/* ====================================================================
   Trending games
   ==================================================================== */
.trending {
  padding: 78px 0 96px;
  background:
    radial-gradient(circle at 12% 10%, rgba(139, 255, 18, 0.19) 0%, transparent 12%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 62%, var(--bg) 100%);
  overflow: hidden;
}

.trending__title {
  font-family: var(--font-display);
  font-weight: 400;
  text-align: center;
  font-size: clamp(56px, 8.5vw, 115px);
  line-height: 0.88;
  letter-spacing: -0.012em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 46px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 24px;
}

.game-card {
  position: relative;
  background: var(--paper-3);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 28px;
  padding: 25px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.37);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.game-card:nth-child(odd)  { transform: rotate(-2.5deg); }
.game-card:nth-child(even) { transform: rotate(1.8deg); }

.game-card:hover {
  transform: translateY(-6px) rotate(0deg);
  box-shadow: 0 32px 60px rgba(0, 0, 0, 0.45);
}

.game-card__hero {
  position: relative;
  height: 158px;
  border-radius: 20px;
  overflow: hidden;
}

.game-card__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 20% 22%, rgba(255, 255, 255, 0.45) 0%, transparent 14%);
  pointer-events: none;
}

.game-card__hero img {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 118px;
  height: 118px;
  border: 6px solid #fff;
  border-radius: 26px;
  box-shadow: 0 22px 34px rgba(0, 0, 0, 0.25);
  object-fit: cover;
}

.game-card__hero--devil   { background: linear-gradient(134deg, #2f2f1a 0%, #090b08 80%); }
.game-card__hero--monkey  { background: linear-gradient(134deg, #005b3a 0%, #090b08 80%); }
.game-card__hero--drive   { background: linear-gradient(134deg, #4a1b1b 0%, #090b08 80%); }
.game-card__hero--moto    { background: linear-gradient(134deg, #c9881b 0%, #2a1607 80%); }
.game-card__hero--plonky  { background: linear-gradient(134deg, #7a5fff 0%, #0e0922 80%); }
.game-card__hero--speed   { background: linear-gradient(134deg, #ffd200 0%, #2a2206 80%); }

.game-card__meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.game-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 43px;
  line-height: 0.88;
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: 0.005em;
}

.game-card__desc {
  font-size: 13px;
  line-height: 1.35;
  color: var(--card-body);
  margin: 0;
  max-width: 180px;
}

.game-card__arrow {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 26px;
  background: var(--ink-2);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 22px;
  box-shadow: 0 0 0 6px rgba(139, 255, 18, 0.12);
  transition: background 0.18s ease, transform 0.18s ease;
}

.game-card:hover .game-card__arrow {
  background: var(--accent);
  color: var(--ink);
  transform: translateX(4px);
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 56px auto 0;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid rgba(139, 255, 18, 0.38);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.07em;
  background: transparent;
  align-self: center;
  position: relative;
  width: max-content;
  left: 50%;
  transform: translateX(-50%);
  transition: background 0.18s ease;
}

.back-to-top:hover { background: rgba(139, 255, 18, 0.08); }

/* ====================================================================
   Why
   ==================================================================== */
.why {
  position: relative;
  background: var(--paper);
  padding: 74px 0 94px;
  overflow: hidden;
}

.why::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 18%, rgba(139, 255, 18, 0.18) 0%, transparent 14%),
    radial-gradient(circle at 92% 66%, rgba(139, 255, 18, 0.12) 0%, transparent 12%);
  pointer-events: none;
}

.why__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.why__title {
  font-family: var(--font-display);
  font-weight: 400;
  text-align: center;
  font-size: clamp(56px, 8vw, 106px);
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--ink-2);
  margin: 0;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.feature {
  position: relative;
  background: var(--ink-2);
  border: 1px solid rgba(139, 255, 18, 0.24);
  border-radius: 26px;
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 22px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature--tilt-left  { transform: rotate(-1.8deg); }
.feature--tilt-right { transform: rotate(1.3deg); }

.feature:hover {
  transform: translateY(-6px) rotate(0deg);
  box-shadow: 0 30px 36px rgba(0, 0, 0, 0.3);
}

.feature__icon {
  width: 86px;
  height: 86px;
  border-radius: 28px;
  background: var(--accent);
  display: grid;
  place-items: center;
  font-size: 42px;
  color: var(--ink-2);
  box-shadow: 0 0 0 10px rgba(139, 255, 18, 0.12), 0 18px 36px rgba(139, 255, 18, 0.1);
}

.feature__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 40px;
  letter-spacing: 0.02em;
  margin: 10px 0 0;
  color: var(--accent);
}

.feature__body {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-muted-3);
  margin: 0;
}

/* ====================================================================
   Footer
   ==================================================================== */
.site-footer {
  position: relative;
  background: var(--bg);
  border-top: 1px solid rgba(139, 255, 18, 0.18);
  padding: 65px 0 141px;
  overflow: hidden;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  position: relative;
  z-index: 2;
}

.footer-col__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin: 0 0 18px;
}

.footer-list,
.footer-list--plain,
.footer-social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--text-muted-4);
  font-size: 16px;
}

.footer-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-list__icon {
  color: var(--accent);
  font-weight: 700;
  min-width: 18px;
}

.footer-list a:hover,
.footer-social a:hover { color: var(--accent); }

.footer-list--plain li::before {
  content: "›";
  color: var(--accent);
  margin-right: 8px;
}

.footer-social {
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(139, 255, 18, 0.08);
  border: 1px solid rgba(139, 255, 18, 0.32);
  color: var(--accent);
  font-size: 18px;
  transition: background 0.18s ease, transform 0.18s ease;
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--ink);
  transform: translateY(-2px);
}

.footer-brand {
  position: absolute;
  left: 50%;
  bottom: -28px;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(120px, 20vw, 288px);
  line-height: 0.72;
  color: rgba(139, 255, 18, 0.68);
  text-shadow: 0 0 46px rgba(139, 255, 18, 0.11);
  letter-spacing: -0.015em;
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
}

/* ====================================================================
   Cookies banner
   ==================================================================== */
.cookies {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  margin: 0 auto;
  max-width: 1240px;
  padding: 40px 48px;
  border-radius: 28px;
  background: #050605;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.6),
    inset 0 0 120px rgba(139, 255, 18, 0.08);
  display: flex;
  flex-direction: column;
  gap: 22px;
  color: #ffffff;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.cookies__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--accent);
  text-shadow: 0 0 30px rgba(139, 255, 18, 0.45);
}

.cookies__text {
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
  color: #ffffff;
  max-width: 900px;
}

.cookies__actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.cookies__btn {
  flex: 1 1 360px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 64px;
  padding: 18px 32px;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: #050605;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 0 40px rgba(139, 255, 18, 0.55);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.cookies__btn:hover {
  transform: translateY(-2px);
  background: #9bff2b;
  box-shadow: 0 0 55px rgba(139, 255, 18, 0.75);
}

.cookies.is-hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

@media (max-width: 760px) {
  .cookies {
    padding: 28px 24px;
    border-radius: 22px;
    gap: 16px;
  }
  .cookies__title { font-size: 44px; }
  .cookies__text { font-size: 16px; }
  .cookies__actions { gap: 12px; }
  .cookies__btn {
    flex-basis: 100%;
    min-height: 54px;
    font-size: 18px;
    padding: 14px 22px;
  }
}

/* ====================================================================
   Responsive
   ==================================================================== */
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { max-width: 420px; margin-top: 24px; }
  .discover__inner { grid-template-columns: 1fr 1fr; }
  .icon-cluster { grid-column: 1 / -1; max-width: 420px; margin: 8px auto 0; }
    .polaroids { grid-template-columns: repeat(3, 1fr); height: auto; gap: 24px 12px; padding: 12px 8px 36px; }
}

@media (max-width: 900px) {
  .games-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why__grid { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }

  .polaroid { margin-bottom: 0 !important; }
}

@media (max-width: 720px) {
  .site-nav { display: none; }
  .header__inner { height: 64px; }
  .hero { padding-top: 56px; }
  .hero__title { font-size: clamp(48px, 13vw, 96px); }
  .discover__inner { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; }
  .footer-brand { font-size: 64px; bottom: -10px; }
  .site-footer { padding-bottom: 96px; }
  .callout { padding: 26px 24px; }
  .callout__heading { font-size: 38px; }
}

@media (max-width: 575px) {
  .polaroids { grid-template-columns: repeat(2, 1fr); }
  .hero__free { font-size: 22px; }
  .btn { font-size: 15px; }
}
