:root {
  --bg: #3a3a3a;
  --hd-bg: #242424;
  --ft-bg: #242424;
  --primary: #306722;
  --primary-hover: #3a7e28;
  --secondary: #01a7e2;
  --secondary-hover: #0291c4;
  --text: #f0f0f0;
  --text-muted: #aaa;
  --text-dark: #1a1a1a;
  --card-bg: #2d2d2d;
  --card-bg2: #333;
  --border: rgba(255, 255, 255, 0.1);
  --border2: rgba(255, 255, 255, 0.06);
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --font: "Open Sans", sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: var(--secondary);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--secondary-hover);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul {
  list-style: none;
}
.wr8f2 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.ct7b1 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.row-fx {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hd9e3 {
  background: var(--hd-bg);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}
.hd-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hd-logo img {
  height: 80px;
  width: auto;
  transition: opacity var(--transition);
}
.hd-logo:hover img {
  opacity: 0.85;
}
.hd-nav-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
}
.hd-nav {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.hd-nav li a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 6px;
  transition:
    background var(--transition),
    color var(--transition);
}
.hd-nav li a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--secondary);
}
.nav-ico {
  width: 15px;
  height: 15px;
  fill: currentColor;
  flex-shrink: 0;
}
.hd-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.hd-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4caf50;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(76, 175, 80, 0);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 12px rgba(48, 103, 34, 0.4);
}
.btn-primary:hover {
  background: var(--primary-hover);
  color: #fff;
  box-shadow: 0 4px 20px rgba(48, 103, 34, 0.6);
}
.btn-secondary {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 2px 12px rgba(1, 167, 226, 0.3);
}
.btn-secondary:hover {
  background: var(--secondary-hover);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
  padding: 10px 22px;
}
.btn-outline:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}
.btn-sm {
  font-size: 0.82rem;
  padding: 9px 18px;
}
.btn-md {
  font-size: 0.92rem;
  padding: 11px 24px;
}
.btn-lg {
  font-size: 1rem;
  padding: 14px 32px;
}
.btn-xl {
  font-size: 1.1rem;
  padding: 16px 40px;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 4px;
  border-radius: 6px;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition:
    transform var(--transition),
    opacity 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);
}

.hn3f5 {
  position: relative;
  background: url("/taban.jpg") center/cover no-repeat;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hn3f5::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(24, 48, 16, 0.92) 0%,
    rgba(36, 36, 36, 0.75) 60%,
    rgba(1, 60, 100, 0.5) 100%
  );
}
.hn-content {
  position: relative;
  z-index: 2;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}
.hn-text {
  flex: 1;
  min-width: 280px;
}
.hn-badge {
  display: inline-block;
  background: var(--secondary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.hn-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #fff;
}
.hn-title span {
  color: #7ddf7d;
}
.hn-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  max-width: 460px;
}
.hn-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hn-bonus-tile {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  min-width: 260px;
  text-align: center;
  flex-shrink: 0;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}
.hn-bonus-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}
.hn-bonus-amount {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #7ddf7d;
  line-height: 1;
  margin-bottom: 4px;
}
.hn-bonus-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}
.hn-bonus-extra {
  background: rgba(48, 103, 34, 0.3);
  border: 1px solid rgba(48, 103, 34, 0.5);
  border-radius: 8px;
  padding: 10px 16px;
  margin-bottom: 20px;
  font-size: 0.85rem;
}
.hn-bonus-extra strong {
  color: #7ddf7d;
}
.hn-bonus-cta {
  width: 100%;
}
.hn-bonus-tnc {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 10px;
}

.sc2k7 {
  padding: 60px 0;
}
.sc-head {
  text-align: center;
  margin-bottom: 40px;
}
.sc-tag {
  display: inline-block;
  background: rgba(1, 167, 226, 0.15);
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}
.sc-title {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.sc-subtitle {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 0.95rem;
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.adv-tile {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}
.adv-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(1, 167, 226, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.adv-ico-wrap {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  background: linear-gradient(
    135deg,
    rgba(48, 103, 34, 0.3),
    rgba(1, 167, 226, 0.2)
  );
}
.adv-ico {
  width: 28px;
  height: 28px;
  fill: var(--secondary);
}
.adv-tile h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}
.adv-tile p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.mir-blk {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 0;
}
.mir-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.mir-time-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(1, 167, 226, 0.1);
  border: 1px solid rgba(1, 167, 226, 0.2);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.85rem;
}
.mir-time-ico {
  width: 16px;
  height: 16px;
  fill: var(--secondary);
}
.mir-time-text {
  color: var(--text-muted);
}
.mir-time-val {
  color: #fff;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.tbl-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.mir-tbl {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}
.mir-tbl th {
  background: rgba(48, 103, 34, 0.25);
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.mir-tbl td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border2);
  font-size: 0.9rem;
  vertical-align: middle;
}
.mir-tbl tr:last-child td {
  border-bottom: none;
}
.mir-tbl tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}
.mir-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 600;
}
.mir-status.active {
  color: #4caf50;
}
.mir-status.active::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4caf50;
  display: inline-block;
}
.mir-link {
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.85rem;
}
.mir-link:hover {
  text-decoration: underline;
}

