:root {
  --clr-bg: #1c1c1c;
  --clr-surface: #242424;
  --clr-surface2: #2e2e2e;
  --clr-green: #98c453;
  --clr-green-dark: #7aab38;
  --clr-text: #e8e8e8;
  --clr-text-muted: #9a9a9a;
  --clr-border: #363636;
  --clr-border2: #444;
  --clr-white: #fff;
  --clr-black: #111;
  --radius: 10px;
  --radius-sm: 6px;
  --transition: 0.22s ease;
  --font-main: "Roboto", "Open Sans", Arial, sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
}
body {
  background: var(--clr-bg);
  color: var(--clr-text);
  overflow-x: hidden;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: inherit;
}
.xw9k2 {
  display: none;
}
.pq7r4 {
}
input[type="text"],
input[type="email"],
input[type="password"] {
  display: none;
}
.wp-block-paragraph {
}
.entry-content {
}
.site-main {
}

.fp-wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.fp-header {
  background: var(--clr-surface);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--clr-border);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}
.fp-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  max-width: 1280px;
  margin: 0 auto;
}
.fp-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.fp-logo img {
  height: 44px;
  width: auto;
  border-radius: 4px;
}
.fp-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.fp-nav a {
  color: var(--clr-text);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  transition:
    background var(--transition),
    color var(--transition);
  white-space: nowrap;
}
.fp-nav a:hover {
  background: var(--clr-border);
  color: var(--clr-green);
}
.fp-header__online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  white-space: nowrap;
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: 20px;
  padding: 5px 12px;
}
.fp-header__online .fp-dot {
  width: 8px;
  height: 8px;
  background: var(--clr-green);
  border-radius: 50%;
  animation: fpPulse 1.4s infinite;
}
@keyframes fpPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}
.fp-header__online span {
  color: var(--clr-white);
  font-weight: 600;
}
.fp-header__btns {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.fp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  font-family: inherit;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    color var(--transition);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.fp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}
.fp-btn:active {
  transform: translateY(0);
}
.fp-btn--login {
  background: var(--clr-surface2);
  color: var(--clr-text);
  border: 1px solid var(--clr-border2);
  font-size: 0.85rem;
  padding: 8px 18px;
}
.fp-btn--login:hover {
  background: var(--clr-border);
  color: var(--clr-white);
}
.fp-btn--reg {
  background: var(--clr-green);
  color: var(--clr-black);
  font-size: 0.85rem;
  padding: 8px 18px;
}
.fp-btn--reg:hover {
  background: var(--clr-green-dark);
  color: var(--clr-black);
}
.fp-btn--lg {
  font-size: 1rem;
  padding: 13px 32px;
  border-radius: var(--radius);
}
.fp-btn--xl {
  font-size: 1.1rem;
  padding: 16px 40px;
  border-radius: var(--radius);
}
.fp-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition);
}
.fp-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}
.fp-burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.fp-burger.active span:nth-child(2) {
  opacity: 0;
}
.fp-burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.fp-mob-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 80px 20px 40px;
}
.fp-mob-nav.active {
  display: flex;
}
.fp-mob-nav a {
  color: var(--clr-text);
  font-size: 1.2rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  transition:
    color var(--transition),
    background var(--transition);
}
.fp-mob-nav a:hover {
  color: var(--clr-green);
  background: var(--clr-surface);
}
.fp-mob-nav__btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}
.fp-mob-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: var(--clr-text);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}

.fp-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #1a1a1a;
}
.fp-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.fp-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.fp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28, 28, 28, 0.92) 35%,
    rgba(28, 28, 28, 0.55) 100%
  );
  z-index: 1;
}
.fp-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 20px;
  max-width: 680px;
  animation: fpFadeUp 0.7s ease both;
}
@keyframes fpFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(152, 196, 83, 0.15);
  border: 1px solid var(--clr-green);
  color: var(--clr-green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 18px;
}
.fp-hero__title {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--clr-white);
  margin-bottom: 14px;
}
.fp-hero__title span {
  color: var(--clr-green);
}
.fp-hero__sub {
  font-size: 1rem;
  color: var(--clr-text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}
.fp-hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.fp-hero__bonus {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--clr-border2);
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  font-size: 0.88rem;
  color: var(--clr-text-muted);
}
.fp-hero__bonus strong {
  color: var(--clr-green);
}

