* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-bg: #0e0e0e;
  --color-header: #1b1c1d;
  --color-red: #e50539;
  --color-green: #28a909;
  --color-text: #e8e8e8;
  --color-text-dim: #a0a0a0;
  --color-card-bg: #1a1a1a;
  --color-border: #2a2a2a;
  --font-main: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.xv9k2-body.fixed {
  overflow: hidden;
}

.p7mz3-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container-zk3m7 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.header-z8k3m {
  background-color: var(--color-header);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-inner-p5k9n {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
}

.header-left-m7k4x {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo-link-h6k2v {
  display: flex;
  align-items: center;
}

.logo-img-n9k5p {
  height: 40px;
  width: auto;
  display: block;
}

.online-counter-x4k8m {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--color-text);
}

.online-icon-z7k3n {
  animation: pulse-z8m4k 2s ease-in-out infinite;
}

@keyframes pulse-z8m4k {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

.online-text-m5k9p {
  font-weight: 500;
}

.header-nav-q6k3m {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.header-nav-q6k3m.active {
  display: block;
}

.nav-overlay-p4k9x {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.nav-content-h7k2m {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85%;
  height: 100%;
  background: var(--color-header);
  padding: 60px 30px 30px;
  overflow-y: auto;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
  animation: slideIn-m7k3p 0.3s ease-out;
}

@keyframes slideIn-m7k3p {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

.nav-close-btn-z9k4n {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  color: var(--color-text);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background 0.3s;
}

.nav-close-btn-z9k4n:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-menu-b3k7m {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.nav-item-v6k9n {
  width: 100%;
}

.nav-link-m8k5p {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  color: var(--color-text);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s;
  font-weight: 500;
}

.nav-link-m8k5p:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-green);
}

.nav-icon-x4k7n {
  flex-shrink: 0;
}

.header-right-n8k4p {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-buttons-k5m9x {
  display: flex;
  gap: 10px;
}

.btn-l5x9m {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-family: var(--font-main);
}

.btn-demo-small-p7k3n {
  background: var(--color-red);
  color: white;
}

.btn-demo-small-p7k3n:hover {
  background: #c70432;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(229, 5, 57, 0.4);
}

.btn-money-small-h9k6m {
  background: var(--color-green);
  color: white;
}

.btn-money-small-h9k6m:hover {
  background: #229007;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40, 169, 9, 0.4);
}

.burger-menu-x3k8n {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background 0.3s;
}

.burger-menu-x3k8n:hover {
  background: rgba(255, 255, 255, 0.1);
}

.burger-line-m4k7p {
  width: 25px;
  height: 3px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s;
}

.qw8n5-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("/banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 20px;
}

.hero-jx4p9-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(14, 14, 14, 0.85) 0%, rgba(27, 28, 29, 0.75) 100%);
}

.hero-content-b2v8n {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
}

.hero-title-fg6k1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-desc-yt3m9 {
  font-size: 20px;
  margin-bottom: 35px;
  color: #e0e0e0;
  line-height: 1.5;
}

.hero-buttons-nh7k2 {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-demo-w4k8p {
  background: var(--color-red);
  color: white;
  padding: 16px 35px;
  font-size: 18px;
}

.btn-demo-w4k8p:hover {
  background: #c70432;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(229, 5, 57, 0.5);
}

.btn-money-d6h3n {
  background: var(--color-green);
  color: white;
  padding: 16px 35px;
  font-size: 18px;
}

.btn-money-d6h3n:hover {
  background: #229007;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(40, 169, 9, 0.5);
}

.breadcrumbs-m9k4v {
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  flex-wrap: wrap;
}

.bc-item-p3n7j {
  color: var(--color-green);
  text-decoration: none;
  transition: color 0.3s;
}

.bc-item-p3n7j:hover {
  color: var(--color-red);
}

.bc-sep-x5m2k {
  color: var(--color-text-dim);
}

.bc-current-q8v6n {
  color: var(--color-text);
}

.main-content-h4k9p {
  flex: 1;
  padding: 40px 0;
}

.section-title-y6k3m {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: white;
}

.pros-cons-v7n3m {
  margin-bottom: 60px;
}

.pc-grid-z9k4x {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.pros-block-m6h8n,
.cons-block-t5k2n {
  background: var(--color-card-bg);
  border-radius: 16px;
  padding: 30px;
  border: 2px solid var(--color-border);
}

.pc-title-j3n7k {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.pros-title-x9m5p {
  color: var(--color-green);
}

.cons-title-p7h4m {
  color: var(--color-red);
}

.pc-list-b4k8m {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pc-item-w2n9v {
  padding-left: 25px;
  position: relative;
  line-height: 1.6;
}

.pros-block-m6h8n .pc-item-w2n9v::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-green);
  font-weight: bold;
  font-size: 18px;
}

.cons-block-t5k2n .pc-item-w2n9v::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: var(--color-red);
  font-weight: bold;
  font-size: 18px;
}

.jackpots-n8m5k {
  margin-bottom: 60px;
}

.jackpot-grid-x4n8p {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.jackpot-card-m7k5n {
  background: var(--color-card-bg);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  border: 2px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.jackpot-card-m7k5n::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.jp-bronze-q3n9m::before {
  background: linear-gradient(90deg, #cd7f32, #8b4513);
}

.jp-silver-w6k4m::before {
  background: linear-gradient(90deg, #c0c0c0, #808080);
}

.jp-gold-t8n3k::before {
  background: linear-gradient(90deg, #ffd700, #ffa500);
}

.jp-badge-h8k2v {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.jp-amount-p4n7k {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 5px;
  color: var(--color-green);
  font-family: "Courier New", monospace;
}

.jp-currency-z9m6n {
  font-size: 20px;
  color: var(--color-text-dim);
  margin-bottom: 20px;
}

.jp-winners-b5k3m {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.jp-winners-title-x7n2k {
  font-size: 14px;
  margin-bottom: 12px;
  color: var(--color-text-dim);
  font-weight: 600;
}

.jp-winner-item-m3k8p {
  display: flex;
  gap: 8px;
  padding: 6px 0;
  font-size: 14px;
}

.jp-rank-n6h4m {
  color: var(--color-text-dim);
  font-weight: 600;
}

.jp-nick-v9k5n {
  color: var(--color-text);
}

.mobile-app-k9m4n {
  margin-bottom: 60px;
}

.app-content-v7k2m {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.app-table-wrapper-n5k8p {
  background: var(--color-card-bg);
  border-radius: 16px;
  padding: 30px;
  border: 2px solid var(--color-border);
  overflow-x: auto;
}

.app-table-z3m6k {
  width: 100%;
  border-collapse: collapse;
}

.app-table-z3m6k tr {
  border-bottom: 1px solid var(--color-border);
}

.app-table-z3m6k tr:last-child {
  border-bottom: none;
}

.app-td-label-h7n4m,
.app-td-value-p9k5n {
  padding: 14px 10px;
  text-align: left;
}

.app-td-label-h7n4m {
  font-weight: 600;
  color: var(--color-text-dim);
  width: 45%;
}

.app-td-value-p9k5n {
  color: var(--color-text);
  font-weight: 500;
}

.app-download-m4k7n {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.app-btn-x6n3k {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 25px;
  background: var(--color-card-bg);
  border: 2px solid var(--color-border);
  border-radius: 12px;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
}

.app-btn-x6n3k:hover {
  border-color: var(--color-green);
  background: rgba(40, 169, 9, 0.1);
  transform: translateY(-2px);
}

.app-icon-h5k8n {
  width: 24px;
  height: 24px;
}

.bonuses-j8k3m {
  margin-bottom: 60px;
}

.bonuses-slider-container-x9k5n {
  position: relative;
}

.bonuses-slider-p4k7m {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.bonus-card-m6k3n {
  background: var(--color-card-bg);
  border-radius: 16px;
  padding: 30px;
  border: 2px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: all 0.3s;
}

.bonus-card-m6k3n:hover {
  border-color: var(--color-green);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(40, 169, 9, 0.2);
}

.bonus-casino-h8k2v {
  font-size: 20px;
  font-weight: 700;
  color: white;
}

.bonus-amount-z5k9m {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-green);
}

.bonus-features-n7k4p {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.bonus-feat-item-w3k8m {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.5;
}

.bonus-btn-q6k3n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 25px;
  background: var(--color-green);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
  margin-top: auto;
}

.bonus-btn-q6k3n:hover {
  background: #229007;
  transform: translateY(-2px);
}

.slider-btn-x7k3p {
  display: none;
}

.demo-game-v6k9m {
  margin-bottom: 60px;
}

.demo-container-p8k4n {
  background: var(--color-card-bg);
  border-radius: 16px;
  padding: 30px;
  border: 2px solid var(--color-border);
}

.demo-frame-wrapper-z5k7m {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 25px;
}

.demo-iframe-n3k9m {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.demo-cta-m7k2n {
  text-align: center;
}

.demo-text-h9k5p {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--color-text);
}

.content-article-b4k9m {
  margin-bottom: 60px;
}

.article-meta-x6k3n {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 20px;
  background: var(--color-card-bg);
  border-radius: 12px;
  border: 2px solid var(--color-border);
  flex-wrap: wrap;
  gap: 15px;
}

.author-info-m8k5p {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar-n7k2m {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 18px;
}

.author-name-h4k7m {
  font-weight: 700;
  font-size: 16px;
  color: white;
}

.author-role-z8k3n {
  font-size: 14px;
  color: var(--color-text-dim);
}

.article-date-w6k4m {
  font-size: 14px;
  color: var(--color-text-dim);
}

.text-content-k5m8n {
  background: var(--color-card-bg);
  border-radius: 16px;
  padding: 40px;
  border: 2px solid var(--color-border);
  line-height: 1.8;
}

.text-content-k5m8n h1,
.text-content-k5m8n h2,
.text-content-k5m8n h3,
.text-content-k5m8n h4 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: white;
  font-weight: 700;
  line-height: 1.3;
}

.text-content-k5m8n h1 {
  font-size: 32px;
}

.text-content-k5m8n h2 {
  font-size: 28px;
}

.text-content-k5m8n h3 {
  font-size: 24px;
}

.text-content-k5m8n h4 {
  font-size: 20px;
}

.text-content-k5m8n p {
  margin-bottom: 18px;
}

.text-content-k5m8n ul,
.text-content-k5m8n ol {
  margin-bottom: 18px;
  padding-left: 30px;
}

.text-content-k5m8n li {
  margin-bottom: 10px;
}

.text-content-k5m8n a {
  color: var(--color-green);
  text-decoration: underline;
  transition: color 0.3s;
}

.text-content-k5m8n a:hover {
  color: var(--color-red);
}

.text-content-k5m8n table {
  width: 100%;
  margin: 25px auto;
  border-collapse: collapse;
  background: rgba(27, 28, 29, 0.5);
  border-radius: 8px;
  overflow: hidden;
}

.text-content-k5m8n th,
.text-content-k5m8n td {
  padding: 14px;
  text-align: left;
  border: 1px solid var(--color-border);
}

.text-content-k5m8n th {
  background: rgba(40, 169, 9, 0.2);
  font-weight: 700;
  color: white;
}

.text-content-k5m8n img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}

.faq-section-n9k4m {
  margin-bottom: 60px;
}

.faq-container-p7k3m {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item-x5k8n {
  background: var(--color-card-bg);
  border-radius: 12px;
  border: 2px solid var(--color-border);
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item-x5k8n:hover {
  border-color: var(--color-green);
}

.faq-question-h6k2n {
  padding: 20px 25px;
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  position: relative;
  color: white;
  user-select: none;
}

.faq-question-h6k2n::after {
  content: "+";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-green);
  transition: transform 0.3s;
}

.faq-active-m3k7p .faq-question-h6k2n::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer-z4k9m {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
}

.faq-active-m3k7p .faq-answer-z4k9m {
  max-height: 500px;
  padding: 0 25px 20px;
}

.faq-answer-z4k9m div {
  line-height: 1.7;
  color: var(--color-text);
}

.footer-h9k3m {
  background: var(--color-header);
  padding: 50px 0 20px;
  margin-top: auto;
}

.footer-inner-p6k8n {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-top-m5k9x {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer-col-x7k4n {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-logo-img-n4k9p {
  height: 35px;
  width: auto;
  display: block;
  margin-bottom: 10px;
}

.footer-desc-h8k5m {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-dim);
}

.footer-title-q9k6n {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.footer-menu-w5k3p {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link-p4k9n {
  color: var(--color-text);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-link-p4k9n:hover {
  color: var(--color-green);
}

.footer-middle-z8k4m {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 30px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.payments-title-x5k7m,
.licenses-title-w6k9n {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--color-text);
}

.payments-grid-h3k8n,
.licenses-grid-z4k7m {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.payment-item-m9k5p,
.license-item-n5k8x {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-icon-b7k3x,
.license-icon-h9k4p {
  width: 60px;
  height: auto;
}

.license-img-m3k9n {
  width: 60px;
  height: auto;
  filter: brightness(0.8);
}

.footer-bottom-x7k5m {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-top: 20px;
}

.footer-legal-n4k8p {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.copyright-text-z9k6m,
.legal-text-m6k3n {
  font-size: 13px;
  color: var(--color-text-dim);
  line-height: 1.5;
}

.author-credit-h5k9n {
  font-size: 13px;
  color: var(--color-text-dim);
}

.author-link-w7k2m {
  color: var(--color-green);
  text-decoration: none;
}

.author-link-w7k2m:hover {
  text-decoration: underline;
}

.widget-fixed-b8k3m {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--color-header);
  padding: 15px 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  animation: slideUp-x9k4m 0.4s ease-out;
}

@keyframes slideUp-x9k4m {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.widget-content-n6k9p {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.widget-text-m4k7n {
  flex: 1;
}

.widget-title-p9k5x {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.widget-desc-h7k2m {
  font-size: 14px;
  color: var(--color-text-dim);
}

.widget-btn-z5k8n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  background: var(--color-green);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  white-space: nowrap;
}

.widget-btn-z5k8n:hover {
  background: #229007;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40, 169, 9, 0.4);
}

.unused-class-x4m9k {
  display: none;
}

.legacy-wrapper-n8k5p {
  display: none;
}

.deprecated-style-z7k2m {
  visibility: hidden;
}

@media (max-width: 1024px) {
  .pc-grid-z9k4x {
    grid-template-columns: 1fr;
  }

  .jackpot-grid-x4n8p {
    grid-template-columns: 1fr;
  }

  .app-content-v7k2m {
    grid-template-columns: 1fr;
  }

  .footer-top-m5k9x {
    grid-template-columns: 1fr;
  }

  .footer-middle-z8k4m {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title-fg6k1 {
    font-size: 36px;
  }

  .hero-desc-yt3m9 {
    font-size: 18px;
  }

  .section-title-y6k3m {
    font-size: 28px;
  }

  .bonuses-slider-p4k7m {
    grid-template-columns: 1fr;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding-bottom: 10px;
  }

  .bonus-card-m6k3n {
    scroll-snap-align: start;
    min-width: 280px;
  }

  .slider-btn-x7k3p {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--color-header);
    border: 2px solid var(--color-green);
    border-radius: 50%;
    color: var(--color-green);
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
  }

  .slider-btn-x7k3p:hover {
    background: var(--color-green);
    color: white;
  }

  .slider-btn-prev-k9m5n {
    left: -15px;
  }

  .slider-btn-next-h4k8n {
    right: -15px;
  }

  .text-content-k5m8n {
    padding: 25px;
  }

  .widget-content-n6k9p {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .header-buttons-k5m9x {
    position: absolute;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
  }

  .hero-title-fg6k1 {
    font-size: 28px;
  }

  .hero-desc-yt3m9 {
    font-size: 16px;
  }

  .btn-demo-w4k8p,
  .btn-money-d6h3n {
    padding: 12px 25px;
    font-size: 16px;
  }

  .section-title-y6k3m {
    font-size: 24px;
  }

  .app-table-wrapper-n5k8p {
    overflow-x: auto;
  }
}

/* ====== FULL HEIGHT GAME (MOBILE) ====== */
@media (max-width: 768px){

    /* секція з грою */
    .demo-game-v6k9m{
        padding: 18px 0;
        margin: 0;
    }
    .online-counter-x4k8m{
        display: none; /* якщо хочеш залишити — скажи, зроблю компакт */
    }
    /* контейнер гри */
    .demo-container-p8k4n{
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    /* обгортка iframe -> робимо висотою під екран */
    .demo-frame-wrapper-z5k7m{
        width: 100%;
        border-radius: 14px;
        overflow: hidden;

        /* головна магія: висота під екран */
        height: calc(100dvh - 140px);
        /* 140px = приблизно header + заголовок секції + відступи.
           якщо треба точніше — скажи висоту хедера і я піджену */
        min-height: 420px;

        background: #000;
        position: relative;
    }

    /* iframe завжди на всю висоту блоку */
    .demo-iframe-n3k9m{
        width: 100%;
        height: 100%;
        border: 0;
        display: block;
    }

    /* CTA робимо поверх гри, не краде висоту */
    .demo-cta-m7k2n{
        position: absolute;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 5;

        padding: 12px 12px;
        border-radius: 14px;
        background: linear-gradient(
                180deg,
                rgba(0,0,0,0.15),
                rgba(0,0,0,0.75)
        );
        backdrop-filter: blur(8px);

        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .demo-text-h9k5p{
        margin: 0;
        font-size: 13px;
        line-height: 1.3;
        color: rgba(255,255,255,0.85);
        flex: 1;
    }

    .demo-cta-m7k2n .btn-l5x9m{
        flex-shrink: 0;
        width: auto;
        padding: 12px 14px;
        border-radius: 12px;
        font-weight: 800;
        font-size: 14px;
        white-space: nowrap;
    }

    /* якщо дуже маленький екран — CTA стає колонкою */
    @media (max-width: 380px){
        .demo-cta-m7k2n{
            flex-direction: column;
            align-items: stretch;
            text-align: center;
        }
        .demo-cta-m7k2n .btn-l5x9m{
            width: 100%;
        }
    }
}

/* Додатково: щоб iframe не "підскакував" від address-bar в iOS */
html, body{
    height: 100%;
}


