:root {
  --ink: #070815;
  --text: #17203b;
  --muted: #5b6685;
  --primary: #513cff;
  --primary-2: #6b54ff;
  --line: #e2e4f1;
  --panel: rgba(255, 255, 255, 0.88);
  --soft: #f7f7ff;
  --shadow: 0 24px 70px rgba(60, 57, 125, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 10%, rgba(97, 76, 255, 0.08), transparent 32%),
    radial-gradient(circle at 94% 20%, rgba(104, 84, 255, 0.09), transparent 36%),
    #fbfbff;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 94px;
  padding: 0 36px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 28px;
  font-weight: 950;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #3154ff, #6c3cff);
  border-radius: 8px;
  font-size: 34px;
  font-weight: 950;
  box-shadow: 0 16px 32px rgba(81, 60, 255, 0.24);
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(28px, 3.4vw, 54px);
  color: #111321;
  font-size: 18px;
  font-weight: 760;
}

.site-nav a {
  position: relative;
  padding: 34px 0 30px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 4px;
  background: var(--primary);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.site-nav a.is-active {
  font-weight: 900;
}

.site-nav a.is-active::after,
.site-nav a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #20233a;
  border-radius: 2px;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 58px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 850;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.header-cta {
  min-height: 52px;
  padding: 0 25px;
}

.header-cta,
.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #4736ff, #5b38f8);
  box-shadow: 0 18px 36px rgba(81, 60, 255, 0.24);
}

.btn-outline {
  color: #0f1224;
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(81, 60, 255, 0.22);
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.plane-icon {
  position: relative;
  width: 20px;
  height: 20px;
  transform: rotate(-18deg);
}

.plane-icon::before,
.tg-float::before,
.plane-round::before {
  content: "";
  position: absolute;
  inset: 2px;
  background: currentColor;
  clip-path: polygon(0 45%, 100% 0, 68% 100%, 47% 58%);
}

.btn-arrow {
  color: var(--primary);
  font-size: 30px;
  line-height: 1;
}

.page-section {
  position: relative;
  min-height: calc(100vh - 94px);
  padding: clamp(48px, 5vw, 76px) clamp(22px, 3.2vw, 54px);
  scroll-margin-top: 94px;
  overflow: hidden;
}

.home-section,
.service-section,
.telegram-section,
.news-section,
.about-section {
  background:
    radial-gradient(circle at 76% 40%, rgba(92, 66, 255, 0.1), transparent 34%),
    radial-gradient(circle at 16% 88%, rgba(92, 66, 255, 0.06), transparent 24%),
    linear-gradient(135deg, #fbfbff 0%, #f6f7ff 100%);
}

.home-section {
  padding: 0 36px 14px;
}

.home-section .hero-layout {
  display: grid;
  grid-template-columns: 530px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  max-width: 1464px;
  min-height: 527px;
  margin: 0 auto;
}

.hero-layout,
.telegram-hero,
.about-hero {
  display: grid;
  grid-template-columns: minmax(520px, 0.9fr) minmax(560px, 1.1fr);
  gap: clamp(36px, 5vw, 88px);
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
}

.compact-layout {
  grid-template-columns: minmax(520px, 0.85fr) minmax(560px, 1.15fr);
}

.service-section {
  padding-top: 56px;
}

.service-section .compact-layout {
  grid-template-columns: minmax(0, 640px) minmax(0, 1fr);
  gap: 44px;
  max-width: 1450px;
  align-items: center;
}

.service-section .hero-copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
  min-width: 0;
}

.service-section .section-pill {
  margin-bottom: 42px;
}

.service-section .hero-copy h2 {
  font-size: 50px;
  line-height: 1.32;
}

.service-section .hero-copy h2 span {
  white-space: nowrap;
}

.service-section .hero-copy p {
  max-width: 620px;
  font-size: 20px;
}

.service-section .sub-copy {
  max-width: 600px;
}

.service-section .hero-actions {
  margin-top: 36px;
}

.hero-copy h1,
.hero-copy h2,
.about-copy h2 {
  margin: 0;
  color: #050713;
  font-size: 58px;
  line-height: 1.34;
  font-weight: 950;
  letter-spacing: 0;
}

.hero-copy h1 span,
.hero-copy h2 span,
.about-copy h2 span {
  display: block;
  white-space: nowrap;
}

.mixed-line em,
.mixed-line strong {
  font: inherit;
}

.mixed-line em {
  color: #050713;
  font-style: normal;
}

.mixed-line strong {
  color: var(--primary);
}

.accent-line {
  color: var(--primary);
}

.hero-copy p,
.about-copy p,
.section-subtitle {
  max-width: 720px;
  margin: 24px 0 0;
  color: #455171;
  font-size: 21px;
  font-weight: 560;
}

.sub-copy {
  margin-top: 18px !important;
}

.section-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-bottom: 48px;
  padding: 0 20px;
  color: var(--primary);
  background: rgba(81, 60, 255, 0.1);
  border-radius: 999px;
  font-size: 19px;
  font-weight: 760;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-top: 38px;
}