.fp-section {
  padding: 60px 0;
}
.fp-section + .fp-section {
  padding-top: 0;
}
.fp-section__title {
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 6px;
}
.fp-section__sub {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  margin-bottom: 28px;
}
.fp-section__head {
  margin-bottom: 28px;
}
.fp-section__head .fp-section__title {
  margin-bottom: 4px;
}

.fp-block {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  margin: 0 16px 24px;
}
.fp-block--alt {
  background: var(--clr-surface2);
}

.fp-mirror {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 28px;
  margin: 0 16px 24px;
}
.fp-mirror__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.fp-mirror__time {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(152, 196, 83, 0.08);
  border: 1px solid rgba(152, 196, 83, 0.3);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.82rem;
  color: var(--clr-green);
}
.fp-mirror__time strong {
  color: var(--clr-white);
}
.fp-mirror__status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #6bdd6b;
}
.fp-mirror__status::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background: #6bdd6b;
  border-radius: 50%;
  animation: fpPulse 1.4s infinite;
}
.fp-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.fp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.fp-table th {
  background: var(--clr-surface2);
  color: var(--clr-text-muted);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid var(--clr-border);
}
.fp-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--clr-border);
  color: var(--clr-text);
  vertical-align: middle;
}
.fp-table tr:last-child td {
  border-bottom: none;
}
.fp-table tr:hover td {
  background: rgba(152, 196, 83, 0.04);
}
.fp-table a {
  color: var(--clr-green);
  font-weight: 600;
  transition: color var(--transition);
}
.fp-table a:hover {
  color: var(--clr-green-dark);
  text-decoration: underline;
}
.fp-badge-new {
  display: inline-block;
  background: var(--clr-green);
  color: var(--clr-black);
  font-size: 0.68rem;
  font-weight: 800;
  border-radius: 4px;
  padding: 2px 7px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  vertical-align: middle;
  margin-left: 6px;
}
.fp-badge-ok {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #6bdd6b;
  font-size: 0.83rem;
  font-weight: 600;
}
.fp-badge-ok::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: #6bdd6b;
  border-radius: 50%;
}

.fp-winners {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 28px;
  margin: 0 16px 24px;
}
.fp-winners__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 10px;
}
.fp-winner-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  transition:
    border-color var(--transition),
    transform var(--transition);
}
.fp-winner-card:hover {
  border-color: var(--clr-green);
  transform: translateY(-2px);
}
.fp-winner-rank {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--clr-text-muted);
  min-width: 26px;
}
.fp-winner-rank--gold {
  color: #f5c842;
}
.fp-winner-rank--silver {
  color: #b0bec5;
}
.fp-winner-rank--bronze {
  color: #cd7f32;
}
.fp-winner-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--clr-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--clr-black);
  flex-shrink: 0;
  text-transform: uppercase;
}
.fp-winner-info {
  flex: 1;
  min-width: 0;
}
.fp-winner-name {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--clr-white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fp-winner-game {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
}
.fp-winner-sum {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--clr-green);
  white-space: nowrap;
}

.fp-appinfo {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 28px;
  margin: 0 16px 24px;
}
.fp-appinfo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.fp-appinfo__table-wrap {
  overflow-x: auto;
}
.fp-appinfo__dl {
  width: 100%;
}
.fp-appinfo__dl dt {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 10px 0 3px;
  border-top: 1px solid var(--clr-border);
}
.fp-appinfo__dl dd {
  font-size: 0.92rem;
  color: var(--clr-white);
  font-weight: 500;
  padding-bottom: 10px;
}
.fp-appinfo__dl dt:first-child {
  border-top: none;
}
.fp-appinfo__btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fp-app-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border2);
  border-radius: var(--radius);
  padding: 14px 20px;
  transition:
    border-color var(--transition),
    transform var(--transition),
    background var(--transition);
  text-decoration: none;
  color: var(--clr-white);
}
.fp-app-btn:hover {
  border-color: var(--clr-green);
  background: rgba(152, 196, 83, 0.07);
  transform: translateY(-2px);
}
.fp-app-btn__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fp-app-btn__icon svg {
  width: 32px;
  height: 32px;
}
.fp-app-btn__label {
  font-size: 0.72rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.fp-app-btn__name {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--clr-white);
}
.fp-app-btn--apk {
  border-color: var(--clr-green);
  background: rgba(152, 196, 83, 0.06);
}