.app-blk {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.app-tbl-wrap {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  overflow: hidden;
}
.app-tbl-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.app-tbl-ico {
  width: 20px;
  height: 20px;
  fill: var(--secondary);
}
.app-tbl {
  width: 100%;
  border-collapse: collapse;
}
.app-tbl tr {
  border-bottom: 1px solid var(--border2);
}
.app-tbl tr:last-child {
  border-bottom: none;
}
.app-tbl td {
  padding: 10px 12px;
  font-size: 0.875rem;
}
.app-tbl td:first-child {
  color: var(--text-muted);
  width: 45%;
}
.app-tbl td:last-child {
  color: #fff;
  font-weight: 600;
}
.app-dl-wrap {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.app-dl-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.app-dl-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.app-dl-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.app-dl-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card-bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  transition:
    background var(--transition),
    border-color var(--transition);
}
.app-dl-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--secondary);
  color: #fff;
}
.app-dl-ico {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.app-dl-txt small {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 400;
}
.app-dl-txt strong {
  font-size: 0.95rem;
}
.app-version-note {
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 10px;
  background: rgba(48, 103, 34, 0.1);
  border-radius: 6px;
  border-left: 3px solid var(--primary);
}

.slts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.slt-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.slt-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}
.slt-img {
  background: linear-gradient(135deg, #1a2a3a 0%, #0d3d1a 50%, #2a1a3a 100%);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.slt-img-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.slt-provider-tag {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.6);
  color: var(--secondary);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}
.slt-body {
  padding: 16px;
}
.slt-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.slt-rtp {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.slt-rtp span {
  color: #7ddf7d;
  font-weight: 600;
}
.slt-btn {
  width: 100%;
  font-size: 0.85rem;
  padding: 9px;
}

.demo-blk {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.demo-header {
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
}
.demo-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.demo-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.demo-frame-wrap {
  position: relative;
  aspect-ratio: 16/9;
  background: #111;
}
.demo-frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.demo-overlay-msg {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(135deg, #0d1a0d, #0d1a2d);
  color: rgba(255, 255, 255, 0.85);
}
.demo-overlay-ico {
  font-size: 3rem;
  line-height: 1;
}
.demo-overlay-txt {
  font-size: 1rem;
  font-weight: 600;
}
.demo-footer {
  padding: 16px 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.demo-note {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.rv-blk {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.rv-author-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(1, 167, 226, 0.06);
  border-radius: 10px;
  margin-bottom: 24px;
  border: 1px solid rgba(1, 167, 226, 0.1);
}
.rv-author-ava {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.rv-author-name {
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
}
.rv-author-bio {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.rv-author-links {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.rv-author-link {
  font-size: 0.75rem;
  color: var(--secondary);
}
.rv-content-placeholder {
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px dashed rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.rv-content-placeholder code {
  font-family: monospace;
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 8px;
  border-radius: 4px;
  color: #7ddf7d;
}
.rv-blk .tx6q2 h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin: 24px 0 12px;
}
.rv-blk .tx6q2 h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary);
  margin: 20px 0 10px;
}
.rv-blk .tx6q2 p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}
.rv-blk .tx6q2 ul,
.rv-blk .tx6q2 ol {
  padding-left: 20px;
  margin-bottom: 14px;
}
.rv-blk .tx6q2 ul li,
.rv-blk .tx6q2 ol li {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 6px;
}
.rv-blk .tx6q2 ul {
  list-style: disc;
}
.rv-blk .tx6q2 ol {
  list-style: decimal;
}
.rv-blk .tx6q2 table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  overflow-x: auto;
  display: block;
}
.rv-blk .tx6q2 table th {
  background: rgba(48, 103, 34, 0.2);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--border);
  font-size: 0.85rem;
}
.rv-blk .tx6q2 table td {
  padding: 10px 14px;
  border: 1px solid var(--border2);
  color: var(--text-muted);
  font-size: 0.85rem;
}
.rv-blk .tx6q2 table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.03);
}
.rv-blk .tx6q2 a {
  color: var(--secondary);
}
.rv-blk .tx6q2 blockquote {
  border-left: 4px solid var(--secondary);
  padding: 12px 20px;
  background: rgba(1, 167, 226, 0.06);
  border-radius: 0 8px 8px 0;
  margin: 16px 0;
  color: var(--text-muted);
  font-style: italic;
}
.rv-blk .tx6q2 strong {
  color: #fff;
  font-weight: 700;
}

.fq8d5 {
  padding: 60px 0;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  transition: color var(--transition);
  user-select: none;
}
.faq-q:hover {
  color: var(--secondary);
}
.faq-q svg {
  flex-shrink: 0;
  transition: transform var(--transition);
  fill: currentColor;
  width: 20px;
  height: 20px;
}
.faq-item.open .faq-q svg {
  transform: rotate(180deg);
}
.faq-item.open .faq-q {
  color: var(--secondary);
}
.faq-a {
  display: none;
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  border-top: 1px solid var(--border2);
}
.faq-a p {
  padding-top: 16px;
}
.faq-item.open .faq-a {
  display: block;
}

.rsp-blk {
  background: linear-gradient(
    135deg,
    rgba(48, 103, 34, 0.15),
    rgba(1, 60, 100, 0.15)
  );
  border: 1px solid rgba(48, 103, 34, 0.3);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.rsp-top {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}
.rsp-ico-wrap {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(48, 103, 34, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rsp-ico {
  width: 28px;
  height: 28px;
  fill: #7ddf7d;
}
.rsp-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.rsp-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.rsp-rules {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}
.rsp-rule {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  border: 1px solid var(--border2);
}
.rsp-rule-ico {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.rsp-rule-txt {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.rsp-rule-txt strong {
  display: block;
  color: #fff;
  font-size: 0.85rem;
  margin-bottom: 2px;
}
.rsp-links-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.rsp-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.rsp-link-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  transition:
    background var(--transition),
    border-color var(--transition);
}
.rsp-link-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--secondary);
  color: #fff;
}
.rsp-link-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex-shrink: 0;
}

.ft6a0 {
  background: var(--ft-bg);
  margin-top: auto;
}
.ft-inner {
  padding: 48px 20px 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.ft-top {
  align-items: flex-start;
  gap: 32px;
}
.ft-logo-col {
  min-width: 180px;
  max-width: 220px;
  flex-shrink: 0;
}
.ft-logo-link img {
  height: 84px;
  width: auto;
}
.ft-country {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.ft-socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.ft-social-link {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  transition:
    background var(--transition),
    border-color var(--transition);
}
.ft-social-link:hover {
  background: rgba(1, 167, 226, 0.15);
  border-color: var(--secondary);
}
.ft-social-ico {
  width: 16px;
  height: 16px;
  fill: var(--text-muted);
  transition: fill var(--transition);
}
.ft-social-link:hover .ft-social-ico {
  fill: var(--secondary);
}
.ft-email {
  margin-top: 12px;
}
.ft-email-link {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.ft-email-link:hover {
  color: var(--secondary);
}
.ft-nav-col {
  flex: 1;
  min-width: 140px;
}
.ft-nav-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--secondary);
  margin-bottom: 14px;
}
.ft-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ft-link {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.ft-link:hover {
  color: #fff;
}
.ft-divider {
  height: 1px;
  background: var(--border);
  margin: 28px 0;
}
.ft-section-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.ft-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.ft-pay-badge,
.ft-prov-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}
.ft-lic-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(0, 48, 135, 0.15);
  border: 1px solid rgba(0, 48, 135, 0.3);
  border-radius: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.ft-lic-ico {
  width: 40px;
  height: 20px;
  flex-shrink: 0;
}
.ft-resp-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(48, 103, 34, 0.1);
  border: 1px solid rgba(48, 103, 34, 0.25);
  border-radius: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  transition: background var(--transition);
}
.ft-resp-link:hover {
  background: rgba(48, 103, 34, 0.2);
  color: #fff;
}
.ft-payments,
.ft-providers,
.ft-license-row,
.ft-resp-gaming {
  margin-bottom: 20px;
}
.ft-legal {
  text-align: center;
}
.ft-legal p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
  margin-bottom: 6px;
}
.ft-legal-text {
  max-width: 800px;
  margin: 0 auto 6px;
}
.ft-phone {
  color: rgba(255, 255, 255, 0.5);
}

.wgt-promo {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity var(--transition),
    transform var(--transition);
  transform: translateX(-50%) translateY(20px);
}
.wgt-promo.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.wgt-inner {
  background: linear-gradient(135deg, #1a3a10, #0d2a40);
  border: 1px solid rgba(48, 103, 34, 0.5);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 280px;
  max-width: 340px;
  position: relative;
}
.wgt-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  transition: color var(--transition);
}
.wgt-close:hover {
  color: #fff;
}
.wgt-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.5);
}
.wgt-bonus-text {
  font-size: 1.3rem;
  font-weight: 800;
  color: #7ddf7d;
}
.wgt-code-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 8px 14px;
}
.wgt-code-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
}
.wgt-code {
  font-family: monospace;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}
