*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --c-white: #fff;
  --c-bg: #f2f2f2;
  --c-green: #2fde1d;
  --c-blue: #3e89f1;
  --c-dark: #1a1a2e;
  --c-text: #222;
  --c-text-muted: #555;
  --c-border: #ddd;
  --c-card: #fff;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.13);
  --transition: 0.22s ease;
  --font:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", "Noto Color Emoji";
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--c-blue);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: #1a6fd4;
}
ul {
  list-style: none;
}
.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.container--full {
  max-width: 100%;
  padding: 0;
}
.box {
  position: relative;
}

.b4x9 {
  display: block;
}
.xk7m2 {
  visibility: visible;
}
.f3ql {
  opacity: 1;
}
.j9wz {
  position: relative;
}

.header {
  background: var(--c-white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 20px;
}
.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  height: 72px;
}
.header__logo img {
  height: 44px;
  width: auto;
}
.header__logo {
  display: flex;
  align-items: center;
}
.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.header__nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: var(--c-text);
  font-size: 0.92rem;
  font-weight: 500;
  transition:
    background var(--transition),
    color var(--transition);
}
.header__nav a:hover,
.header__nav a.active {
  background: rgba(62, 137, 241, 0.08);
  color: var(--c-blue);
}
.header__nav svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__online {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-right: 8px;
}
.header__online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2fde1d;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 4px;
  border-radius: 6px;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all var(--transition);
}
.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);
}
.mobile-actions {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}
.btn:active {
  transform: translateY(0);
}
.btn--login {
  background: var(--c-green);
  color: #0d5c06;
}
.btn--login:hover {
  background: #26c916;
  color: #0d5c06;
}
.btn--signup {
  background: var(--c-blue);
  color: #fff;
}
.btn--signup:hover {
  background: #2a78e4;
  color: #fff;
}
.btn--bonus {
  background: linear-gradient(135deg, #f7971e, #ffd200);
  color: #5a3a00;
  font-weight: 700;
}
.btn--bonus:hover {
  background: linear-gradient(135deg, #f08a10, #f0c800);
  color: #5a3a00;
}
.btn--play {
  background: var(--c-blue);
  color: #fff;
  width: 100%;
}
.btn--play:hover {
  background: #2a78e4;
  color: #fff;
}
.btn--demo {
  background: transparent;
  border: 2px solid var(--c-blue);
  color: var(--c-blue);
  font-size: 0.85rem;
  padding: 7px 14px;
}
.btn--demo:hover {
  background: var(--c-blue);
  color: #fff;
}
.btn--lg {
  padding: 14px 32px;
  font-size: 1.05rem;
  border-radius: var(--radius);
}
.btn--outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.btn--outline:hover {
  background: #fff;
  color: var(--c-blue);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: #0f1b3d;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("/b.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 27, 61, 0.92) 40%,
    rgba(62, 137, 241, 0.55)
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
.hero__text {
}
.hero__badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero__title span {
  color: #ffd200;
}
.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  max-width: 520px;
}
.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero__bonus-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  min-width: 220px;
  flex-shrink: 0;
}
.hero__bonus-card .bonus-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 6px;
}
.hero__bonus-card .bonus-amount {
  font-size: 2rem;
  font-weight: 800;
  color: #ffd200;
  line-height: 1;
}
.hero__bonus-card .bonus-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 8px 0 16px;
}
.hero__bonus-card .bonus-nd {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 8px;
}

.section {
  padding: 60px 0;
}
.section--alt {
  background: #e8edf4;
}
.section__header {
  text-align: center;
  margin-bottom: 40px;
}
.section__header h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--c-dark);
  margin-bottom: 10px;
}
.section__header p {
  color: var(--c-text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.advantage-card {
  background: var(--c-card);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.advantage-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    rgba(62, 137, 241, 0.12),
    rgba(62, 137, 241, 0.06)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.advantage-card__icon svg {
  width: 26px;
  height: 26px;
  color: var(--c-blue);
}
.advantage-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-dark);
}
.advantage-card p {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  line-height: 1.55;
}

.mirrors-block {
  background: var(--c-card);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  margin-bottom: 8px;
}
.mirrors-block__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.mirrors-block__header h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--c-dark);
}
.mirrors-time {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(47, 222, 29, 0.08);
  border: 1px solid rgba(47, 222, 29, 0.2);
  padding: 6px 14px;
  border-radius: 20px;
}
.mirrors-time .dot-live {
  width: 7px;
  height: 7px;
  background: #2fde1d;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
table thead th {
  background: var(--c-dark);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
}
table thead th:first-child {
  border-radius: 8px 0 0 0;
}
table thead th:last-child {
  border-radius: 0 8px 0 0;
}
table tbody tr {
  transition: background var(--transition);
}
table tbody tr:nth-child(even) {
  background: #f8f9fc;
}
table tbody tr:hover {
  background: rgba(62, 137, 241, 0.05);
}
table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--c-border);
  vertical-align: middle;
}
table tbody td a {
  color: var(--c-blue);
  font-weight: 600;
}
table tbody td a:hover {
  text-decoration: underline;
}
.mirror-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #16a34a;
}
.mirror-status svg {
  width: 14px;
  height: 14px;
}
.mirror-speed {
  font-size: 0.82rem;
  color: var(--c-text-muted);
}