.launch-visual {
  position: relative;
  min-height: 580px;
}

.hero-art {
  position: relative;
  display: flex;
  min-height: 560px;
  align-items: center;
  justify-content: center;
}

.telegram-art {
  position: relative;
  display: flex;
  min-height: 620px;
  align-items: center;
  justify-content: center;
}

.hero-art img,
.telegram-art img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.home-section .hero-copy {
  padding-top: 96px;
  padding-left: 25px;
  transform: none;
}

.home-section .hero-copy h1 {
  font-size: 54px;
  line-height: 1.42;
}

.home-section .hero-copy p {
  margin-top: 18px;
  font-size: 21px;
}

.home-section .hero-actions {
  gap: 32px;
  margin-top: 40px;
}

.home-section .hero-actions .btn {
  width: 193px;
  min-height: 60px;
  padding: 0 22px;
  font-size: 21px;
}

.home-section .hero-art {
  min-height: 527px;
  justify-content: flex-end;
  margin-right: 0;
}

.home-art img {
  max-width: 925px;
}

.home-services-panel {
  max-width: 1464px;
  margin: 6px auto 0;
  padding: 24px 26px 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(223, 225, 242, 0.72);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(60, 57, 125, 0.1);
}

.home-services-panel h2 {
  margin: 0 0 16px;
  color: #101426;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 950;
  text-align: center;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.home-services-grid article {
  display: grid;
  min-height: 214px;
  justify-items: center;
  align-content: center;
  padding: 22px 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(235, 237, 247, 0.92);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(57, 58, 104, 0.06);
  text-align: center;
}

.home-services-grid img {
  width: 68px;
  height: 68px;
  margin-bottom: 14px;
  object-fit: contain;
}

.home-services-grid h3 {
  margin: 0 0 10px;
  color: #101426;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 880;
  white-space: nowrap;
}

.home-services-grid p {
  margin: 0;
  color: #4d5878;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 560;
}

.google-art img {
  max-width: 720px;
}

.service-section .google-art {
  justify-content: flex-end;
  min-height: 560px;
  overflow: hidden;
}

.telegram-art img {
  max-width: 520px;
  filter: drop-shadow(0 34px 60px rgba(81, 60, 255, 0.16));
}

.platform-shadow {
  position: absolute;
  left: 11%;
  right: 3%;
  bottom: 40px;
  height: 96px;
  background: radial-gradient(ellipse at center, rgba(81, 60, 255, 0.24), rgba(81, 60, 255, 0.08) 62%, transparent 72%);
  border-radius: 50%;
  box-shadow: inset 0 -4px 0 rgba(81, 60, 255, 0.15);
}

.orbit {
  position: absolute;
  right: 6%;
  bottom: 80px;
  width: 520px;
  height: 250px;
  border: 2px solid rgba(81, 60, 255, 0.2);
  border-top-color: transparent;
  border-radius: 50%;
  transform: rotate(-10deg);
}

.orbit-b {
  right: 12%;
  bottom: 116px;
  width: 430px;
  height: 210px;
  transform: rotate(13deg);
}

.phone {
  position: absolute;
  top: 30px;
  width: 270px;
  min-height: 500px;
  padding: 18px;
  border: 7px solid #11131a;
  border-radius: 34px;
  box-shadow: 0 34px 72px rgba(24, 28, 58, 0.22);
}

.phone::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  width: 72px;
  height: 8px;
  background: #10121a;
  border-radius: 999px;
  transform: translateX(-50%);
}

.phone-light {
  color: #121524;
  background: #ffffff;
}

.phone-dark {
  color: #ffffff;
  background: linear-gradient(180deg, #111622, #080b13);
}

.phone-left {
  left: 29%;
  z-index: 3;
  transform: rotate(6deg);
}

.phone-right {
  right: 8%;
  z-index: 2;
  transform: rotate(7deg);
}

.ga-phone-right {
  transform: rotate(4deg);
}

.phone-bar {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  font-size: 14px;
}

.phone-bar i {
  width: 22px;
  height: 6px;
  margin-left: auto;
  background: currentColor;
  border-radius: 999px;
  opacity: 0.2;
}

.play-mini,
.play-float,
.icon-play-mini {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #1dbb61 0 34%, #f4c430 34% 58%, #1a73e8 58% 79%, #e94335 79%);
  clip-path: polygon(12% 4%, 94% 50%, 12% 96%);
}

.phone-app-head {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 13px;
  align-items: center;
  margin-top: 26px;
}

.phone-app-head h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
}

