.hero {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  min-height: 760px;
  padding: 20px 0 71px;
  border-bottom: 1px solid var(--line);
}

.hero__intro {
  flex: none;
  width: 337px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 20px;
}

.hero-mark {
  width: 254px;
  height: 254px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mark__inner {
  position: relative;
  width: 180px;
  height: 180px;
  transform: rotate(-45deg);
  filter: drop-shadow(0 22px 11px rgba(16, 212, 109, 0.18));
}

.hero-mark__inner::before {
  content: "";
  position: absolute;
  right: 6px;
  top: 76px;
  width: 158px;
  height: 28px;
  background: var(--ink);
  border-radius: 18px;
}

.hero-mark__inner::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 28px;
  height: 158px;
  background: var(--ink);
  border-radius: 18px;
}

.hero__intro p {
  font-weight: 400;
  font-size: 16px;
  line-height: 16.64px;
  letter-spacing: -0.56px;
  color: var(--ink);
}

.hero__card {
  flex: 1 0 0;
  min-width: 0;
  position: relative;
  height: 610px;
  border: 1px solid rgba(7, 17, 11, 0.15);
  border-radius: 38px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(8, 67, 31, 0.13);
  background-image:
    radial-gradient(120px 110px at 88% 16%, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0) 60%),
    radial-gradient(150px 130px at 75% 88%, rgba(148, 255, 98, 0.9), rgba(148, 255, 98, 0) 60%),
    linear-gradient(138deg, #eaffdf 0%, #42ef82 44%, #09bd63 100%);
}

.hero__faint {
  position: absolute;
  left: 0;
  top: 0;
  width: 220px;
  height: 220px;
  opacity: 0.65;
}

.hero__drip {
  position: absolute;
  top: -22px;
  right: -30px;
  width: 355px;
  height: 290px;
  filter: drop-shadow(0 20px 13px rgba(4, 28, 12, 0.23));
}

.hero__ring {
  position: absolute;
  top: 47px;
  right: 33px;
  width: 272px;
  height: 272px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 135px;
  box-shadow: inset 0 0 0 50px rgba(255, 255, 255, 0.09);
}

.hero__badges {
  position: absolute;
  top: 34px;
  left: 32px;
  display: flex;
  gap: 10px;
}

.hero__badges span {
  height: 30px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line-soft);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  color: var(--ink);
}

.hero__signal {
  position: absolute;
  left: 30px;
  top: 155px;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
  width: 167px;
  text-align: center;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2.64px;
  text-transform: uppercase;
  color: rgba(7, 17, 11, 0.45);
}

