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

body {
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #151028;
  color: #e0e0e0;
  line-height: 1.6;
  overflow-x: hidden;
}

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

.p8x2n5r {
  flex: 1;
}

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

.header-main {
  background: #231d47;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

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

.logo-link {
  display: block;
}

.logo-img {
  height: 50px;
  width: auto;
}

.header-nav {
  display: flex;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 15px;
}

.nav-link:hover {
  color: #8a46f6;
}

.nav-icon {
  color: #8a46f6;
}

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

.online-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(138, 70, 246, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
}

.online-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.online-text {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

.language-selector {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.flag-icon {
  width: 24px;
  height: 16px;
  border-radius: 2px;
}

.lang-code {
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
}

.arrow-icon {
  color: #ffffff;
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: #231d47;
  border-radius: 8px;
  padding: 8px 0;
  list-style: none;
  min-width: 150px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.lang-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lang-option:hover {
  background: rgba(138, 70, 246, 0.2);
}

.lang-option span {
  color: #ffffff;
  font-size: 14px;
}

.lang-option.active {
  background: rgba(138, 70, 246, 0.3);
}

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

.btn-demo,
.btn-money {
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-demo {
  background: #ffffff;
  color: #231d47;
  border-color: #ffffff;
}

.btn-demo:hover {
  background: transparent;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-money {
  background: #8a46f6;
  color: #ffffff;
}

.btn-money:hover {
  background: #7235d4;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(138, 70, 246, 0.4);
}

.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.burger-line {
  width: 25px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero-section {
  background: linear-gradient(135deg, #1a1438 0%, #231d47 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/hero-banner.png") center / cover no-repeat;
  opacity: 0.15;
  z-index: 0;
}

.hero-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  text-wrap: balance;
}

.hero-subtitle {
  font-size: 20px;
  color: #c4b5fd;
  margin-bottom: 32px;
  line-height: 1.5;
  text-wrap: pretty;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: #8a46f6;
  color: #ffffff;
}

.btn-primary:hover {
  background: #7235d4;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(138, 70, 246, 0.5);
}

.btn-secondary {
  background: #ffffff;
  color: #231d47;
}

.btn-secondary:hover {
  background: #f3f4f6;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.promo-card {
  background: linear-gradient(145deg, #2a2258 0%, #1f1a40 100%);
  border-radius: 20px;
  padding: 32px;
  width: 400px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(138, 70, 246, 0.3);
}

.promo-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.promo-icon {
  font-size: 32px;
}

.promo-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
}

.promo-code-wrapper {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.promo-code {
  flex: 1;
  background: rgba(138, 70, 246, 0.2);
  border: 2px dashed #8a46f6;
  border-radius: 10px;
  padding: 14px;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  letter-spacing: 2px;
}

.copy-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 10px;
  padding: 14px 18px;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.copy-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.activate-btn {
  display: block;
  width: 100%;
  background: #8a46f6;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  padding: 14px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.activate-btn:hover {
  background: #7235d4;
  box-shadow: 0 6px 20px rgba(138, 70, 246, 0.5);
}

.promo-status {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.status-indicator {
  width: 10px;
  height: 10px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.status-text {
  color: #c4b5fd;
  font-size: 14px;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 50px;
  text-wrap: balance;
}

.advantages-section {
  padding: 80px 0;
  background: #151028;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.advantage-card {
  background: linear-gradient(145deg, #1f1a40 0%, #171229 100%);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(138, 70, 246, 0.2);
}

.advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(138, 70, 246, 0.3);
  border-color: #8a46f6;
}

.advantage-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: rgba(138, 70, 246, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a46f6;
}

.advantage-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.advantage-text {
  font-size: 16px;
  color: #c4b5fd;
  line-height: 1.6;
}

.jackpot-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #151028 0%, #1a1438 100%);
}

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

.jackpot-card {
  background: linear-gradient(145deg, #1f1a40 0%, #171229 100%);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  border: 2px solid;
  transition: all 0.3s ease;
}

.jackpot-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.bronze-jackpot {
  border-color: #cd7f32;
}

.silver-jackpot {
  border-color: #c0c0c0;
}

.gold-jackpot {
  border-color: #ffd700;
}

.jackpot-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.jackpot-badge {
  background: rgba(138, 70, 246, 0.3);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.jackpot-icon {
  font-size: 36px;
}

.jackpot-amount {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
}

.jackpot-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: #c4b5fd;
  margin-bottom: 16px;
}

.jackpot-players {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.player-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(138, 70, 246, 0.1);
  padding: 12px 16px;
  border-radius: 10px;
}

.player-rank {
  font-weight: 700;
  color: #8a46f6;
  font-size: 16px;
}

.player-name {
  flex: 1;
  text-align: left;
  margin-left: 12px;
  color: #ffffff;
  font-size: 15px;
}

.player-win {
  font-weight: 700;
  color: #4ade80;
  font-size: 16px;
}

.screenshots-section {
  padding: 80px 0;
  background: #151028;
}

.screenshots-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.screenshot-item {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.screenshot-item:hover {
  transform: scale(1.05);
}

.screenshot-item img {
  width: 100%;
  height: auto;
  display: block;
}

.slider-dots {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: #8a46f6;
  width: 32px;
  border-radius: 6px;
}

.bonuses-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #1a1438 0%, #151028 100%);
}

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

.bonus-card {
  background: linear-gradient(145deg, #1f1a40 0%, #171229 100%);
  border-radius: 20px;
  padding: 32px;
  border: 2px solid rgba(138, 70, 246, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.bonus-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(138, 70, 246, 0.3);
  border-color: #8a46f6;
}

.bonus-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #8a46f6;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(138, 70, 246, 0.4);
}

.bonus-casino {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.bonus-amount {
  font-size: 32px;
  font-weight: 700;
  color: #8a46f6;
  margin-bottom: 24px;
}

.bonus-features {
  list-style: none;
  margin-bottom: 24px;
}

.bonus-features li {
  padding: 10px 0;
  color: #c4b5fd;
  font-size: 15px;
  position: relative;
  padding-left: 24px;
}

.bonus-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: 700;
}

.bonus-btn {
  display: block;
  width: 100%;
  background: #8a46f6;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  padding: 14px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.bonus-btn:hover {
  background: #7235d4;
  box-shadow: 0 6px 20px rgba(138, 70, 246, 0.5);
}

.demo-section {
  padding: 80px 0;
  background: #151028;
}

.demo-subtitle {
  text-align: center;
  font-size: 18px;
  color: #c4b5fd;
  margin-bottom: 40px;
  text-wrap: pretty;
}

.demo-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.demo-placeholder {
  width: 100%;
  max-width: 900px;
  height: 500px;
  background: linear-gradient(145deg, #1f1a40 0%, #171229 100%);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 2px solid rgba(138, 70, 246, 0.3);
}

.demo-icon {
  width: 120px;
  height: 120px;
  background: rgba(138, 70, 246, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a46f6;
}

.demo-text {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
}

.demo-description {
  font-size: 16px;
  color: #c4b5fd;
}

.play-real-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #8a46f6;
  color: #ffffff;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
}

.play-real-btn:hover {
  background: #7235d4;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(138, 70, 246, 0.5);
}

.content-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #151028 0%, #1a1438 100%);
}

.content-box {
  background: linear-gradient(145deg, #1f1a40 0%, #171229 100%);
  border-radius: 20px;
  padding: 48px;
  border: 1px solid rgba(138, 70, 246, 0.2);
}

.content-box h2 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  margin-top: 32px;
}

.content-box h2:first-child {
  margin-top: 0;
}

.content-box h3 {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
  margin-top: 24px;
}

.content-box p {
  font-size: 17px;
  color: #c4b5fd;
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-box ul,
.content-box ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

.content-box li {
  font-size: 17px;
  color: #c4b5fd;
  line-height: 1.8;
  margin-bottom: 10px;
}

.content-box table {
  width: 100%;
  max-width: 800px;
  margin: 24px auto;
  border-collapse: collapse;
  background: rgba(138, 70, 246, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

.content-box th,
.content-box td {
  padding: 16px;
  text-align: left;
  border: 2px solid rgba(138, 70, 246, 0.3);
  color: #ffffff;
  font-size: 16px;
}

.content-box th {
  background: rgba(138, 70, 246, 0.3);
  font-weight: 700;
}

.content-box a {
  color: #8a46f6;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.content-box a:hover {
  color: #7235d4;
}

.author-section {
  padding: 80px 0;
  background: #151028;
}

.author-card {
  background: linear-gradient(145deg, #1f1a40 0%, #171229 100%);
  border-radius: 20px;
  padding: 48px;
  display: flex;
  gap: 40px;
  align-items: center;
  border: 1px solid rgba(138, 70, 246, 0.2);
}

.author-avatar {
  flex-shrink: 0;
}

.author-avatar img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #8a46f6;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.author-title {
  font-size: 18px;
  color: #8a46f6;
  margin-bottom: 16px;
  font-weight: 600;
}

.author-bio {
  font-size: 17px;
  color: #c4b5fd;
  line-height: 1.8;
  margin-bottom: 20px;
}

.author-socials {
  display: flex;
  gap: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(138, 70, 246, 0.2);
  padding: 10px 20px;
  border-radius: 10px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(138, 70, 246, 0.4);
  transform: translateY(-2px);
}

.footer-main {
  background: #231d47;
  padding: 60px 0 30px;
  margin-top: 80px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo img {
  width: 160px;
  height: auto;
}

.footer-desc {
  color: #c4b5fd;
  font-size: 15px;
  line-height: 1.6;
}

.footer-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}

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

.footer-link {
  color: #c4b5fd;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #8a46f6;
}

.footer-middle {
  margin-bottom: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(138, 70, 246, 0.2);
}

.methods-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.methods-grid,
.licenses-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.method-logo,
.license-logo {
  height: 40px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.method-logo:hover,
.license-logo:hover {
  opacity: 1;
}

.licenses-section {
  margin-top: 20px;
}

.footer-provider {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  padding: 30px 0;
  border-top: 1px solid rgba(138, 70, 246, 0.2);
}

.provider-text {
  color: #c4b5fd;
  font-size: 15px;
}

.provider-logo {
  height: 40px;
  width: auto;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(138, 70, 246, 0.2);
  text-align: center;
}

.copyright {
  color: #c4b5fd;
  font-size: 14px;
  margin-bottom: 12px;
}

.legal-info {
  color: #9ca3af;
  font-size: 13px;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
}

.floating-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  animation: slideInUp 0.5s ease;
}

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

.widget-content {
  background: linear-gradient(135deg, #8a46f6 0%, #7235d4 100%);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(138, 70, 246, 0.5);
  max-width: 380px;
}

.widget-icon {
  font-size: 32px;
}

.widget-text {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.widget-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
}

.widget-subtitle {
  color: #e0d7f7;
  font-size: 13px;
}

.widget-btn {
  background: #ffffff;
  color: #8a46f6;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.widget-btn:hover {
  background: #f3f4f6;
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .advantages-grid,
  .jackpot-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .screenshots-slider,
  .bonuses-slider {
    grid-template-columns: 1fr;
  }

  .slider-dots {
    display: flex;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: #231d47;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .header-nav.active {
    transform: translateX(0);
  }

  .nav-menu {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    padding: 12px;
    display: flex;
    width: 100%;
  }

  .burger-menu {
    display: flex;
  }

  .online-counter {
    display: none;
  }

  .hero-wrapper {
    flex-direction: column;
  }

  .promo-card {
    width: 100%;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

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

  .advantages-grid,
  .jackpot-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .author-card {
    flex-direction: column;
    text-align: center;
  }

  .content-box {
    padding: 32px 24px;
  }

  .floating-widget {
    bottom: 10px;
    right: 10px;
    left: 10px;
  }

  .widget-content {
    width: 100%;
    max-width: none;
  }

  .widget-btn {
    padding: 10px 16px;
    font-size: 14px;
  }
}

.x4k9m2p,
.k4m9p2x,
.x7k3m9p,
.m2n8k4x,
.k2x9m5p,
.m5p8x2n,
.x3n7k9m,
.p2k7m4x,
.k8m3p5x,
.n5x8k2m,
.m7p3k9x,
.p9k2x7m,
.x9m3k7p,
.k2p7m5x {
  position: relative;
}

.t8k3m9x,
.r4n7p2k,
.w9x5m3k,
.q2p8k7m,
.z5x9k3p {
  display: none;
}
.demo-iframe-container {
  width: 100%;
  height: 600px;
  background: rgba(0,0,0,0.25);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 25px;
  position: relative;
}

.demo-iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Мобільна адаптація */
@media (max-width: 768px) {
  .demo-iframe-container {
    height: 520px;
  }
}

@media (max-width: 480px) {
  .demo-iframe-container {
    height: 420px;
  }
}
/* ===== МОБІЛЬНА АДАПТАЦІЯ HERO + ПРОМОКОД ===== */
@media (max-width: 768px) {
  .hero-section {
    padding: 48px 0 56px;
  }

  .container-main {
    padding: 0 16px;
  }

  .hero-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-title {
    font-size: 30px;
    line-height: 1.25;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .promo-card {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding: 20px 18px;
    border-radius: 18px;
  }

  .promo-header {
    justify-content: center;
    text-align: center;
  }

  .promo-icon {
    font-size: 28px;
  }

  .promo-title {
    font-size: 18px;
  }

  .promo-status {
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 26px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  /* промокод + кнопка в стовпчик, щоб нічого не перекривалось */
  .promo-code-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .promo-code {
    font-size: 16px;
    padding: 10px 12px;
    letter-spacing: 1.5px;
  }

  .copy-btn {
    width: 100%;
    justify-content: center;
    padding: 10px 12px;
    font-size: 14px;
  }

  .activate-btn {
    font-size: 15px;
    padding: 12px;
    margin-top: 8px;
  }

  .promo-status {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .status-text {
    font-size: 13px;
  }
}
/* Базово: контейнер для горизонтального скролу */
.container.info .table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Стиль самої таблиці */
.container.info .table-scroll table {
  width: 100%;
  border-collapse: collapse;
}

/* Мобільна адаптація: робимо таблицю ширшою за екран,
   щоб з’явився горизонтальний скрол */
@media (max-width: 768px) {
  .container.info .table-scroll table {
    min-width: 520px;       /* можеш змінити на 480–600 */
  }

  .container.info .table-scroll th,
  .container.info .table-scroll td {
    white-space: nowrap;    /* щоб текст не ламався у 3 рядки */
    padding: 10px 12px;
    font-size: 14px;
  }
}
/* Глобально прибираємо горизонтальний скрол */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* На всякий випадок відрізаємо можливий оверфлоу всередині основного контейнера */
.q9j4k2m {
  overflow-x: hidden;
}

/* Щоб жоден блок випадково не вилізе ширше екрана на мобайлі */
@media (max-width: 768px) {
  .container-main,
  .header-main,
  .hero-section,
  main,
  footer {
    max-width: 100%;
  }
}
/* Бургер і кнопки в шапці — мобільна логіка */
@media (max-width: 768px) {
  /* ховаємо великі кнопки в хедері, щоб звільнити місце */


  /* показуємо бургер */
  .burger-menu {
    display: flex;
  }

  /* трохи підтискаємо відступи, щоб усе влазило */
  .header-wrapper {
    gap: 12px;
  }

  .header-left {
    gap: 16px;
  }
}
/* Мобільна шапка: логотип + кнопки + бургер */
@media (max-width: 768px) {
  .header-wrapper {
    gap: 12px;
  }

  .header-left {
    gap: 16px;
  }

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

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

  /* показуємо бургер */
  .burger-menu {
    display: flex;
  }

  /* показуємо й стискаємо кнопки, щоб влізли в ряд */
  .header-buttons {
    display: flex;
    gap: 8px;
  }

  .header-buttons .btn-demo,
  .header-buttons .btn-money {
    padding: 8px 14px;
    font-size: 14px;
    border-radius: 10px;
  }
}