.winners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.winner-item {
  background: var(--c-card);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform var(--transition);
}
.winner-item:hover {
  transform: translateX(4px);
}
.winner-rank {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-blue), #1a6fd4);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.winner-rank--1 {
  background: linear-gradient(135deg, #ffd200, #f7971e);
}
.winner-rank--2 {
  background: linear-gradient(135deg, #c0c0c0, #888);
}
.winner-rank--3 {
  background: linear-gradient(135deg, #cd7f32, #a0522d);
}
.winner-info {
  flex: 1;
  min-width: 0;
}
.winner-nick {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--c-dark);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.winner-game {
  font-size: 0.78rem;
  color: var(--c-text-muted);
}
.winner-amount {
  font-weight: 800;
  font-size: 1rem;
  color: #16a34a;
  white-space: nowrap;
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.bonus-card {
  background: linear-gradient(135deg, #0f1b3d 0%, #1a2f5e 100%);
  border-radius: var(--radius);
  padding: 32px 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}
.bonus-card:hover {
  transform: translateY(-4px);
}
.bonus-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}
.bonus-card__tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.bonus-card__title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #ffd200;
}
.bonus-card__amount {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 4px;
}
.bonus-card__sub {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}
.bonus-card__terms {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 16px;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.slot-card {
  background: var(--c-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.slot-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.slot-card__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, #0f1b3d, #1a3a6e);
}
.slot-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.slot-card:hover .slot-card__img img {
  transform: scale(1.05);
}
.slot-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(15, 27, 61, 0.8);
  color: #ffd200;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}
.slot-card__body {
  padding: 16px;
}
.slot-card__name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--c-dark);
  margin-bottom: 3px;
}
.slot-card__provider {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  margin-bottom: 14px;
}
.slot-card__btns {
  display: flex;
  gap: 8px;
}
.slot-card__btns .btn--play {
  font-size: 0.85rem;
  padding: 9px 14px;
}
.slot-card__btns .btn--demo {
  font-size: 0.78rem;
  padding: 7px 12px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 40, 0.82);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: #0f1b3d;
  border-radius: var(--radius);
  width: 100%;
  max-width: 840px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform var(--transition);
}
.modal-overlay.active .modal {
  transform: scale(1);
}
.modal__header {
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.modal__title {
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
}
.modal__close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  padding: 0 4px;
  transition: color var(--transition);
}
.modal__close:hover {
  color: #fff;
}
.modal__frame {
  flex: 1;
  min-height: 420px;
  background: #000;
}
.modal__frame iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}
.modal__footer {
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  gap: 12px;
  flex-wrap: wrap;
}
.modal__footer p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  flex: 1;
}