.hero__cta {
  position: absolute;
  left: 32px;
  bottom: 34px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero__cta span {
  display: block;
  padding-bottom: 8px;
  border-bottom: 3px solid rgba(7, 17, 11, 0.55);
  font-weight: 700;
  font-size: 84px;
  line-height: 75.6px;
  letter-spacing: -5.88px;
  text-transform: uppercase;
  color: var(--ink);
}

.hero__tiles {
  position: absolute;
  right: 28px;
  bottom: -18px;
  width: 560px;
  height: 300px;
}

.poki-tile {
  position: absolute;
  width: var(--s);
  height: var(--s);
  left: var(--l);
  top: var(--t);
  display: flex;
  align-items: center;
  justify-content: center;
}

.poki-tile__inner {
  width: 118px;
  height: 118px;
  transform: rotate(var(--r));
  background: #fff;
  border: 3px solid #fff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 22px 34px rgba(7, 17, 11, 0.25);
  padding: 3px;
}

.poki-tile__inner img {
  width: 100%;
  height: 100%;
  border-radius: 23px;
  object-fit: cover;
}

.hero__tiles .t1 { --s: 150px; --l: 24px;  --t: 109px; --r: -19deg; }
.hero__tiles .t2 { --s: 138px; --l: 116px; --t: 74px;  --r: 11deg;  }
.hero__tiles .t3 { --s: 133px; --l: 212px; --t: 114px; --r: -8deg;  }
.hero__tiles .t4 { --s: 142px; --l: 302px; --t: 52px;  --r: 13deg;  }
.hero__tiles .t5 { --s: 138px; --l: 394px; --t: 102px; --r: -11deg; }
.hero__tiles .t6 { --s: 132px; --l: 245px; --t: 5px;   --r: 7deg;   }

.why {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding-bottom: 75px;
  border-bottom: 1px solid var(--line);
}

.why__col {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 54px;
}

.why__card {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 31px;
  box-shadow: 0 18px 40px rgba(8, 67, 31, 0.05);
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.why__card h2 {
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -1.54px;
  color: var(--ink);
}

.why__card p {
  font-weight: 400;
  font-size: 16px;
  line-height: 21.6px;
  color: var(--ink-3);
}

.why__adv h3 {
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -1.3px;
  color: var(--ink);
  margin-bottom: 18px;
}

.adv-grid {
  display: flex;
  gap: 12px;
}

.adv {
  flex: 1 0 0;
  min-width: 0;
  min-height: 138px;
  padding: 23px 23px 35px;
  border: 1px solid var(--line);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.adv h4 {
  font-weight: 700;
  font-size: 20px;
  line-height: 21px;
  letter-spacing: -0.8px;
}

.adv p {
  font-weight: 700;
  font-size: 13px;
  line-height: 16.25px;
  opacity: 0.84;
}

.adv--dark {
  background: var(--ink);
  color: #fff;
}

.adv--green {
  background: linear-gradient(137deg, #10d46d 0%, #79ff54 100%);
  color: #061109;
}

.adv--light {
  background: #fff;
  color: var(--ink);
}

.why__mascot {
  flex: none;
  width: 340px;
  height: 480px;
  position: relative;
}

.why__mascot .glow {
  position: absolute;
  left: 40px;
  top: 60px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(9px);
  background: radial-gradient(circle at 50% 50%, rgba(148, 255, 98, 0.72), rgba(148, 255, 98, 0) 67%);
}

.why__mascot img {
  position: relative;
  width: 340px;
  height: 420px;
  filter: drop-shadow(0 34px 13px rgba(7, 17, 11, 0.18));
}

.games {
  display: flex;
  flex-direction: column;
  padding-bottom: 84px;
}

.games__head {
  display: flex;
  align-items: flex-start;
  padding: 54px 0 30px;
}

.games__head h2 {
  flex: 1 0 0;
  min-width: 0;
  max-width: 720px;
  font-weight: 700;
  font-size: 78px;
  line-height: 67.86px;
  letter-spacing: -6.24px;
  text-transform: uppercase;
  color: var(--ink);
}

.games__head p {
  flex: 1 0 0;
  min-width: 0;
  font-weight: 700;
  font-size: 17px;
  line-height: 22.95px;
  color: var(--slate);
}

.games__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.game-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 20px;
  min-height: 300px;
  padding: 23px;
  border-radius: 26px;
  border: 1px solid rgba(7, 17, 11, 0.16);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  box-shadow: 0 22px 60px rgba(8, 67, 31, 0.09);
}

.game-card--lg { flex: 0 0 calc((100% - 18px) * 0.5857); }
.game-card--sm { flex: 0 0 calc((100% - 18px) * 0.4143); }
.game-card--md { flex: 0 0 calc((100% - 18px) * 0.5); }

.game-card__blob {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 180px;
  height: 180px;
  border-radius: 90px;
  background: radial-gradient(circle at 50% 50%, rgba(16, 212, 109, 0.32), rgba(16, 212, 109, 0) 70%);
}

.game-card__art {
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-tile {
  width: 180px;
  height: 180px;
  background: var(--mint);
  border: 5px solid #fff;
  border-radius: 34px;
  box-shadow: 0 18px 34px rgba(7, 17, 11, 0.16);
  padding: 5px;
  overflow: hidden;
}

.game-card__art--l .game-tile { transform: rotate(-3deg); }
.game-card__art--r .game-tile { transform: rotate(3deg); }

.game-tile img {
  width: 100%;
  height: 100%;
  border-radius: 29px;
  object-fit: cover;
}

.game-card__body {
  position: relative;
  align-self: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.game-card__cat {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--green-deep);
}

.game-card__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 30.4px;
  letter-spacing: -1.92px;
  color: var(--ink);
  margin: 8px 0;
}

.game-card__desc {
  font-weight: 700;
  font-size: 14px;
  line-height: 17.92px;
  color: var(--body);
}

.play-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px 11px 19px;
  border-radius: 999px;
  border: 1px solid rgba(7, 17, 11, 0.18);
  background: #fff;
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
}

.play-btn i {
  width: 26px;
  height: 26px;
  border-radius: 13px;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-size: 13px;
}

.articles {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 86px;
  padding: 64px 0 24px;
  border-bottom: 1px solid var(--line);
}

.article {
  width: calc((100% - 86px) / 2);
  min-height: 112px;
  padding: 25px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.article--light {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(7, 17, 11, 0.32);
  box-shadow: 0 14px 30px rgba(8, 67, 31, 0.04);
}

.article--dark {
  background: var(--dark-card);
  border: 1px solid var(--dark-card);
  color: #fff;
  filter: drop-shadow(0 14px 15px rgba(8, 67, 31, 0.04));
}

.article h3 {
  font-weight: 700;
  font-size: 22px;
  line-height: 22.44px;
  letter-spacing: -0.88px;
}

.article p {
  font-weight: 700;
  font-size: 13px;
  line-height: 16.25px;
  opacity: 0.82;
}

.ad {
  position: relative;
  overflow: hidden;
  padding-bottom: 64px;
  min-height: 520px;
}

.ad::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 1px;
  left: -80px;
  right: -80px;
  border-bottom: 1px solid var(--line);
  background-image:
    radial-gradient(150px 154px at 4% 18%, rgba(16, 212, 109, 0.52), rgba(16, 212, 109, 0) 30%),
    radial-gradient(128px 132px at 82% 28%, rgba(148, 255, 98, 0.5), rgba(148, 255, 98, 0) 28%),
    linear-gradient(100deg, rgba(255, 255, 255, 0.76) 0%, rgba(255, 255, 255, 0.2) 100%);
}

.ad__inner {
  position: relative;
  display: flex;
  gap: 56px;
  align-items: flex-start;
  padding: 44px;
}

.ad__text {
  flex: 1 0 0;
  min-width: 0;
}

.ad__text h2 {
  max-width: 750px;
  font-weight: 700;
  font-size: 58px;
  line-height: 53.94px;
  letter-spacing: -4.35px;
  text-transform: uppercase;
  color: var(--ink);
}

.ad__text > p {
  max-width: 680px;
  margin-top: 30px;
  font-weight: 700;
  font-size: 16px;
  line-height: 20.48px;
  color: var(--slate-2);
}

.ad-bullets {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.ad-bullet {
  display: flex;
  align-items: center;
  gap: 13px;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  color: #0a180e;
}

.ad-bullet::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 3.5px;
  background: var(--ink);
  flex: none;
}

.ad__media {
  flex: none;
  position: relative;
  width: 340px;
  height: 420px;
}

.ad__media .glow {
  position: absolute;
  left: 50%;
  top: 30px;
  width: 330px;
  height: 330px;
  margin-left: -165px;
  border-radius: 165px;
  box-shadow: 0 30px 60px rgba(8, 67, 31, 0.16), inset 0 0 0 1px rgba(7, 17, 11, 0.1);
  background: radial-gradient(circle at 35% 30%, #ffffff 16%, #d8ffd2 38%, #13d36e 39%, #13d36e 66%, rgba(19, 211, 110, 0) 67%);
}

.ad__media img {
  position: relative;
  width: 340px;
  height: 420px;
  filter: drop-shadow(0 34px 13px rgba(7, 17, 11, 0.18));
}

/* ---------- Home hover & motion ---------- */
.hero__cta span {
  transition: color 0.25s ease, border-color 0.25s ease;
}

.hero__cta:hover span {
  color: var(--green-deep);
  border-bottom-color: var(--green-deep);
}

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

.play-btn:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(8, 67, 31, 0.22);
}

.play-btn:hover i {
  background: var(--green);
  color: var(--ink);
}

.why__card,
.adv,
.article {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 52px rgba(8, 67, 31, 0.1);
}

.adv:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(8, 67, 31, 0.14);
}

.article--light:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(8, 67, 31, 0.11);
}