.phone-app-head p {
  margin: 5px 0 0;
  color: #188348;
  font-size: 12px;
  font-weight: 700;
}

.game-icon {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  color: #ffe17a;
  background:
    radial-gradient(circle at 60% 36%, rgba(255, 196, 54, 0.75), transparent 24%),
    linear-gradient(135deg, #1e1421, #c3421f 54%, #100b14);
  border-radius: 15px;
  font-size: 15px;
  font-weight: 950;
}

.phone-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 22px;
  text-align: center;
  color: #22283a;
  font-size: 13px;
  font-weight: 850;
}

.install-button {
  display: grid;
  height: 44px;
  place-items: center;
  margin-top: 19px;
  color: #ffffff;
  background: #10a760;
  border-radius: 999px;
  font-weight: 900;
}

.game-grid,
.slot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 20px;
}

.game-grid span,
.slot-grid span,
.slot-hero {
  display: grid;
  min-height: 114px;
  place-items: center;
  color: #ffe17a;
  background:
    radial-gradient(circle at 65% 20%, rgba(255, 255, 255, 0.2), transparent 18%),
    linear-gradient(150deg, #201323, #f6a11a 50%, #b71918);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 950;
  text-align: center;
}

.slot-hero {
  min-height: 190px;
  margin-top: 30px;
  font-size: 28px;
}

.slot-grid {
  grid-template-columns: repeat(2, 1fr);
}

.slot-grid span {
  min-height: 122px;
}

.float-icon,
.coin-float {
  position: absolute;
  z-index: 5;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.84);
  border-radius: 22px;
  box-shadow: 0 20px 52px rgba(81, 60, 255, 0.16);
  backdrop-filter: blur(8px);
}