.demo-section {
  background: var(--c-dark);
  padding: 60px 0;
}
.demo-section .section__header h2,
.demo-section .section__header p {
  color: #fff;
}
.demo-section .section__header p {
  color: rgba(255, 255, 255, 0.65);
}
.demo-frame-wrap {
  border-radius: var(--radius);
  aspect-ratio: 16/9;
  background: #000;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.demo-frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.review-block {
  background: var(--c-card);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.review-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-border);
}
.review-author__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-blue), #1a6fd4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.review-author__name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--c-dark);
}
.review-author__bio {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  margin-top: 3px;
}
.review-author__links {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.review-author__links a {
  font-size: 0.78rem;
  color: var(--c-blue);
  text-decoration: none;
}
.review-author__links a:hover {
  text-decoration: underline;
}
.review-content h2,
.review-content h3,
.review-content h4 {
  font-weight: 700;
  color: var(--c-dark);
  margin: 24px 0 10px;
}
.review-content h2 {
  font-size: 1.4rem;
}
.review-content h3 {
  font-size: 1.15rem;
}
.review-content p {
  color: var(--c-text);
  margin-bottom: 14px;
  line-height: 1.7;
}
.review-content ul,
.review-content ol {
  padding-left: 22px;
  margin-bottom: 14px;
  color: var(--c-text);
}
.review-content ul {
  list-style: disc;
}
.review-content ol {
  list-style: decimal;
}
.review-content li {
  margin-bottom: 6px;
  line-height: 1.65;
}
.review-content table {
  margin-bottom: 16px;
}
.review-content a {
  color: var(--c-blue);
}
.review-content strong {
  font-weight: 700;
}
.review-content em {
  font-style: italic;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--c-card);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--c-dark);
  transition: color var(--transition);
  user-select: none;
}
.faq-question:hover {
  color: var(--c-blue);
}
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(62, 137, 241, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform var(--transition),
    background var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--c-blue);
}
.faq-item.open .faq-icon svg {
  color: #fff;
}
.faq-icon svg {
  width: 14px;
  height: 14px;
  color: var(--c-blue);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
}
.faq-item.open .faq-answer {
  max-height: 600px;
}
.faq-answer__inner {
  padding: 0 24px 20px;
  color: var(--c-text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.footer {
  background: var(--c-white);
  border-top: 1px solid var(--c-border);
  padding: 48px 0 24px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer__logo img {
  height: 36px;
}
.footer__flag {
  font-size: 1.5rem;
}
.footer__desc {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  line-height: 1.65;
  max-width: 300px;
}
.footer__col h4 {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--c-dark);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer__col ul li {
  margin-bottom: 9px;
}
.footer__col ul li a {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  transition: color var(--transition);
}
.footer__col ul li a:hover {
  color: var(--c-blue);
}
.footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(62, 137, 241, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.footer__social-link:hover {
  background: var(--c-blue);
}
.footer__social-link:hover svg {
  color: #fff;
}
.footer__social-link svg {
  width: 18px;
  height: 18px;
  color: var(--c-blue);
}
.footer__divider {
  height: 1px;
  background: var(--c-border);
  margin-bottom: 28px;
}
.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-bottom: 28px;
}
.footer__badges-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__badges-label {
  font-size: 0.72rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}
.footer__badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f4f6f9;
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-text-muted);
  white-space: nowrap;
}
.badge-pill svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.badge-pill--adm {
  background: #0056b3;
  color: #fff;
  border-color: #0056b3;
}
.badge-pill--green {
  background: rgba(22, 163, 74, 0.08);
  border-color: rgba(22, 163, 74, 0.25);
  color: #15803d;
}
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.footer__copyright {
  font-size: 0.82rem;
  color: var(--c-text-muted);
}
.footer__legal {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  max-width: 800px;
  line-height: 1.55;
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  background: linear-gradient(90deg, #0f1b3d, #1a3a6e);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.18);
  transform: translateY(100%);
  animation: slide-widget 0.6s 0.8s ease forwards;
}
@keyframes slide-widget {
  to {
    transform: translateY(0);
  }
}
.widget-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  font-size: 1.3rem;
  padding: 0;
  line-height: 1;
  transition: color var(--transition);
  flex-shrink: 0;
}
.widget-close:hover {
  color: #fff;
}
.widget-text {
  flex: 1;
  min-width: 0;
}
.widget-text strong {
  display: block;
  color: #ffd200;
  font-size: 0.95rem;
  font-weight: 800;
}
.widget-text span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
}