.fp-demo {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 28px;
  margin: 0 16px 24px;
}
.fp-demo__frame-wrap {
  position: relative;
  width: 100%;
  border-radius: var(--radius-sm);
  background: #000;
  aspect-ratio: 16/9;
  max-height: 520px;
}
.fp-demo__frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.fp-demo__notice {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  margin-top: 10px;
}

.fp-review {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 32px 36px;
  margin: 0 16px 24px;
}
.fp-review__author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--clr-border);
}
.fp-review__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--clr-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--clr-black);
  flex-shrink: 0;
}
.fp-review__author-info {
}
.fp-review__author-name {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--clr-white);
}
.fp-review__author-bio {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  margin-top: 2px;
}
.fp-review__author-link {
  font-size: 0.78rem;
  color: var(--clr-green);
  margin-top: 2px;
  display: inline-block;
}
.fp-review__author-link:hover {
  text-decoration: underline;
}
.fp-review__body h1,
.fp-review__body h2,
.fp-review__body h3,
.fp-review__body h4,
.fp-review__body h5,
.fp-review__body h6 {
  color: var(--clr-white);
  margin: 1.4em 0 0.6em;
  line-height: 1.3;
  font-weight: 800;
}
.fp-review__body h1 {
  font-size: 1.5rem;
}
.fp-review__body h2 {
  font-size: 1.3rem;
}
.fp-review__body h3 {
  font-size: 1.1rem;
}
.fp-review__body p {
  color: var(--clr-text);
  margin-bottom: 1em;
  line-height: 1.75;
}
.fp-review__body ul,
.fp-review__body ol {
  margin: 0 0 1em 1.5em;
  color: var(--clr-text);
  line-height: 1.75;
}
.fp-review__body ul {
  list-style: disc;
}
.fp-review__body ol {
  list-style: decimal;
}
.fp-review__body li {
  margin-bottom: 0.4em;
}
.fp-review__body a {
  color: var(--clr-green);
  text-decoration: underline;
}
.fp-review__body a:hover {
  color: var(--clr-green-dark);
}
.fp-review__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2em 0;
  font-size: 0.9rem;
}
.fp-review__body table th {
  background: var(--clr-surface2);
  color: var(--clr-text-muted);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--clr-border);
}
.fp-review__body table td {
  padding: 10px 14px;
  border: 1px solid var(--clr-border);
  color: var(--clr-text);
  vertical-align: top;
}
.fp-review__body table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}
.fp-review__body blockquote {
  border-left: 3px solid var(--clr-green);
  margin: 1.2em 0;
  padding: 0.8em 1.2em;
  background: rgba(152, 196, 83, 0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--clr-text-muted);
  font-style: italic;
}
.fp-review__body strong,
.fp-review__body b {
  color: var(--clr-white);
}
.fp-review__body code {
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: 3px;
  padding: 1px 6px;
  font-size: 0.88em;
  color: var(--clr-green);
}
.fp-review__body hr {
  border: none;
  border-top: 1px solid var(--clr-border);
  margin: 1.8em 0;
}
.fp-review__body img {
  border-radius: var(--radius-sm);
  max-width: 100%;
  margin: 1em 0;
}

.fp-faq {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 28px;
  margin: 0 16px 24px;
}
.fp-faq__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fp-faq-item {
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.fp-faq-item__q {
  width: 100%;
  background: none;
  border: none;
  color: var(--clr-white);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: left;
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: inherit;
  transition: color var(--transition);
}
.fp-faq-item__q:hover {
  color: var(--clr-green);
}
.fp-faq-item__q::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2398c453'%3E%3Cpath fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z' clip-rule='evenodd'/%3E%3C/svg%3E")
    center/contain no-repeat;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.fp-faq-item.open .fp-faq-item__q::after {
  transform: rotate(180deg);
}
.fp-faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding var(--transition);
}
.fp-faq-item__a p {
  padding: 0 20px 16px;
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
}
.fp-faq-item.open .fp-faq-item__a {
  max-height: 600px;
}