.store-float,
.apple-float {
  color: #ffffff;
  background: linear-gradient(135deg, #22a7ff, #2176ff);
  font-size: 48px;
  font-weight: 950;
}

.tg-float {
  right: 4%;
  top: 180px;
  color: #ffffff;
  background: linear-gradient(135deg, #1d8cff, #2367ff);
  border-radius: 50%;
}

.bot-float {
  right: 9%;
  top: 348px;
  background: linear-gradient(135deg, #3421a0, #4d30c8);
}

.bot-float::before,
.bot-small::before {
  content: "";
  width: 43px;
  height: 34px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: inset 11px 11px 0 -8px var(--primary), inset -11px 11px 0 -8px var(--primary);
}

.play-float {
  left: 17%;
  top: 168px;
}

.store-float {
  left: 7%;
  top: 310px;
}

.google-float {
  left: 18%;
  top: 210px;
  color: #ffffff;
  background: conic-gradient(#4285f4, #34a853, #fbbc05, #ea4335, #4285f4);
  font-size: 45px;
  font-weight: 950;
}

.apple-float {
  right: 4%;
  top: 250px;
  background: #ffffff;
  color: #111321;
}

.coin-float {
  left: 16%;
  bottom: 76px;
  width: 58px;
  height: 58px;
  color: #d47a00;
  background: linear-gradient(135deg, #ffe991, #f59f19);
  border-radius: 50%;
  font-size: 30px;
  font-weight: 950;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  max-width: 1440px;
  margin: clamp(34px, 4vw, 52px) auto 0;
  padding: 30px 34px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(223, 225, 242, 0.7);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.trust-strip article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 78px;
  padding: 0 22px;
  border-left: 1px solid var(--line);
}

.trust-strip article:first-child {
  border-left: 0;
}

.trust-strip strong {
  display: block;
  font-size: 21px;
  line-height: 1.2;
}

.trust-strip p {
  grid-column: 2;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.slim-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  box-shadow: none;
}

.trust-icon,
.card-icon,
.contact-icon {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--primary);
  background: rgba(81, 60, 255, 0.08);
  border-radius: 50%;
}

.shield-icon::before {
  content: "";
  width: 29px;
  height: 34px;
  border: 4px solid currentColor;
  border-radius: 10px 10px 14px 14px;
  clip-path: polygon(50% 0, 100% 18%, 88% 78%, 50% 100%, 12% 78%, 0 18%);
}

.team-icon::before {
  content: "";
  width: 34px;
  height: 24px;
  border: 4px solid currentColor;
  border-top: 0;
  border-radius: 0 0 18px 18px;
}

.diamond-icon::before {
  content: "";
  width: 31px;
  height: 31px;
  border: 4px solid currentColor;
  transform: rotate(45deg);
}

.headset-icon::before {
  content: "";
  width: 32px;
  height: 30px;
  border: 5px solid currentColor;
  border-bottom-color: transparent;
  border-radius: 24px 24px 8px 8px;
}

.plane-round::before {
  color: currentColor;
}

.bot-small,
.megaphone-icon,
.target-icon,
.mail-icon {
  color: var(--primary);
}

.megaphone-icon::before {
  content: "";
  width: 34px;
  height: 25px;
  background: currentColor;
  clip-path: polygon(0 34%, 52% 15%, 100% 0, 100% 100%, 52% 85%, 0 66%);
}

.target-icon::before {
  content: "";
  width: 34px;
  height: 34px;
  border: 4px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 0 0 0 6px #ffffff;
}

.mail-icon::before {
  content: "";
  width: 35px;
  height: 25px;
  border: 4px solid currentColor;
  border-radius: 5px;
}

.trust-icon::before,
.card-icon::before,
.contact-icon::before {
  content: "";
  position: static;
  inset: auto;
  display: block;
  width: 34px;
  height: 34px;
  background: currentColor;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  clip-path: none;
  transform: none;
  mask: var(--icon-url) center / contain no-repeat;
  -webkit-mask: var(--icon-url) center / contain no-repeat;
}

.shield-icon { --icon-url: url("assets/icon-shield-check.svg"); }
.plane-round { --icon-url: url("assets/icon-send.svg"); }
.team-icon { --icon-url: url("assets/icon-users.svg"); }
.diamond-icon { --icon-url: url("assets/icon-gem.svg"); }
.headset-icon { --icon-url: url("assets/icon-headset.svg"); }
.bot-small { --icon-url: url("assets/icon-bot.svg"); }
.target-icon { --icon-url: url("assets/icon-target.svg"); }
.megaphone-icon { --icon-url: url("assets/icon-megaphone.svg"); }
.mail-icon { --icon-url: url("assets/icon-mail.svg"); }

.telegram-hero {
  grid-template-columns: minmax(560px, 0.95fr) minmax(420px, 0.75fr);
}

.mini-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  max-width: 760px;
  margin-top: 52px;
}

.mini-benefits article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  align-items: center;
}

.mini-benefits .trust-icon {
  width: 48px;
  height: 48px;
  background: transparent;
}

.mini-benefits strong {
  display: block;
  font-size: 18px;
}

.mini-benefits p {
  grid-column: 2;
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.telegram-phone-wrap {
  position: relative;
  min-height: 600px;
}

.telegram-phone {
  position: relative;
  top: auto;
  right: auto;
  width: 340px;
  min-height: 600px;
  margin: 0 auto;
  color: #ffffff;
  background: #111622;
  transform: rotate(8deg);
}

.tg-header {
  margin-top: 16px;
  font-size: 16px;
}

.tg-header span {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.tg-banner {
  display: grid;
  min-height: 170px;
  place-items: center;
  margin-top: 18px;
  color: #ffdc61;
  background:
    radial-gradient(circle at 35% 40%, rgba(255, 93, 73, 0.65), transparent 24%),
    linear-gradient(135deg, #25102a, #a41725 52%, #2b1029);
  border-radius: 16px;
  font-size: 34px;
  font-weight: 950;
  text-align: center;
}

.tg-message {
  margin: 12px 0;
  color: #ffffff;
  font-size: 14px;
}

.tg-menu,
.tg-actions {
  display: grid;
  gap: 8px;
}

.tg-menu span,
.tg-actions span {
  display: grid;
  min-height: 32px;
  place-items: center;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  font-size: 13px;
}

.tg-actions {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 16px;
}

.tg-actions span:last-child {
  grid-column: 1 / -1;
}

.telegram-cards,
.about-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1450px;
  margin: 40px auto 0;
}

.telegram-cards article,
.about-cards article {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 22px;
  min-height: 248px;
  padding: 34px;
  background: var(--panel);
  border: 1px solid rgba(223, 225, 242, 0.72);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.telegram-cards h3,
.about-cards h3 {
  margin: 0 0 12px;
  font-size: 25px;
}

.telegram-cards ul,
.about-cards ul {
  margin: 0;
  padding-left: 18px;
  color: #3c4667;
  font-size: 16px;
}

.telegram-cards a {
  align-self: center;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--primary);
  background: rgba(81, 60, 255, 0.08);
  border-radius: 50%;
  font-size: 34px;
  font-weight: 800;
}

.news-section > .section-pill,
.news-section > h2,
.news-section > .section-subtitle {
  margin-left: auto;
  margin-right: auto;
  max-width: 1450px;
}

.news-section h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
}

.news-panel {
  max-width: 1450px;
  margin: 28px auto 0;
  padding: 12px 28px;
  background: var(--panel);
  border: 1px solid rgba(223, 225, 242, 0.72);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.news-row {
  display: grid;
  grid-template-columns: 250px 1fr 160px;
  gap: 32px;
  align-items: center;
  min-height: 118px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.news-row h3 {
  margin: 0;
  font-size: 23px;
}

.news-row p {
  margin: 10px 0 0;
  color: #465174;
  font-size: 16px;
}

.news-row aside {
  display: grid;
  justify-items: center;
  gap: 14px;
  color: #33405f;
}

.news-row aside span {
  min-height: 30px;
  padding: 4px 18px;
  color: var(--primary);
  background: rgba(81, 60, 255, 0.1);
  border-radius: 999px;
  font-weight: 700;
}

.news-open {
  min-height: 34px;
  padding: 0 14px;
  color: #ffffff;
  background: var(--primary);
  border: 0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 850;
}

.news-thumb {
  display: block;
  width: 100%;
  height: 96px;
  object-fit: cover;
  border-radius: 6px;
  background: linear-gradient(135deg, #1f4eff, #120a2b);
}

.thumb-tg { background: radial-gradient(circle, #27a3ff, #071139 70%); }
.thumb-bot { background: radial-gradient(circle at 45% 45%, #9276ff, #200a5a 72%); }
.thumb-growth { background: linear-gradient(135deg, #09246f, #1fb6ff); }
.thumb-slot { background: radial-gradient(circle, #ffb628, #180624 72%); }
.thumb-safe { background: radial-gradient(circle, #764dff, #160431 72%); }

.article-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  padding: 24px;
}

.article-modal.is-open {
  display: grid;
  place-items: center;
}

.article-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 24, 0.58);
  backdrop-filter: blur(8px);
}

.article-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 860px);
  max-height: min(86vh, 880px);
  overflow: auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(8, 10, 24, 0.28);
}

.article-modal-close {
  position: sticky;
  top: 0;
  float: right;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #101426;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
}

.article-modal-cover {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  background: #eef2ff;
}

.article-modal-date {
  display: inline-flex;
  margin-top: 20px;
  color: var(--primary);
  font-weight: 850;
}

.article-modal-panel h2 {
  margin: 8px 0 18px;
  color: #080b17;
  font-size: 34px;
  line-height: 1.25;
}

.article-rich-content {
  display: grid;
  gap: 16px;
  color: #2d354f;
}

.article-rich-content h3 {
  margin: 10px 0 0;
  font-size: 24px;
}

.article-rich-content p,
.article-rich-content li {
  margin: 0;
  color: #3e4967;
  font-size: 17px;
  line-height: 1.85;
}

.article-rich-content blockquote {
  margin: 0;
  padding: 14px 16px;
  color: #27304a;
  background: #f3f1ff;
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  font-weight: 700;
}

.article-rich-content figure {
  margin: 4px 0;
}

.article-rich-content img {
  display: block;
  width: 100%;
  border-radius: 8px;
}

.article-rich-content figcaption {
  margin-top: 8px;
  color: #6a7289;
  font-size: 14px;
  text-align: center;
}

.article-rich-content hr {
  width: 100%;
  border: 0;
  border-top: 1px solid var(--line);
}

body.article-modal-open {
  overflow: hidden;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 16px 0 2px;
}

.pagination button {
  width: 48px;
  height: 42px;
  color: #17192b;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-weight: 750;
}

.pagination button.is-active {
  color: #ffffff;
  background: var(--primary);
}

.about-hero {
  grid-template-columns: minmax(420px, 0.72fr) minmax(650px, 1.28fr);
  align-items: start;
}

.client-card {
  display: grid;
  grid-template-columns: 58px auto 1fr;
  gap: 18px;
  align-items: center;
  max-width: 380px;
  margin-top: 34px;
  padding: 18px 24px;
  background: #ffffff;
  border: 1px solid rgba(223, 225, 242, 0.72);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.client-card strong {
  font-size: 18px;
}

.client-card b {
  justify-self: end;
  color: var(--primary);
  font-size: 30px;
}

.map-card h3 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px;
  font-size: 24px;
}

.map-card h3::before {
  content: "";
  width: 16px;
  height: 22px;
  background: var(--primary);
  clip-path: polygon(50% 0, 88% 16%, 100% 48%, 50% 100%, 0 48%, 12% 16%);
}

.map-art {
  display: block;
  width: 100%;
  max-width: 900px;
  height: auto;
  margin-top: 8px;
  object-fit: contain;
}

.world-map {
  position: relative;
  min-height: 460px;
  background:
    radial-gradient(circle, rgba(81, 60, 255, 0.25) 1.6px, transparent 1.8px) 0 0 / 10px 10px;
  mask-image:
    radial-gradient(ellipse at 27% 43%, #000 0 16%, transparent 16.5%),
    radial-gradient(ellipse at 49% 50%, #000 0 12%, transparent 12.5%),
    radial-gradient(ellipse at 70% 43%, #000 0 19%, transparent 19.5%),
    radial-gradient(ellipse at 79% 69%, #000 0 9%, transparent 9.5%),
    radial-gradient(ellipse at 34% 70%, #000 0 8%, transparent 8.5%);
  -webkit-mask-image:
    radial-gradient(ellipse at 27% 43%, #000 0 16%, transparent 16.5%),
    radial-gradient(ellipse at 49% 50%, #000 0 12%, transparent 12.5%),
    radial-gradient(ellipse at 70% 43%, #000 0 19%, transparent 19.5%),
    radial-gradient(ellipse at 79% 69%, #000 0 9%, transparent 9.5%),
    radial-gradient(ellipse at 34% 70%, #000 0 8%, transparent 8.5%);
}

.pin {
  position: absolute;
  z-index: 2;
  padding: 5px 12px 5px 24px;
  background: #ffffff;
  border-radius: 7px;
  box-shadow: 0 8px 22px rgba(54, 54, 102, 0.12);
  font-weight: 760;
}

.pin::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 9px;
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
}

.usa { left: 17%; top: 25%; }
.mexico { left: 17%; top: 42%; }
.brazil { left: 25%; top: 55%; }
.argentina { left: 30%; top: 73%; }
.chile { left: 23%; top: 85%; }
.russia { right: 12%; top: 16%; }
.pakistan { right: 32%; top: 34%; }
.egypt { left: 49%; top: 49%; }
.nigeria { left: 47%; top: 62%; }
.thailand { right: 20%; top: 60%; }
.indonesia { right: 13%; top: 56%; }
.vietnam { right: 8%; top: 43%; }
.philippines { right: 8%; top: 52%; }
.australia { right: 4%; top: 76%; }

.about-cards {
  grid-template-columns: 1fr 1fr 1fr 0.9fr;
}

.about-cards article {
  display: block;
  min-height: 286px;
}

.about-cards .card-icon {
  margin-bottom: 18px;
}

.contact-card {
  border-color: rgba(81, 60, 255, 0.16) !important;
}

.contact-card div {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.contact-card p {
  margin: 0;
  color: #26304f;
}

.contact-card strong {
  display: block;
  margin-bottom: 4px;
  color: #101426;
}

.site-footer {
  padding: 26px 24px 38px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 1320px) {
  .site-header {
    gap: 20px;
    padding: 0 28px;
  }

  .home-section {
    padding-left: 28px;
    padding-right: 28px;
  }

  .home-section .hero-layout {
    grid-template-columns: 460px minmax(0, 1fr);
    gap: 18px;
    max-width: 1224px;
  }

  .home-section .hero-copy {
    padding-top: 104px;
    padding-left: 8px;
  }

  .home-section .hero-copy h1 {
    font-size: 47px;
    line-height: 1.43;
  }

  .home-section .hero-copy p {
    font-size: 18px;
  }

  .home-section .hero-actions {
    gap: 24px;
  }

  .home-section .hero-actions .btn {
    width: 172px;
    min-height: 56px;
    font-size: 18px;
  }

  .hero-layout {
    grid-template-columns: minmax(500px, 0.9fr) minmax(520px, 1.1fr);
    gap: 32px;
  }

  .compact-layout {
    grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
    gap: 28px;
  }

  .hero-copy h1,
  .hero-copy h2,
  .about-copy h2 {
    font-size: 52px;
  }

  .hero-copy p,
  .about-copy p,
  .section-subtitle {
    font-size: 18px;
  }

  .service-section .hero-art,
  .telegram-art {
    min-height: 560px;
  }

  .service-section .hero-copy h2 {
    font-size: 44px;
  }

  .service-section .hero-copy p {
    font-size: 18px;
  }

  .google-art img {
    max-width: 650px;
  }

  .trust-strip article {
    padding: 0 14px;
  }

  .home-services-grid h3 {
    font-size: 16px;
  }
}

@media (max-width: 1180px) {
  .site-nav {
    gap: 22px;
    font-size: 16px;
  }

  .hero-layout,
  .telegram-hero,
  .about-hero {
    grid-template-columns: 1fr;
  }

  .compact-layout {
    grid-template-columns: 1fr;
  }

  .service-section {
    padding-top: 34px;
  }

  .service-section .compact-layout {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 760px;
  }

  .service-section .hero-copy {
    max-width: 760px;
  }

  .service-section .section-pill {
    margin-bottom: 28px;
  }

  .service-section .hero-copy h2 {
    font-size: 38px;
    line-height: 1.28;
  }

  .service-section .hero-copy h2 span {
    white-space: normal;
  }

  .service-section .hero-copy p {
    max-width: 700px;
    margin-top: 18px;
  }

  .service-section .hero-actions {
    margin-top: 28px;
  }

  .service-section .google-art {
    min-height: auto;
    max-width: 680px;
    margin-top: 4px;
    margin-left: auto;
    margin-right: auto;
    overflow: visible;
    justify-content: center;
  }

  .google-art img {
    max-width: 100%;
    max-height: 420px;
  }

  .home-section {
    padding: 34px 22px;
  }

  .home-section .hero-layout {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .home-section .hero-copy {
    padding-top: 0;
    padding-left: 0;
    transform: none;
  }

  .home-section .hero-copy h1 {
    font-size: 42px;
  }

  .home-section .hero-art {
    min-height: auto;
    justify-content: center;
    margin-right: 0;
  }

  .home-services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .launch-visual,
  .hero-art,
  .telegram-phone-wrap {
    max-width: 720px;
    margin: 0 auto;
    width: 100%;
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .trust-strip article:nth-child(-n + 2) {
    border-top: 0;
  }

  .slim-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 24px 26px;
  }

  .slim-strip article {
    grid-template-columns: 58px minmax(0, 1fr);
    min-height: 82px;
    padding: 0 14px;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .slim-strip article:first-child {
    border-left: 0;
  }

  .slim-strip strong {
    font-size: 19px;
    white-space: nowrap;
  }

  .slim-strip p {
    grid-column: 2;
    margin-top: 6px;
    font-size: 15px;
    line-height: 1.35;
    white-space: nowrap;
  }

  .mini-benefits {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
    max-width: none;
  }

  .mini-benefits article {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 10px;
  }

  .mini-benefits .trust-icon {
    width: 44px;
    height: 44px;
  }

  .mini-benefits strong {
    font-size: 17px;
    white-space: nowrap;
  }

  .mini-benefits p {
    font-size: 14px;
    line-height: 1.35;
    white-space: nowrap;
  }

  .telegram-cards,
  .about-cards {
    grid-template-columns: 1fr;
  }

  .news-row {
    grid-template-columns: 180px 1fr 140px;
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
    min-height: 76px;
  }

  .brand {
    font-size: 20px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    font-size: 27px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
    order: 3;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    grid-auto-rows: minmax(52px, auto);
    gap: 0;
    width: 100%;
    padding: 12px 22px 22px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 46px rgba(40, 42, 82, 0.12);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 13px 0;
    border-bottom: 1px solid #edf0fb;
  }

  .site-nav a::after {
    display: none;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto auto;
    min-height: 76px;
  }

  .brand {
    font-size: 20px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    font-size: 27px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
    order: 3;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    grid-auto-rows: minmax(52px, auto);
    gap: 0;
    width: 100%;
    padding: 12px 22px 22px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 46px rgba(40, 42, 82, 0.12);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 13px 0;
    border-bottom: 1px solid #edf0fb;
  }

  .site-nav a::after {
    display: none;
  }

  .page-section {
    min-height: auto;
    padding: 34px 16px;
    scroll-margin-top: 76px;
  }

  .home-section {
    padding: 28px 16px 34px;
  }

  .service-section {
    padding: 28px 16px 30px;
  }

  .service-section .compact-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-section .section-pill {
    min-height: 30px;
    margin-bottom: 18px;
    padding: 0 16px;
    font-size: 16px;
  }

  .hero-copy h1,
  .hero-copy h2,
  .about-copy h2 {
    font-size: 32px;
    line-height: 1.35;
  }

  .service-section .hero-copy h2 {
    font-size: 30px;
    line-height: 1.24;
  }

  .home-section .hero-copy h1 {
    font-size: 32px;
    line-height: 1.36;
  }

  .hero-copy h2 span,
  .about-copy h2 span {
    white-space: normal;
  }

  .hero-copy p,
  .about-copy p,
  .section-subtitle {
    font-size: 16px;
  }

  .service-section .hero-copy p {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.55;
  }

  .service-section .sub-copy {
    margin-top: 10px !important;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
  }

  .home-section .hero-actions {
    gap: 12px;
  }

  .home-section .hero-actions .btn {
    width: auto;
    min-height: 48px;
    font-size: 15px;
  }

  .service-section .hero-actions {
    margin-top: 20px;
  }

  .btn {
    min-height: 48px;
    padding: 0 14px;
    font-size: 15px;
  }

  .launch-visual {
    min-height: 360px;
  }

  .hero-art,
  .telegram-art {
    min-height: auto;
  }

  .hero-art img {
    max-height: 360px;
  }

  .service-section .google-art {
    width: 100%;
    max-width: 640px;
    margin: 10px auto 0;
    overflow: visible;
    justify-content: center;
  }

  .google-art img {
    width: min(100%, 640px);
    max-width: none;
    max-height: none;
    height: auto;
    object-fit: contain;
  }

  .home-services-panel {
    margin-top: 24px;
    padding: 22px 14px 18px;
  }

  .home-services-panel h2 {
    margin-bottom: 14px;
    font-size: 24px;
  }

  .home-services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .home-services-grid article {
    min-height: 126px;
    padding: 14px 6px;
  }

  .home-services-grid img {
    width: 44px;
    height: 44px;
    margin-bottom: 8px;
  }

  .home-services-grid h3 {
    min-height: 32px;
    margin-bottom: 6px;
    font-size: 12px;
    line-height: 1.25;
    white-space: normal;
  }

  .home-services-grid p {
    display: none;
  }

  .telegram-art img {
    width: auto;
    max-width: 100%;
    max-height: 430px;
  }

  .phone {
    width: 170px;
    min-height: 320px;
    padding: 10px;
    border-width: 4px;
    border-radius: 24px;
  }

  .phone::before {
    top: 6px;
    width: 44px;
    height: 5px;
  }

  .phone-left {
    left: 17%;
  }

  .phone-right {
    right: 8%;
  }

  .phone-bar {
    margin-top: 8px;
    font-size: 8px;
  }

  .phone-app-head {
    grid-template-columns: 42px 1fr;
    gap: 7px;
    margin-top: 14px;
  }

  .game-icon {
    width: 42px;
    height: 42px;
    border-radius: 9px;
    font-size: 9px;
  }

  .phone-app-head h3 {
    font-size: 10px;
  }

  .phone-app-head p,
  .phone-stats {
    font-size: 7px;
  }

  .install-button {
    height: 24px;
    margin-top: 10px;
    font-size: 8px;
  }

  .game-grid span,
  .slot-grid span {
    min-height: 58px;
    border-radius: 8px;
    font-size: 8px;
  }

  .slot-hero {
    min-height: 110px;
    font-size: 17px;
  }

  .float-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
  }

  .play-float { left: 7%; top: 80px; }
  .store-float { left: 5%; top: 180px; }
  .tg-float { right: 2%; top: 102px; }
  .bot-float { right: 3%; top: 210px; }
  .coin-float { left: auto; right: 5%; bottom: 46px; width: 40px; height: 40px; font-size: 18px; }

  .trust-strip {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .trust-strip article,
  .trust-strip article:nth-child(-n + 2) {
    border-top: 1px solid var(--line);
  }

  .trust-strip article:first-child {
    border-top: 0;
  }

  .slim-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 16px;
  }

  .service-section .slim-strip {
    margin-top: 12px;
    padding: 12px;
  }

  .slim-strip article {
    grid-template-columns: 44px minmax(0, 1fr);
    min-height: 72px;
    padding: 12px 10px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .slim-strip article:nth-child(-n + 2) {
    border-top: 0;
  }

  .slim-strip strong {
    font-size: 16px;
  }

  .slim-strip p {
    font-size: 13px;
    white-space: normal;
  }

  .service-section .slim-strip article {
    min-height: 64px;
    padding: 10px 8px;
  }

  .service-section .slim-strip .trust-icon {
    width: 40px;
    height: 40px;
  }

  .service-section .slim-strip strong {
    font-size: 15px;
  }

  .article-modal {
    padding: 12px;
  }

  .article-modal-panel {
    max-height: 90vh;
    padding: 18px;
  }

  .article-modal-panel h2 {
    font-size: 24px;
  }

  .article-rich-content h3 {
    font-size: 20px;
  }

  .article-rich-content p,
  .article-rich-content li {
    font-size: 15px;
  }

  .mini-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .mini-benefits article {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .mini-benefits strong {
    font-size: 15px;
  }

  .mini-benefits p {
    font-size: 12px;
    white-space: normal;
  }

  .telegram-cards,
  .about-cards {
    grid-template-columns: 1fr;
  }

  .telegram-phone-wrap {
    min-height: 430px;
  }

  .telegram-phone {
    width: 250px;
    min-height: 430px;
  }

  .telegram-cards article {
    grid-template-columns: 60px 1fr auto;
    padding: 22px;
  }

  .news-panel {
    padding: 10px 16px;
  }

  .news-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px 0;
  }

  .news-row aside {
    justify-items: start;
  }

  .news-thumb {
    height: 128px;
  }

  .world-map {
    min-height: 360px;
  }

  .map-art {
    margin-top: 14px;
  }

  .pin {
    font-size: 11px;
    padding: 4px 8px 4px 18px;
  }
}
