@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;0,900;1,400;1,700;1,900&family=Roboto+Condensed:ital,wght@0,700;0,800;1,700;1,800&display=swap");

:root {
  --green: #239735;
  --green-bright: #32d74b;
  --green-ink: #147a28;
  --ink: #1b1e22;
  --ink-soft: #2a2f35;
  --gray: #8e8e9a;
  --line: #e7e9e7;
  --bg: #ffffff;
  --bg-soft: #f4f6f4;
  --bg-mute: #eef1ee;
  --shadow-sm: 0 2px 10px rgba(27, 30, 34, 0.06);
  --shadow-md: 0 12px 34px rgba(27, 30, 34, 0.1);
  --shadow-green: 0 14px 30px rgba(35, 151, 53, 0.28);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

.landing-page {
  color: var(--ink);
  font-family: "Roboto", system-ui, sans-serif;
}

.landing-page * {
  box-sizing: border-box;
}

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

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

.landing-page button {
  font-family: inherit;
}

.landing-page h1,
.landing-page h2,
.landing-page h3,
.landing-page h4,
.landing-page h6 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: -0.01em;
}

.landing-page .container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

.landing-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  padding: 15px 26px;
  border: 2px solid transparent;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  transition: transform .15s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}

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

.landing-page .btn-primary {
  background: var(--green);
  color: #fff;
}

.landing-page .btn-primary:hover {
  background: var(--green-ink);
  box-shadow: var(--shadow-green);
}

.landing-page .btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.landing-page .btn-ghost:hover {
  border-color: var(--ink);
}

.landing-page .btn-lg {
  padding: 18px 34px;
  font-size: 18px;
}

.landing-page .btn-pill {
  border-radius: 999px;
}

.landing-page .langtoggle {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  background: var(--bg-mute);
}

.landing-page .langtoggle button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--gray);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  transition: .18s var(--ease);
}

.landing-page .langtoggle button[aria-pressed="true"] {
  background: #fff;
  box-shadow: var(--shadow-sm);
  color: var(--ink);
}

.landing-page .hdr {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 252, 251, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.landing-page .hdr .row {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 72px;
}

.landing-page .brand {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 21px;
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.landing-page .brand img {
  width: 172px;
  height: auto;
}

.landing-page .nav {
  display: flex;
  gap: 22px;
  margin-left: 8px;
}

.landing-page .nav a {
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 500;
}

.landing-page .nav a:hover,
.landing-page .login:hover {
  color: var(--green);
}

.landing-page .spacer {
  flex: 1;
}

.landing-page .acts {
  display: flex;
  align-items: center;
  gap: 14px;
}

.landing-page .login {
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.landing-page .hero {
  padding: 54px 0 30px;
}

.landing-page .chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(35, 151, 53, 0.1);
  color: var(--green-ink);
  font-size: 13px;
  font-weight: 700;
}

.landing-page .chip .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 3px rgba(50, 215, 75, 0.25);
}

.landing-page .hero h1 {
  max-width: 18ch;
  margin-top: 20px;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.landing-page .g,
.landing-page .tg-c,
.landing-page .wa-c {
  color: var(--green);
}

.landing-page .hero .sub {
  max-width: 54ch;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.5;
}

.landing-page .hero .cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.landing-page .sec {
  padding: 84px 0;
}

.landing-page .sec-soft {
  background: var(--bg-soft);
}

.landing-page .sec-head {
  max-width: 680px;
  margin-bottom: 34px;
}

.landing-page .eyebrow2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.landing-page .eyebrow2::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--green);
}

.landing-page .sec-head h2,
.landing-page .contacts h2 {
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin-top: 14px;
}

.landing-page .sec-head p,
.landing-page .contacts p {
  margin-top: 14px;
  color: var(--gray);
  font-size: 18px;
  line-height: 1.5;
}

.landing-page .cal {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 2px 12px;
  scrollbar-width: thin;
}

.landing-page .cal-day {
  flex: 0 0 auto;
  width: 78px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  cursor: pointer;
  transition: .15s var(--ease);
}

