:root {
  --clr-dark: #1F222E;
  --clr-dark-2: #15171F;
  --clr-green: #6AC340;
  --clr-green-d: #58a832;
  --clr-green-l: #7ed155;
  --clr-bg: #6AC340;
  --clr-box: #ffffff;
  --clr-box-2: #f4f7f2;
  --clr-line: #e2e8dd;
  --clr-text: #20241c;
  --clr-text-soft: #4c5348;
  --clr-light: #ffffff;
  --clr-muted: #b9c2ba;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(31, 34, 46, .12);
  --shadow-sm: 0 4px 14px rgba(31, 34, 46, .08);
  --maxw: 1180px;
  --gap: 22px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--clr-bg);
  background-image: linear-gradient(180deg, #6AC340 0%, #5fb838 100%);
  color: var(--clr-text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

body.rf0093 { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--clr-dark-2); }

h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.25;
  color: var(--clr-dark);
  margin: 0 0 .6em;
  font-weight: 800;
  text-wrap: balance;
}
h1 { font-size: clamp(26px, 5vw, 40px); }
h2 { font-size: clamp(22px, 4vw, 30px); }
h3 { font-size: clamp(18px, 3vw, 22px); }
p { margin: 0 0 1em; text-wrap: pretty; }

.wrapper {
  width: 100%;
  padding-bottom: 90px;
}

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

.box {
  background: var(--clr-box);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: var(--gap) 0;
  padding: 26px;
}

.d7k12_head.box,
.header.box {
  background: var(--clr-dark);
  color: var(--clr-light);
  padding: 14px 22px;
  margin-top: 18px;
  position: sticky;
  top: 0;
  z-index: 60;
}

.zq84nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo, .vb61logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo img, .vb61logo img { height: 40px; width: auto; }

.mn39list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mn39list a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #dfe4dd;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  transition: background .25s, color .25s;
}
.mn39list a:hover { background: rgba(106, 195, 64, .16); color: #fff; }
.mn39list svg { width: 18px; height: 18px; flex-shrink: 0; }

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

.px52online {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #cfe8c2;
  background: rgba(106, 195, 64, .14);
  padding: 7px 12px;
  border-radius: 40px;
  white-space: nowrap;
}
.px52online .dotpulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--clr-green-l);
  box-shadow: 0 0 0 0 rgba(126, 209, 85, .7);
  animation: pulse17 1.8s infinite;
}
@keyframes pulse17 {
  0% { box-shadow: 0 0 0 0 rgba(126, 209, 85, .6); }
  70% { box-shadow: 0 0 0 8px rgba(126, 209, 85, 0); }
  100% { box-shadow: 0 0 0 0 rgba(126, 209, 85, 0); }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  transition: transform .2s ease, box-shadow .25s ease, filter .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--md { padding: 11px 16px; }
.btn--lg { padding: 15px 26px; font-size: 16px; }
.btn--block { width: 100%; }

.btn--dark, .btn--signin {
  background: var(--clr-dark-2);
  color: #fff;
  box-shadow: 0 4px 12px rgba(21, 23, 31, .35);
}
.btn--dark:hover { filter: brightness(1.25); }

.btn--green, .btn--signup, .btn--play {
  background: var(--clr-green);
  color: #10240a;
  box-shadow: 0 6px 16px rgba(106, 195, 64, .4);
}
.btn--green:hover { background: var(--clr-green-l); }

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .25);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(106, 195, 64, .16);
  border: 0;
  cursor: pointer;
  padding: 0 11px;
}
.burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hs22hero {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin: var(--gap) 0;
  min-height: 340px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow);
  background: var(--clr-dark);
}
.hs22hero .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
  z-index: 0;
}
.hs22hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(21, 23, 31, .92) 0%, rgba(31, 34, 46, .55) 55%, rgba(106, 195, 64, .25) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 44px 34px;
  max-width: 620px;
  color: #fff;
  animation: fadeUp 0.9s ease both;
}
.hero-inner h1 { color: #fff; }
.hero-inner p { color: #e6ebe2; font-size: 18px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(106, 195, 64, .2);
  color: #cdeeba;
  font-weight: 700;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 40px;
  margin-bottom: 16px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.hero-terms { font-size: 12px; color: #b7c2b0; margin-top: 14px; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.bc44crumbs {
  margin: 6px 0 0;
  padding: 12px 18px;
  background: rgba(21, 23, 31, .28);
  border-radius: 40px;
  font-size: 13px;
  color: #eaf3e4;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.bc44crumbs a { color: #eaf3e4; text-decoration: none; font-weight: 600; }
.bc44crumbs a:hover { text-decoration: underline; }
.bc44crumbs span[aria-current] { color: #fff; opacity: .85; }
.bc44crumbs .sep { opacity: .6; }


.sec-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.sec-head .ico-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(106, 195, 64, .16);
  color: var(--clr-green-d);
  flex-shrink: 0;
}
.sec-head .ico-wrap svg { width: 24px; height: 24px; }
.sec-head h2 { margin: 0; }

.tc63toc { background: var(--clr-box-2); }
.tc63list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.tc63list a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--clr-text);
  font-weight: 600;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--clr-line);
  border-radius: var(--radius-sm);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.tc63list a:hover { border-color: var(--clr-green); transform: translateX(4px); box-shadow: var(--shadow-sm); }
.tc63list svg { width: 20px; height: 20px; color: var(--clr-green-d); flex-shrink: 0; }
.tc63list .num {
  margin-left: auto;
  font-size: 12px;
  color: var(--clr-muted);
  background: var(--clr-box-2);
  border-radius: 20px;
  padding: 2px 9px;
}

.tbl-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-sm);
}
table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  text-align: left;
  min-width: 520px;
}
table caption { caption-side: top; text-align: left; padding-bottom: 10px; color: var(--clr-text-soft); font-size: 13px; }
th, td {
  padding: 13px 16px;
  border: 1px solid var(--clr-line);
  vertical-align: top;
}
thead th {
  background: var(--clr-dark);
  color: #fff;
  font-size: 13px;
  letter-spacing: .3px;
  text-transform: uppercase;
}
tbody tr:nth-child(even) { background: var(--clr-box-2); }
tbody tr:hover { background: rgba(106, 195, 64, .08); }