.fp-footer {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  padding: 40px 0 24px;
}
.fp-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px 40px;
  align-items: start;
}
.fp-footer__logo img {
  height: 38px;
  width: auto;
  border-radius: 4px;
}
.fp-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}
.fp-footer__nav a {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  transition: color var(--transition);
}
.fp-footer__nav a:hover {
  color: var(--clr-green);
}
.fp-footer__payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.fp-footer__providers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
}
.fp-payment-badge,
.fp-provider-badge {
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--clr-text-muted);
  white-space: nowrap;
}
.fp-footer__bottom {
  grid-column: 1/-1;
  border-top: 1px solid var(--clr-border);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
  justify-content: space-between;
}
.fp-footer__copy {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  max-width: 680px;
}
.fp-footer__copy a {
  color: var(--clr-text-muted);
}
.fp-footer__copy a:hover {
  color: var(--clr-green);
}
.fp-footer__license {
  font-size: 0.74rem;
  color: #666;
  margin-top: 6px;
}
.fp-footer__18 {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #666;
  flex-shrink: 0;
}
.fp-footer__18-icon {
  width: 32px;
  height: 32px;
  background: var(--clr-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
  color: var(--clr-text-muted);
  flex-shrink: 0;
}

.fp-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--clr-surface);
  border-top: 2px solid var(--clr-green);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 20px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
}
.fp-widget__text {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.3;
}
.fp-widget__bonus {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--clr-green);
}
.fp-widget__btn {
  background: var(--clr-green);
  color: var(--clr-black);
  font-weight: 900;
  font-size: 0.95rem;
  padding: 11px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    background var(--transition),
    transform var(--transition);
}
.fp-widget__btn:hover {
  background: var(--clr-green-dark);
  transform: translateY(-2px);
}
.fp-widget__close {
  background: none;
  border: none;
  color: var(--clr-text-muted);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  transition: color var(--transition);
}
.fp-widget__close:hover {
  color: var(--clr-white);
}

body {
  padding-bottom: 72px;
}

.fp-sep {
  height: 1px;
  background: var(--clr-border);
  margin: 0 16px;
}
.fp-page {
  padding-bottom: 60px;
}

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

@media (max-width: 1024px) {
  .fp-header__inner {
    grid-template-columns: auto 1fr auto auto;
  }
  .fp-nav {
    display: none;
  }
}
@media (max-width: 768px) {
  .fp-header__inner {
    grid-template-columns: auto 1fr auto auto;
    gap: 10px;
    padding: 10px 14px;
  }
  .fp-nav {
    display: none;
  }
  .fp-burger {
    display: flex;
  }
  .fp-header__online {
    display: none;
  }
  .fp-logo img {
    height: 36px;
  }
  .fp-btn--login,
  .fp-btn--reg {
    font-size: 0.78rem;
    padding: 7px 12px;
  }
  .fp-appinfo__grid {
    grid-template-columns: 1fr;
  }
  .fp-footer__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .fp-block,
  .fp-mirror,
  .fp-winners,
  .fp-appinfo,
  .fp-demo,
  .fp-review,
  .fp-faq,
  .fp-footer__inner {
    margin: 0 8px;
  }
  .fp-hero__btns {
    flex-direction: column;
    align-items: center;
  }
  .fp-winners__list {
    grid-template-columns: 1fr;
  }
  .fp-widget {
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 12px;
  }
  .fp-widget__text {
    font-size: 0.78rem;
  }
  .fp-review {
    padding: 20px 16px;
  }
}
@media (max-width: 480px) {
  .fp-hero__title {
    font-size: 1.6rem;
  }
  .fp-btn--xl {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

.fp-gx7m2 {
}
.fp-q9p3n {
}
.fp-n2r8k {
  color: transparent;
  height: 0;
  overflow: hidden;
  position: absolute;
  width: 0;
  z-index: -1;
}