.slider-wrap {
  position: relative;
  overflow: hidden;
}
.slider-track {
  display: flex;
  transition: transform 0.4s ease;
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 16px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-border);
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition);
}
.slider-dot.active {
  background: var(--c-blue);
  transform: scale(1.3);
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  color: var(--c-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.slider-btn:hover {
  background: var(--c-blue);
  color: #fff;
  border-color: var(--c-blue);
}
.slider-btn--prev {
  left: 0;
}
.slider-btn--next {
  right: 0;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  .header__nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--c-white);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    gap: 2px;
  }
  .header__nav.open {
    display: flex;
  }
  .header__nav a {
    padding: 12px 16px;
  }
  .header__inner {
    grid-template-columns: auto 1fr auto;
  }
  .burger {
    display: flex;
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .hero__content {
    grid-template-columns: 1fr;
  }
  .hero__bonus-card {
    display: none;
  }
  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .header__inner {
    grid-template-columns: auto 1fr auto auto;
  }
  .header__online {
    display: none;
  }
  .hero {
    min-height: auto;
  }
  .hero__title {
    font-size: 1.8rem;
  }
  .hero__btns {
    flex-direction: column;
  }
  .btn--lg {
    width: 100%;
    text-align: center;
  }
  .footer__top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .slots-grid {
    grid-template-columns: 1fr;
  }
  .winners-grid {
    grid-template-columns: 1fr;
  }
  .modal__frame iframe {
    height: 280px;
  }
  .review-block {
    padding: 24px;
  }
  .mirrors-block {
    padding: 20px;
  }
  .section {
    padding: 40px 0;
  }
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  .bonuses-grid {
    grid-template-columns: 1fr;
  }
  .footer__badges {
    flex-direction: column;
    align-items: flex-start;
  }
}

.m9x3 {
  content: "";
  display: table;
  clear: both;
}
.ql4 {
  display: inline;
}
.n2wf {
  float: left;
}
.b8yz {
  position: absolute;
  visibility: hidden;
  width: 0;
  height: 0;
  overflow: hidden;
}

.mobile-nav-login {
  display: none;
}

.demo-frame-wrap {
  position: relative !important;
  isolation: isolate !important;
}

.demo-frame-wrap iframe {
  position: relative !important;
  z-index: 2 !important;
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  display: block !important;
  pointer-events: auto !important;
}

.modal-overlay {
  display: none !important;
  pointer-events: none !important;
}

@media (max-width: 640px) {
  .header__inner {
    grid-template-columns: auto minmax(0, 1fr) auto !important;
  }

  .header__actions {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 6px !important;
    min-width: 0 !important;
  }

  .header__online {
    display: none !important;
  }

  .header-mobile-hide {
    display: none !important;
  }

  .header__actions .btn--signup {
    display: inline-flex !important;
    padding: 8px 10px !important;
    font-size: 0.78rem !important;
    white-space: nowrap !important;
  }

  .mobile-nav-login {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 44px !important;
    margin-top: 8px !important;
    padding: 11px 14px !important;
    border-radius: var(--radius-sm) !important;
    background: var(--c-green) !important;
    color: #0d5c06 !important;
    font-weight: 700 !important;
  }

  .burger {
    flex: 0 0 38px !important;
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
  }

  .demo-section {
    padding: 36px 0 !important;
  }

  .demo-frame-wrap {
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: 16 / 10 !important;
    min-height: 0 !important;
    border-radius: 12px !important;
    box-shadow: none !important;
  }

  .demo-frame-wrap iframe {
    width: 100% !important;
    height: 100% !important;
    min-height: 230px !important;
  }

  .sticky-widget {
    left: 8px !important;
    right: 8px !important;
    bottom: 8px !important;
    width: auto !important;
    max-width: calc(100% - 16px) !important;
    min-width: 0 !important;
    padding: 10px 12px !important;
    border-radius: 12px !important;
    box-sizing: border-box !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 30px !important;
    gap: 8px !important;
    align-items: center !important;
  }

  .widget-close {
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: 30px !important;
    height: 30px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
  }

  .widget-text {
    grid-column: 1 !important;
    grid-row: 1 !important;
    min-width: 0 !important;
  }

  .widget-text strong,
  .widget-text span {
    display: block !important;
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
  }

  .sticky-widget > .btn,
  .sticky-widget > a.btn {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    width: 100% !important;
    margin: 0 !important;
    min-height: 40px !important;
  }
}

@media (max-width: 380px) {
  .header__actions .btn--signup {
    padding: 7px 8px !important;
    font-size: 0.72rem !important;
  }

  .demo-frame-wrap {
    aspect-ratio: 4 / 3 !important;
  }

  .sticky-widget {
    left: 6px !important;
    right: 6px !important;
    bottom: 6px !important;
    max-width: calc(100% - 12px) !important;
  }
}

@media (max-width: 1024px) {
  .header {
    position: sticky !important;
    top: 0 !important;
    z-index: 10000 !important;
    overflow: visible !important;
  }

  .header__inner {
    position: static !important;
  }

  .header__nav {
    display: flex !important;
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    padding: 88px 20px 28px !important;
    background: #fff !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    overflow-y: auto !important;
    transform: translateX(100%) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition:
      transform 0.25s ease,
      opacity 0.2s ease,
      visibility 0.2s ease !important;
    z-index: 10001 !important;
  }

  .header__nav.open {
    transform: translateX(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .header__nav a {
    width: 100% !important;
    min-height: 48px !important;
    padding: 12px 14px !important;
    border-radius: 10px !important;
  }

  .burger {
    position: relative !important;
    z-index: 10002 !important;
  }

  .burger.active {
    position: fixed !important;
    top: 17px !important;
    right: 20px !important;
    background: #f2f2f2 !important;
  }
}

@media (max-width: 640px) {
  .header__actions .btn--login,
  .header__actions .header-mobile-hide {
    display: none !important;
  }

  .header__actions .btn--signup {
    display: inline-flex !important;
  }

  .demo-frame-wrap {
    aspect-ratio: 16 / 10 !important;
  }

  .demo-frame-wrap iframe {
    min-height: 0 !important;
  }

  .demo-play-cta {
    width: 100% !important;
    margin-top: 14px !important;
  }
}