.if88table th:first-child {
  width: 240px;
  background: var(--clr-box-2);
  color: var(--clr-dark);
  font-weight: 700;
}
.if88table td svg, .if88table th svg { width: 18px; height: 18px; color: var(--clr-green-d); vertical-align: middle; margin-right: 8px; }
.if88param { display: inline-flex; align-items: center; gap: 8px; }

.badge-tag {
  display: inline-block;
  background: rgba(106, 195, 64, .16);
  color: var(--clr-green-d);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  margin: 2px 4px 2px 0;
}

.ad55grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ad55tile {
  background: var(--clr-box-2);
  border: 1px solid var(--clr-line);
  border-radius: var(--radius-sm);
  padding: 22px 20px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s;
}
.ad55tile:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--clr-green); }
.ad55tile .ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--clr-green);
  color: #10240a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.ad55tile .ico svg { width: 28px; height: 28px; }
.ad55tile h3 { margin-bottom: 6px; font-size: 18px; }
.ad55tile p { margin: 0; color: var(--clr-text-soft); font-size: 15px; }

.pm71table td img { height: 26px; width: auto; display: inline-block; }
.logo-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}
.logo-chip .swatch {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
  background: var(--clr-dark);
}

.app99wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: 26px; align-items: center; }
.app99wrap > * { min-width: 0; }
.store-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--clr-dark-2);
  color: #fff;
  text-decoration: none;
  padding: 11px 18px;
  border-radius: 12px;
  transition: transform .2s, filter .2s;
}
.store-btn:hover { transform: translateY(-2px); filter: brightness(1.2); }
.store-btn svg { width: 26px; height: 26px; }
.store-btn .st-top { font-size: 10px; opacity: .8; display: block; line-height: 1.1; }
.store-btn .st-main { font-size: 15px; font-weight: 700; display: block; line-height: 1.1; }
.store-btn.apk { background: var(--clr-green); color: #10240a; }

.gm66wrap { position: relative; }
.gm66grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gm66card {
  background: var(--clr-box-2);
  border: 1px solid var(--clr-line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.gm66card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.gm66thumb {
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: .5px;
  position: relative;
  overflow: hidden;
}
.gm66thumb img { width: 100%; height: 100%; object-fit: cover; }
.gm66card h3 { font-size: 16px; margin: 14px 12px 4px; }
.gm66card .prov { font-size: 12px; color: var(--clr-muted); margin-bottom: 12px; }
.gm66card .btn { margin: 0 12px 16px; }

.rvw-content { line-height: 1.75; }
.rvw-content h2 { margin-top: 1.4em; }
.rvw-content h3 { margin-top: 1.2em; }
.rvw-content p { color: var(--clr-text-soft); }
.rvw-content ul, .rvw-content ol { padding-left: 22px; margin: 0 0 1.2em; color: var(--clr-text-soft); }
.rvw-content li { margin-bottom: .5em; }
.rvw-content a { color: var(--clr-green-d); font-weight: 600; }
.rvw-content blockquote {
  margin: 1.2em 0;
  padding: 14px 20px;
  border-left: 4px solid var(--clr-green);
  background: var(--clr-box-2);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--clr-text);
}
.rvw-content table { margin: 1.2em 0; }
.rvw-content { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.rvw-content img { border-radius: var(--radius-sm); margin: 1em auto; }

.fq33item {
  border: 1px solid var(--clr-line);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
}
.fq33q {
  width: 100%;
  text-align: left;
  background: var(--clr-box-2);
  border: 0;
  cursor: pointer;
  padding: 18px 20px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  color: var(--clr-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.fq33q .chev { transition: transform .3s; flex-shrink: 0; }
.fq33q[aria-expanded="true"] .chev { transform: rotate(180deg); }
.fq33a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  padding: 0 20px;
  color: var(--clr-text-soft);
}
.fq33a.open { max-height: 500px; padding: 4px 20px 20px; }

.au22card { display: grid; grid-template-columns: 120px 1fr; gap: 24px; align-items: start; }
.au22photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--clr-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10240a;
  font-size: 42px;
  font-weight: 800;
  flex-shrink: 0;
}
.au22photo img { width: 100%; height: 100%; object-fit: cover; }
.au22meta .role { color: var(--clr-green-d); font-weight: 700; font-size: 14px; margin: 2px 0 12px; }
.au22social { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.au22social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--clr-dark);
  color: #fff;
  text-decoration: none;
  transition: background .25s, transform .2s;
}
.au22social a:hover { background: var(--clr-green-d); transform: translateY(-3px); }
.au22social svg { width: 20px; height: 20px; }
.au22date { font-size: 13px; color: var(--clr-muted); margin-top: 12px; }

.ft00foot { margin-top: 30px; }
.ft00foot .box {
  background: var(--clr-dark);
  color: #cfd5cd;
}
.ft00top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.ft00foot h4 { color: #fff; font-size: 15px; margin-bottom: 14px; }
.ft00foot a { color: #cfd5cd; text-decoration: none; }
.ft00foot a:hover { color: var(--clr-green-l); }
.ft00menu { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; font-size: 14px; }
.ft00brand img { height: 42px; margin-bottom: 12px; }
.ft00flag { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; margin: 10px 0; }
.ft00flag img { height: 18px; border-radius: 3px; }
.ft00logos { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; padding: 20px 0; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.ft00logos .lg-item {
  background: rgba(255, 255, 255, .06);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  color: #e7ede4;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ft00logos .lg-item svg { width: 18px; height: 18px; }
.ft00social { display: flex; gap: 10px; margin-top: 12px; }
.ft00social a {
  width: 38px; height: 38px; border-radius: 9px;
  background: rgba(255, 255, 255, .08);
  display: inline-flex; align-items: center; justify-content: center;
}
.ft00social svg { width: 18px; height: 18px; }
.ft00legal { padding-top: 18px; font-size: 12px; color: #9aa398; line-height: 1.7; }
.ft00legal .age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border: 2px solid #e2574c;
  color: #ff7a6e;
  border-radius: 50%;
  font-weight: 800;
  margin-right: 10px;
  float: left;
}

.wg11widget {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: var(--clr-dark);
  color: #fff;
  box-shadow: 0 -6px 24px rgba(0, 0, 0, .3);
  transform: translateY(0);
  transition: transform .4s ease;
}
.wg11inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.wg11txt { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.wg11txt .gift {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--clr-green);
  color: #10240a;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wg11txt strong { color: var(--clr-green-l); }
.wg11link {
  color: #10240a;
  text-decoration: none;
  font-weight: 800;
}
.wg11close {
  background: rgba(255,255,255,.1);
  border: 0; color: #fff; cursor: pointer;
  width: 30px; height: 30px; border-radius: 8px;
  flex-shrink: 0;
}

.mob-drawer { display: none; }

.info-page-nav { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.info-page-nav a {
  text-decoration: none; font-weight: 600; font-size: 14px;
  color: var(--clr-dark); background: var(--clr-box-2);
  padding: 8px 14px; border-radius: 20px; border: 1px solid var(--clr-line);
}
.info-page-nav a:hover { border-color: var(--clr-green); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.zx00deco, .unused-flair, .qk55spacer { display: none !important; }

@media (max-width: 900px) {
  .ad55grid, .gm66grid { grid-template-columns: repeat(2, 1fr); }
  .app99wrap { grid-template-columns: 1fr; }
  .ft00top { grid-template-columns: 1fr 1fr; }
  .tc63list { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .mn39list { display: none; }
  .px52online { display: none; }
  .burger { display: flex; }
  .hd77actions .btn--bonus { display: none; }
  .hd77actions .btn--signin,
  .hd77actions .btn--signup { display: none; }
  .mob-drawer-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 18px; }
  .mob-drawer-actions .btn { width: 100%; justify-content: center; }
  .btn { padding: 10px 12px; font-size: 13px; }
  .au22card { grid-template-columns: 1fr; text-align: center; }
  .au22photo { margin: 0 auto; }
  .au22social { justify-content: center; }
  .ft00top { grid-template-columns: 1fr; }
  .box { padding: 20px 16px; }
  .hero-inner { padding: 30px 20px; }

  .mob-drawer {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 80;
    background: var(--clr-dark);
    padding: 80px 24px 30px;
    transform: translateX(100%);
    transition: transform .35s ease;
    overflow-y: auto;
  }
  .mob-drawer.active { transform: translateX(0); }
  .mob-drawer ul { list-style: none; margin: 0; padding: 0; }
  .mob-drawer a {
    display: flex; align-items: center; gap: 12px;
    color: #e6ebe2; text-decoration: none;
    font-size: 17px; font-weight: 600;
    padding: 16px 6px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .mob-drawer svg { width: 22px; height: 22px; color: var(--clr-green-l); }

  .gm66grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
  }
  .gm66card { flex: 0 0 72%; scroll-snap-align: start; }

  .wg11txt .wg11sub { display: none; }
}

@media (max-width: 480px) {
  .ad55grid { grid-template-columns: 1fr; }
}