.article--dark:hover {
  transform: translateY(-4px);
}

.why__mascot img,
.ad__media img {
  transition: transform 0.5s ease;
}

.why__mascot:hover img {
  transform: translateY(-8px) rotate(-1.5deg);
}

.ad__media:hover img {
  transform: translateY(-8px) rotate(1.5deg);
}

.hero__badges span {
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero__card:hover .hero__badges span {
  background: #fff;
}

@media (prefers-reduced-motion: no-preference) {
  .poki-tile__inner {
    animation: tileFloat 6s ease-in-out infinite;
  }

  .hero__tiles .t1 .poki-tile__inner { animation-delay: -0.2s; }
  .hero__tiles .t2 .poki-tile__inner { animation-delay: -1.4s; }
  .hero__tiles .t3 .poki-tile__inner { animation-delay: -2.6s; }
  .hero__tiles .t4 .poki-tile__inner { animation-delay: -3.5s; }
  .hero__tiles .t5 .poki-tile__inner { animation-delay: -4.3s; }
  .hero__tiles .t6 .poki-tile__inner { animation-delay: -5.1s; }
}

@keyframes tileFloat {
  0%, 100% { transform: rotate(var(--r)) translateY(0); }
  50% { transform: rotate(var(--r)) translateY(-10px); }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    gap: 0;
    min-height: 0;
    padding: 20px 0 0;
  }

  .hero__intro {
    width: 100%;
    padding-top: 20px;
  }

  .hero__card {
    flex: none;
    width: 100%;
    height: 510px;
    margin-top: 32px;
    margin-bottom: 71px;
  }

  .hero__ring {
    right: auto;
    left: 30px;
  }

  .hero__signal {
    top: 123px;
  }

  .hero__cta span {
    font-size: 58px;
    line-height: 52.2px;
    letter-spacing: -4.06px;
  }

  .hero__cta {
    bottom: 32px;
  }

  .hero__tiles {
    right: 0;
    width: 420px;
    height: 225px;
  }

  .poki-tile__inner {
    width: 90px;
    height: 90px;
  }

  .poki-tile__inner img {
    border-radius: 17px;
  }

  .hero__tiles .t1 { --s: 114px; --l: 17px;  --t: 81px; --r: -19deg; }
  .hero__tiles .t2 { --s: 106px; --l: 103px; --t: 55px; --r: 11deg;  }
  .hero__tiles .t3 { --s: 102px; --l: 159px; --t: 97px; --r: -8deg;  }
  .hero__tiles .t4 { --s: 108px; --l: 246px; --t: 38px; --r: 13deg;  }
  .hero__tiles .t5 { --s: 106px; --l: 295px; --t: 93px; --r: -11deg; }
  .hero__tiles .t6 { --s: 100px; --l: 194px; --t: 3px;  --r: 7deg;   }

  .why {
    flex-direction: column;
    gap: 0;
  }

  .why__col {
    flex: none;
    width: 100%;
  }

  .ad__text {
    flex: none;
    width: 100%;
  }

  .games__head h2,
  .games__head p {
    flex: none;
    width: 100%;
  }

  .adv-grid {
    flex-direction: column;
    gap: 12px;
  }

  .why__mascot {
    width: 100%;
    margin-top: 32px;
    display: flex;
    justify-content: center;
  }

  .games__head {
    flex-direction: column;
    gap: 24px;
  }

  .games__head h2 {
    font-size: 46px;
    line-height: 40px;
    letter-spacing: -3.68px;
  }

  .game-card {
    flex: 0 0 100% !important;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .game-card__art {
    align-self: start;
    justify-content: flex-start;
  }

  .articles {
    flex-direction: column;
    gap: 18px;
    padding-top: 64px;
  }

  .article {
    width: 100%;
  }

  .ad::before {
    background-image:
      radial-gradient(50px 266px at 4% 18%, rgba(16, 212, 109, 0.52), rgba(16, 212, 109, 0) 28%),
      radial-gradient(43px 228px at 82% 28%, rgba(148, 255, 98, 0.5), rgba(148, 255, 98, 0) 26%),
      linear-gradient(92deg, rgba(255, 255, 255, 0.76) 0%, rgba(255, 255, 255, 0.2) 100%);
  }

  .ad__inner {
    flex-direction: column;
    gap: 56px;
    padding: 24px;
  }

  .ad__text h2 {
    font-size: 40px;
    line-height: 37.2px;
    letter-spacing: -3px;
  }

  .ad-bullets {
    display: none;
  }

  .ad__media {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