.wgt-copy {
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition);
}
.wgt-copy:hover {
  background: var(--secondary-hover);
}
.wgt-cta {
  width: 100%;
  font-size: 0.9rem;
  padding: 11px 20px;
}

.pg-h1 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 800;
  color: #fff;
  padding: 20px 20px 0;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.mn4r1 {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 0 40px;
}
.tx6q2 {
  padding: 0;
}
.info-content {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin: 24px 20px 40px;
  padding: 36px;
}
.info-tx p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}
.info-tx h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 24px 0 12px;
}
.info-tx ul {
  padding-left: 20px;
  margin-bottom: 14px;
  list-style: disc;
}
.info-tx ul li {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 6px;
}
.info-tx a {
  color: var(--secondary);
}
.pg-body {
  padding: 0;
}
.pg-body-info {
  padding: 0 20px;
}

.slts-slider-wrap {
  position: relative;
}
.slts-slider-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.slts-nav {
  display: none;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
}
.slts-nav-btn {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px;
  color: #fff;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background var(--transition);
}
.slts-nav-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.promo-bar {
  background: linear-gradient(90deg, var(--primary), #1e6b00);
  padding: 12px 20px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}
.promo-bar a {
  color: #fff;
  text-decoration: underline;
}

.d-hidden {
  display: none !important;
}

@media (max-width: 900px) {
  .hd-nav-wrap {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--hd-bg);
    border-top: 1px solid var(--border);
    z-index: 200;
  }
  .hd-nav-wrap.open {
    display: flex;
    flex-direction: column;
  }
  .hd-inner {
    flex-wrap: wrap;
    position: relative;
  }
  .hd-nav {
    flex-direction: column;
    padding: 12px 16px;
    gap: 2px;
    width: 100%;
  }
  .hd-nav li a {
    font-size: 0.9rem;
    padding: 12px 14px;
  }
  .burger {
    display: flex;
  }
  .app-blk {
    grid-template-columns: 1fr;
  }
  .slts-grid {
    grid-template-columns: 1fr;
    overflow: hidden;
  }
  .slts-slider-inner {
    grid-template-columns: 1fr;
  }
  .slts-nav {
    display: flex;
  }
}
@media (max-width: 640px) {
  .hn-content {
    flex-direction: column;
    gap: 24px;
  }
  .hn-bonus-tile {
    width: 100%;
    min-width: unset;
  }
  .hn-btns {
    flex-direction: column;
    width: 100%;
  }
  .hn-btns .btn {
    width: 100%;
    justify-content: center;
  }
  .adv-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ft-top {
    flex-direction: column;
    gap: 24px;
  }
  .ft-logo-col {
    max-width: 100%;
  }
  .slts-grid {
    grid-template-columns: 1fr;
  }
  .sc2k7 {
    padding: 40px 0;
  }
  .rv-blk {
    padding: 22px;
  }
  .rsp-blk {
    padding: 22px;
  }
  .mir-blk {
    padding: 20px;
  }
}
@media (max-width: 400px) {
  .adv-grid {
    grid-template-columns: 1fr;
  }
  .hd-online {
    display: none;
  }
  .btn-sm {
    padding: 8px 14px;
    font-size: 0.78rem;
  }
}

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