.landing-page .cal-day:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}

.landing-page .cal-day .wd {
  color: var(--gray);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.landing-page .cal-day .dn {
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.landing-page .cal-day .mo {
  color: var(--gray);
  font-size: 11px;
}

.landing-page .cal-day.on {
  background: var(--green);
  border-color: var(--green);
}

.landing-page .cal-day.on .wd,
.landing-page .cal-day.on .dn,
.landing-page .cal-day.on .mo {
  color: #fff;
}

.landing-page .games-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.landing-page .game {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  color: inherit;
  padding: 20px;
  text-align: left;
}

.landing-page button.game {
  cursor: pointer;
  transition: transform .16s var(--ease), box-shadow .2s var(--ease), border-color .2s;
}

.landing-page button.game:hover {
  transform: translateY(-4px);
  border-color: rgba(35, 151, 53, 0.5);
  box-shadow: var(--shadow-md);
}

.landing-page .game.priv {
  opacity: 0.82;
  background: #f7f8f7;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24'%3E%3Crect x='5' y='10.5' width='14' height='10' rx='2.4' fill='%23239735'/%3E%3Cpath d='M8 10.5V8a4 4 0 0 1 8 0v2.5h-2.2V8a1.8 1.8 0 0 0-3.6 0v2.5z' fill='%231B1E22'/%3E%3Ccircle cx='12' cy='15' r='1.6' fill='%23fff'/%3E%3C/svg%3E") 14 16, not-allowed;
}

.landing-page .g-top,
.landing-page .g-head,
.landing-page .g-foot,
.landing-page .games-actions,
.landing-page .forwhom,
.landing-page .funcs,
.landing-page .bots-grid,
.landing-page .f3,
.landing-page .f3 .cols,
.landing-page .footer-actions {
  display: flex;
}

.landing-page .g-top,
.landing-page .g-foot {
  justify-content: space-between;
  align-items: center;
}

.landing-page .g-top {
  margin-bottom: 12px;
}

.landing-page .g-sport {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(35, 151, 53, 0.1);
  color: var(--green-ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.landing-page .g-lock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
}

.landing-page .g-lock.is-open {
  background: rgba(35, 151, 53, 0.1);
  color: var(--green);
}

.landing-page .g-lock.is-priv {
  background: var(--bg-mute);
  color: var(--gray);
}

.landing-page .g-head {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
}

.landing-page .g-time,
.landing-page .g-addr {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
}

.landing-page .g-time {
  color: var(--ink);
  font-weight: 700;
}

.landing-page .g-time svg {
  color: var(--green);
  flex: none;
}

.landing-page .g-addr {
  color: var(--ink-soft);
}

.landing-page .g-name {
  margin-top: 10px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
}

.landing-page .g-slots {
  margin-top: 18px;
}

.landing-page .slots-viz {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  padding-left: 2px;
}

.landing-page .slot {
  width: 34px;
  height: 48px;
  margin-left: -17px;
  border-radius: 9px;
  flex: none;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-page .slot:first-child {
  margin-left: 0;
}

.landing-page .slot.off,
.landing-page .slot.more {
  background: #e4e8e4;
  box-shadow: 0 1px 3px rgba(27, 30, 34, 0.08);
}

.landing-page .slot.off {
  border: 1.5px solid #fff;
}

.landing-page .slot.on,
.landing-page .slot.priv-on {
  background: #fff;
  border: 1.5px solid #e2e6e2;
  box-shadow: 0 2px 6px rgba(27, 30, 34, 0.16);
}

.landing-page .slot .av {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #d9ded9;
}

.landing-page .slot .av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing-page .slot .av .av-initial {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.landing-page .slot .av-lock {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, #7e8a83, #566059);
}

.landing-page .slot.more {
  width: auto;
  min-width: 34px;
  margin-left: 4px;
  padding: 0 9px;
  border: 1.5px solid #fff;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

.landing-page .g-pc {
  display: block;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.landing-page .g-price {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
}

.landing-page .g-cta {
  display: block;
  margin-top: auto;
  padding: 11px;
  border-radius: 11px;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.landing-page button.game:hover .g-cta:not(.full-label) {
  background: var(--green-ink);
}

.landing-page .g-cta.priv-label {
  background: var(--bg-mute);
  color: var(--gray);
}

.landing-page .g-cta.full-label {
  background: var(--bg-mute);
  color: var(--gray);
}

.landing-page .game-empty {
  grid-column: 1 / -1;
  border: 1px dashed var(--line);
  border-radius: 24px;
  background: #fff;
  padding: 34px 28px;
  text-align: center;
}

.landing-page .game-empty h3 {
  font-size: 24px;
  font-weight: 800;
}

.landing-page .game-empty p {
  margin: 10px auto 0;
  max-width: 40ch;
  color: var(--gray);
  font-size: 16px;
}

.landing-page .games-actions,
.landing-page .footer-actions {
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.landing-page .games-actions {
  justify-content: center;
  margin-top: 34px;
}

.landing-page .subhead {
  margin: 0 0 20px;
  font-size: 22px;
  font-weight: 800;
}

.landing-page .forwhom {
  gap: 20px;
  margin-bottom: 46px;
}

.landing-page .fw {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px 28px;
  background: #fff;
  text-align: left;
  transition: transform .16s var(--ease), box-shadow .2s var(--ease), background .2s, border-color .2s, color .2s;
}

.landing-page .fw:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.landing-page .fw-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.landing-page .fw .ic {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  line-height: 1;
  flex: none;
}

.landing-page .fw .ic {
  background: rgba(35, 151, 53, 0.1);
}

.landing-page .fw h4 {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
}

.landing-page .fw p {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.5;
}

.landing-page .fw p {
  color: var(--ink-soft);
}

.landing-page .fw-hint {
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 700;
}

.landing-page .fw-hint {
  color: var(--green);
}

.landing-page .fw[aria-pressed="true"] {
  border-color: #239735;
  background: linear-gradient(150deg, #239735, #2bc043);
  color: #fff;
  box-shadow: var(--shadow-green);
}

.landing-page .fw[aria-pressed="true"] .ic {
  background: rgba(255, 255, 255, 0.2);
}

.landing-page .fw[aria-pressed="true"] p,
.landing-page .fw[aria-pressed="true"] .fw-hint {
  color: #eafff0;
}

.landing-page .funcs {
  gap: 18px;
  flex-wrap: wrap;
}

.landing-page .funcs-3 .func {
  flex: 1 1 calc(33.333% - 12px);
}

.landing-page .func {
  display: flex;
  align-items: flex-start;
  flex: 1 1 calc(50% - 9px);
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  padding: 20px 22px;
}

.landing-page .func .ic {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(35, 151, 53, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  font-size: 24px;
}

.landing-page .func h4 {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.landing-page .func p {
  margin-top: 6px;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.45;
}

.landing-page .role-subhead {
  margin-top: 8px;
}

.landing-page .bots-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.landing-page .bots-title {
  margin: 0 0 22px;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.06;
}

.landing-page .bot-toggle {
  display: inline-flex;
  gap: 3px;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 4px;
}

.landing-page .bot-toggle button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: .15s var(--ease);
}

.landing-page .bot-toggle button svg {
  width: 18px;
  height: 18px;
}

.landing-page .bot-toggle button.on[data-platform="tg"] {
  background: #229ed9;
  color: #fff;
}

.landing-page .bot-toggle button.on[data-platform="wa"] {
  background: #25d366;
  color: #fff;
}

.landing-page .bots-l p {
  max-width: 46ch;
  margin: 22px 0 28px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.55;
}

.landing-page .bot-phone {
  width: 330px;
  margin: 0 auto;
  border-radius: 46px;
  background: #0e0f11;
  box-shadow: 0 30px 70px -18px rgba(27, 30, 34, 0.45);
  padding: 11px;
}

.landing-page .bot-screen {
  height: 660px;
  border-radius: 36px;
  overflow: hidden;
  background: #e9e3da;
  display: flex;
  flex-direction: column;
}

.landing-page .bot-phone.is-wa .bot-screen,
.landing-page .bot-phone.is-wa .chat {
  background: #d9fdd3;
}

.landing-page .bot-hdr {
  padding: 30px 18px 14px;
  background: #229ed9;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.landing-page .bot-phone.is-wa .bot-hdr {
  background: #075e54;
}

.landing-page .bot-hdr .pic,
.landing-page .msg-av {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-page .bot-hdr .pic {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
}

.landing-page .bot-hdr .pic img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.landing-page .bot-hdr .nm {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.landing-page .bot-hdr .st {
  font-size: 12px;
  opacity: 0.85;
}

.landing-page .chat {
  flex: 1;
  overflow: hidden;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.landing-page .msg {
  display: flex;
  align-items: flex-end;
  gap: 9px;
  transform: translateY(12px);
  transition: transform .55s cubic-bezier(.22, 1, .36, 1);
}

.landing-page .msg.in {
  transform: none;
}

.landing-page .msg-av {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.landing-page .msg-av img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 3px;
  background: #fff;
}

.landing-page .msg-av span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.landing-page .msg-av.in-av {
  background: #e8743b;
}

.landing-page .msg-bubble {
  width: fit-content;
  max-width: 82%;
  border-radius: 4px 16px 16px 16px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
  padding: 10px 13px;
}

.landing-page .msg-bubble b {
  display: block;
  margin-bottom: 2px;
  color: #229ed9;
  font-size: 12px;
  font-weight: 700;
}

.landing-page .bot-phone.is-wa .msg-bubble b {
  color: #075e54;
}

.landing-page .msg-in .msg-bubble b {
  color: #e8743b;
}

.landing-page .bot-phone.is-wa .msg-in .msg-bubble b {
  color: #0a7d68;
}

.landing-page .msg-bubble span {
  display: block;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
}

.landing-page .msg-btn {
  width: 100%;
  margin-top: 9px;
  border: 0;
  border-radius: 9px;
  background: rgba(34, 158, 217, 0.12);
  color: #229ed9;
  font-size: 13px;
  font-weight: 700;
  padding: 9px;
}

.landing-page .bot-phone.is-wa .msg-btn {
  background: rgba(7, 94, 84, 0.12);
  color: #075e54;
}

.landing-page .bot-input {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--gray);
  font-size: 14px;
  padding: 11px 14px;
}

.landing-page .bot-phone.is-wa .bot-input {
  background: #f0f2f0;
}

.landing-page .bot-input .field {
  flex: 1;
  border-radius: 999px;
  background: var(--bg-mute);
  padding: 9px 14px;
}

.landing-page .faq {
  max-width: 820px;
}

.landing-page .faq-item {
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.landing-page .faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  padding: 22px 24px;
  text-align: left;
}

.landing-page .faq-q .arr {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg-mute);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition: transform .2s var(--ease), background .2s;
}

.landing-page .faq-item.open .faq-q .arr {
  transform: rotate(45deg);
  background: var(--green);
  color: #fff;
}

.landing-page .faq-a {
  max-height: 0;
  overflow: hidden;
  max-width: 64ch;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.4;
  padding: 0 24px;
  transition: max-height .5s cubic-bezier(.4, 0, .2, 1), padding .45s ease, opacity .5s ease;
}

.landing-page .faq-item.open .faq-a {
  max-height: 420px;
  opacity: 1;
  padding: 0 24px 24px;
}

.landing-page .contacts {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  border-radius: 30px;
  background: var(--ink);
  color: #fff;
  padding: 60px 54px;
}

.landing-page .contacts .glow {
  position: absolute;
  top: -180px;
  right: -100px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(50, 215, 75, 0.2), transparent 65%);
}

.landing-page .contacts h2,
.landing-page .contacts p,
.landing-page .cmethods {
  position: relative;
}

.landing-page .contacts p {
  color: #aeb3b8;
}

.landing-page .cmethods {
  display: grid;
  gap: 14px;
}

.landing-page .cm {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid #31373d;
  border-radius: 16px;
  background: #23282d;
  transition: .16s var(--ease);
}

.landing-page .cm:hover {
  transform: translateY(-2px);
  border-color: var(--green);
}

.landing-page .cm .ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(50, 215, 75, 0.14);
  color: var(--green-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.landing-page .cm .lbl {
  color: #9aa0a6;
  font-size: 13px;
}

.landing-page .cm .val {
  font-size: 17px;
  font-weight: 700;
}

.landing-page footer {
  margin-top: 70px;
  border-top: 1px solid var(--line);
  padding: 54px 0 38px;
}

.landing-page .f3 {
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.landing-page .f3 p {
  max-width: 28ch;
  margin: 12px 0 0;
  color: var(--gray);
  font-size: 14px;
}

.landing-page .footer-actions {
  margin-top: 18px;
}

.landing-page .footer-apps {
  margin-top: 24px;
}

.landing-page .footer-apps h6 {
  margin: 0 0 14px;
  color: var(--gray);
  font-size: 13px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.landing-page .app-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-start;
}

.landing-page .app-link {
  display: inline-flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 88px;
  padding: 0 !important;
  color: var(--ink);
  text-align: center;
  transition: transform .16s var(--ease), color .2s;
}

.landing-page .app-link:hover {
  transform: translateY(-2px);
  color: var(--green);
}

.landing-page .app-link.is-disabled {
  opacity: 0.88;
  cursor: default;
}

.landing-page .app-link.is-disabled:hover {
  transform: none;
  color: var(--ink);
}

.landing-page .app-link-icon {
  width: 60px;
  height: 60px;
  border: 1.5px solid #1b1e22;
  border-radius: 16px;
  background: linear-gradient(180deg, #fff 0%, #f6faf6 100%);
  color: #1b1e22;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  box-shadow: 0 6px 18px rgba(27, 30, 34, 0.08);
  transition: border-color .2s, box-shadow .2s, background .2s, color .2s;
}

.landing-page .app-link:hover .app-link-icon {
  border-color: var(--green);
  background: linear-gradient(180deg, #f7fff8 0%, #eefaf0 100%);
  color: var(--green);
  box-shadow: 0 10px 24px rgba(35, 151, 53, 0.14);
}

.landing-page .app-link-label {
  display: block;
  width: 100%;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.1;
  text-align: center;
}

.landing-page .f3 .cols {
  gap: 56px;
  flex-wrap: wrap;
}

.landing-page .f3 h6 {
  margin: 0 0 12px;
  color: var(--gray);
  font-size: 13px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.landing-page .f3 a {
  display: block;
  padding: 5px 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.landing-page .f3 a:hover {
  color: var(--green);
}

.landing-page .f3 .cc {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  color: var(--gray);
  font-size: 13px;
}

@media (max-width: 920px) {
  .landing-page .nav {
    display: none;
  }

  .landing-page .games-grid,
  .landing-page .forwhom,
  .landing-page .contacts,
  .landing-page .bots-grid {
    grid-template-columns: 1fr;
  }

  .landing-page .func,
  .landing-page .funcs-3 .func {
    flex-basis: 100%;
  }

  .landing-page .contacts {
    padding: 38px 26px;
  }

  .landing-page .bots-grid {
    gap: 30px;
  }
}

@media (max-width: 640px) {
  .landing-page .container {
    padding: 0 18px;
  }

  .landing-page .hdr .row {
    flex-wrap: wrap;
    gap: 14px;
    padding: 14px 0;
  }

  .landing-page .acts {
    width: 100%;
    justify-content: space-between;
  }

  .landing-page .games-grid {
    grid-template-columns: 1fr;
  }

  .landing-page .hero .cta,
  .landing-page .footer-actions {
    width: 100%;
  }

  .landing-page .hero .cta .btn,
  .landing-page .footer-actions .btn {
    width: 100%;
  }

  .landing-page .bot-phone {
    width: 100%;
    max-width: 330px;
  }
}