.c2f8e {
  position: relative;
}
.a3d7b {
  font-size: 0;
  line-height: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
.b9e4f {
  display: inline-block;
  border: 0;
}
#wc3a1 {
  position: absolute;
  left: -9999px;
}
.d5f2c,
.e8a3b {
  display: none;
}

.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;
}
.section-alt {
  background: rgba(0, 0, 0, 0.15);
}
.sc-badge-new {
  background: rgba(76, 175, 80, 0.2);
  color: #7ddf7d;
  border: 1px solid rgba(76, 175, 80, 0.3);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


@media (max-width: 900px) {
  .hd-inner {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto auto !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    min-height: 64px !important;
    padding: 8px 12px !important;
  }

  .hd-logo-wrap {
    min-width: 0 !important;
    max-width: 145px !important;
  }

  .hd-logo {
    display: inline-flex !important;
    align-items: center !important;
    min-width: 0 !important;
  }

  .hd-logo img {
    width: auto !important;
    height: auto !important;
    max-width: 135px !important;
    max-height: 42px !important;
    object-fit: contain !important;
  }

  .hd-actions {
    grid-column: 2 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 0 !important;
    margin: 0 !important;
    min-width: 0 !important;
  }

  .hd-online,
  .hd-login-btn {
    display: none !important;
  }

  .hd-register-btn {
    display: inline-flex !important;
    min-height: 38px !important;
    padding: 8px 11px !important;
    font-size: 13px !important;
    white-space: nowrap !important;
  }

  .burger {
    grid-column: 3 !important;
    display: inline-flex !important;
    width: 40px !important;
    height: 40px !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 5px !important;
    padding: 8px !important;
    margin: 0 !important;
    position: relative !important;
    z-index: 502 !important;
  }

  .hd-nav-wrap {
    position: fixed !important;
    top: 64px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: calc(100dvh - 64px) !important;
    padding: 12px !important;
    background: var(--hd-bg) !important;
    overflow-y: auto !important;
    z-index: 500 !important;
  }

  .hd-nav-wrap:not(.open) {
    display: none !important;
    pointer-events: none !important;
  }

  .hd-nav-wrap.open {
    display: flex !important;
    pointer-events: auto !important;
  }

  .hd-nav {
    width: 100% !important;
    padding: 0 !important;
  }

  .hd-nav li,
  .hd-nav li a {
    width: 100% !important;
  }

  .hd-nav li a {
    min-height: 46px !important;
    padding: 11px 12px !important;
    border: 1px solid var(--border) !important;
    background: rgba(255,255,255,.035) !important;
  }
}

@media (max-width: 420px) {
  .hd-inner {
    gap: 6px !important;
    padding: 8px 10px !important;
  }

  .hd-logo-wrap {
    max-width: 110px !important;
  }

  .hd-logo img {
    max-width: 105px !important;
    max-height: 36px !important;
  }

  .hd-register-btn {
    min-height: 36px !important;
    padding: 7px 9px !important;
    font-size: 12px !important;
  }

  .burger {
    width: 38px !important;
    height: 38px !important;
  }
}

.demo-frame-ready {
  aspect-ratio: auto !important;
  min-height: 330px !important;
  padding: 0 !important;
  overflow: hidden !important;
  background: radial-gradient(circle at 50% 20%, #123352 0%, #071927 42%, #08110d 100%) !important;
}

.instant-demo-slot {
  width: 100% !important;
  min-height: 330px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 30px 22px !important;
  box-sizing: border-box !important;
}

.instant-demo-machine {
  width: min(100%, 720px) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 22px !important;
}

.instant-demo-reels {
  width: 100% !important;
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

.instant-demo-reel {
  min-width: 0 !important;
  height: 110px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 2px solid rgba(1, 167, 226, .35) !important;
  border-radius: 12px !important;
  background: linear-gradient(180deg, #f7f7f7 0%, #cfd8df 52%, #f7f7f7 100%) !important;
  box-shadow: inset 0 0 18px rgba(0,0,0,.18), 0 8px 28px rgba(0,0,0,.22) !important;
  overflow: hidden !important;
}

.instant-demo-reel span {
  display: block !important;
  font-size: 3rem !important;
  line-height: 1 !important;
  transition: transform .08s linear !important;
}

.instant-demo-reel.is-spinning span {
  transform: translateY(5px) scale(.92) !important;
}

.instant-demo-status {
  min-height: 28px !important;
  color: rgba(255,255,255,.86) !important;
  font-size: .95rem !important;
  font-weight: 600 !important;
  text-align: center !important;
}

.instant-demo-spin {
  min-width: 210px !important;
}

@media (max-width: 640px) {
  .demo-header {
    padding: 18px 16px !important;
  }

  .demo-frame-ready,
  .instant-demo-slot {
    min-height: 290px !important;
  }

  .instant-demo-slot {
    padding: 24px 12px !important;
  }

  .instant-demo-machine {
    gap: 18px !important;
  }

  .instant-demo-reels {
    gap: 6px !important;
  }

  .instant-demo-reel {
    height: 82px !important;
    border-radius: 9px !important;
  }

  .instant-demo-reel span {
    font-size: 2rem !important;
  }

  .instant-demo-spin {
    width: min(100%, 240px) !important;
    min-width: 0 !important;
  }

  .demo-footer {
    padding: 14px 16px !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .demo-footer .btn {
    width: 100% !important;
  }
}
