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

body {
  font-family: "Inter", sans-serif;
  background-color: #0e0e0e;
  color: #e0e0e0;
  line-height: 1.6;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  white-space: nowrap;
}

.btn-demo {
  background-color: #e50539;
  color: #fff;
}

.btn-demo:hover {
  background-color: #c7042f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(229, 5, 57, 0.4);
}

.btn-play {
  background-color: #28a909;
  color: #fff;
}

.btn-play:hover {
  background-color: #239507;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 169, 9, 0.4);
}

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

.yw7n3hd5 {
  flex: 1;
}

.lq8r2tf6 {
  padding: 40px 0;
}

.header-main {
  background-color: #1b1c1d;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

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

.logo-link {
  display: block;
}

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

.online-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
}

.icon-users {
  color: #28a909;
}

.online-text {
  color: #e0e0e0;
}

.header-nav {
  flex: 1;
}

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

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  color: #e0e0e0;
  font-size: 15px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.nav-icon {
  color: #28a909;
}

.lang-dropdown {
  position: relative;
}

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

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

.flag-icon {
  width: 20px;
  height: 15px;
  border-radius: 2px;
}

.arrow-icon {
  margin-left: 2px;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background-color: #1b1c1d;
  border-radius: 8px;
  padding: 8px;
  min-width: 160px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 100;
}

.lang-dropdown:hover .lang-menu {
  display: block;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.lang-option:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.lang-option.active {
  background-color: rgba(40, 169, 9, 0.15);
  color: #28a909;
}

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

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

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.burger-btn span {
  width: 24px;
  height: 3px;
  background-color: #e0e0e0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.burger-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

.hero-section {
  position: relative;
  margin-bottom: 40px;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 16px;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
  display: flex;
  align-items: center;
}

.hero-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(14, 14, 14, 0.85), rgba(14, 14, 14, 0.4));
}

.hero-slide.active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}

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

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

.btn-hero-primary {
  background-color: #28a909;
  color: #fff;
  padding: 16px 36px;
  font-size: 17px;
}

.btn-hero-primary:hover {
  background-color: #239507;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(40, 169, 9, 0.4);
}

.btn-hero-secondary {
  background-color: rgba(229, 5, 57, 0.9);
  color: #fff;
  padding: 16px 36px;
  font-size: 17px;
}

.btn-hero-secondary:hover {
  background-color: #e50539;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(229, 5, 57, 0.4);
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

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

.dot.active {
  background-color: #28a909;
  width: 32px;
  border-radius: 6px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
}

.section-subtitle {
  font-size: 18px;
  color: #b0b0b0;
}

.casinos-section {
  margin-bottom: 60px;
}

.casinos-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.casino-card {
  background: linear-gradient(135deg, #1a1a1a, #252525);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.casino-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  border-color: rgba(40, 169, 9, 0.3);
}

.casino-card.hidden {
  display: none;
}

.casino-top {
  border: 2px solid #28a909;
  background: linear-gradient(135deg, rgba(40, 169, 9, 0.08), #1a1a1a);
}

.casino-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 13px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.badge-top1 {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #1a1a1a;
}

.badge-top2 {
  background: linear-gradient(135deg, #c0c0c0, #e8e8e8);
  color: #1a1a1a;
}

.badge-top3 {
  background: linear-gradient(135deg, #cd7f32, #e6a157);
  color: #fff;
}

.casino-header {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.casino-logo-wrap {
  flex-shrink: 0;
}

.casino-logo {
  width: 120px;
  height: 80px;
  object-fit: contain;
  background-color: #fff;
  border-radius: 8px;
  padding: 8px;
}

.casino-info-main {
  flex: 1;
}

.casino-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.casino-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.flag-mini {
  width: 20px;
  height: 15px;
  border-radius: 2px;
}

.available-badge {
  font-size: 13px;
  color: #28a909;
  font-weight: 600;
}

.casino-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stars {
  color: #ffd700;
  font-size: 16px;
  letter-spacing: 2px;
}

.rating-value {
  font-weight: 700;
  color: #fff;
}

.casino-bonus {
  background: linear-gradient(135deg, rgba(40, 169, 9, 0.15), rgba(40, 169, 9, 0.05));
  padding: 16px;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 1px solid rgba(40, 169, 9, 0.2);
}

.bonus-label {
  font-size: 13px;
  color: #b0b0b0;
  margin-bottom: 4px;
}

.bonus-value {
  font-size: 24px;
  font-weight: 800;
  color: #28a909;
}

.casino-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.detail-label {
  font-size: 13px;
  color: #b0b0b0;
}

.detail-value {
  font-weight: 600;
  color: #fff;
}

.casino-description {
  margin-bottom: 20px;
  color: #e0e0e0;
  line-height: 1.6;
}

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

.btn-casino-primary {
  background-color: #28a909;
  color: #fff;
  flex: 1;
  min-width: 180px;
}

.btn-casino-primary:hover {
  background-color: #239507;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 169, 9, 0.4);
}

.btn-casino-secondary {
  background-color: rgba(255, 255, 255, 0.08);
  color: #e0e0e0;
  flex: 1;
  min-width: 160px;
}

.btn-casino-secondary:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

.load-more-wrap {
  text-align: center;
  margin-top: 32px;
}

.btn-load-more {
  background-color: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 14px 40px;
}

.btn-load-more:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

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

.jackpots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.jackpot-card {
  background: linear-gradient(135deg, #1a1a1a, #252525);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 2px solid;
  transition: all 0.3s ease;
}

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

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

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

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

.jackpot-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.jackpot-level {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}

.jackpot-amount {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 24px;
  color: #28a909;
}

.jackpot-winners {
  background-color: rgba(255, 255, 255, 0.03);
  padding: 16px;
  border-radius: 10px;
}

.winner-title {
  font-size: 14px;
  color: #b0b0b0;
  margin-bottom: 12px;
}

.winner-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.winner-item:last-child {
  border-bottom: none;
}

.winner-rank {
  font-weight: 700;
  color: #28a909;
}

.winner-name {
  flex: 1;
  text-align: left;
  color: #e0e0e0;
}

.winner-prize {
  font-weight: 600;
  color: #fff;
}

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

.bonuses-slider-wrap {
  position: relative;
}

.bonuses-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: #28a909 rgba(255, 255, 255, 0.1);
}

.bonuses-slider::-webkit-scrollbar {
  height: 8px;
}

.bonuses-slider::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.bonuses-slider::-webkit-scrollbar-thumb {
  background: #28a909;
  border-radius: 4px;
}

.bonus-slide {
  min-width: 100%;
  scroll-snap-align: start;
}

.bonus-card {
  background: linear-gradient(135deg, #1a1a1a, #252525);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.bonus-casino-logo {
  text-align: center;
  margin-bottom: 24px;
}

.bonus-casino-logo img {
  height: 60px;
  width: auto;
}

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

.bonus-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}

.bonus-value-big {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 24px;
  color: #28a909;
}

.bonus-details-list {
  text-align: left;
  margin-bottom: 24px;
}

.bonus-detail {
  padding: 10px;
  color: #e0e0e0;
  line-height: 1.6;
}

.btn-bonus-primary {
  background-color: #28a909;
  color: #fff;
  width: 100%;
  padding: 14px 32px;
}

.btn-bonus-primary:hover {
  background-color: #239507;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(40, 169, 9, 0.4);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.slider-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-arrow:hover {
  background-color: #28a909;
}

.demo-section {
  margin-bottom: 60px;
}

.demo-game-wrap {
  background: linear-gradient(135deg, #1a1a1a, #252525);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.demo-iframe-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  margin-bottom: 24px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #000;
}

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

.demo-actions {
  text-align: center;
}

.demo-text {
  font-size: 18px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.btn-play-real {
  background-color: #28a909;
  color: #fff;
  padding: 16px 48px;
  font-size: 17px;
}

.btn-play-real:hover {
  background-color: #239507;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(40, 169, 9, 0.4);
}

.content-block {
  background: linear-gradient(135deg, #1a1a1a, #252525);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.text-content h1 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 24px;
  color: #fff;
}

.text-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 32px 0 20px;
  color: #fff;
}

.text-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 24px 0 16px;
  color: #fff;
}

.text-content p {
  margin-bottom: 16px;
  line-height: 1.7;
  color: #e0e0e0;
}

.text-content ul,
.text-content ol {
  margin: 16px 0 16px 24px;
  line-height: 1.8;
}

.text-content li {
  margin-bottom: 8px;
  color: #e0e0e0;
}

.text-content strong {
  color: #fff;
  font-weight: 600;
}

.text-content table {
  width: 100%;
  max-width: 800px;
  margin: 24px auto;
  border-collapse: collapse;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  overflow: hidden;
}

.text-content thead {
  background-color: rgba(40, 169, 9, 0.15);
}

.text-content th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.text-content td {
  padding: 12px 16px;
  text-align: left;
  color: #e0e0e0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.text-content tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.author-section {
  margin-bottom: 60px;
}

.author-card {
  background: linear-gradient(135deg, #1a1a1a, #252525);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  gap: 32px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.author-photo img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #28a909;
}

.author-info {
  flex: 1;
}

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

.author-role {
  font-size: 16px;
  color: #28a909;
  margin-bottom: 16px;
  font-weight: 600;
}

.author-bio {
  margin-bottom: 20px;
  line-height: 1.7;
  color: #e0e0e0;
}

.author-bio p {
  margin-bottom: 12px;
}

.author-social {
  display: flex;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: #0077b5;
  transform: translateY(-2px);
}

.footer-main {
  background-color: #1b1c1d;
  padding: 48px 0 24px;
  margin-top: 60px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
}

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

.footer-heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}

.footer-menu {
  list-style: none;
}

.footer-menu li {
  margin-bottom: 10px;
}

.footer-menu a {
  color: #b0b0b0;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: #28a909;
}

.provider-logo-wrap {
  margin-bottom: 12px;
}

.provider-logo {
  height: 32px;
}

.provider-link {
  color: #28a909;
  font-size: 14px;
}

.footer-middle {
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

.payments-wrap,
.licenses-wrap {
  margin-bottom: 24px;
}

.payments-logos,
.licenses-logos {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.payments-logos img,
.licenses-logos img {
  height: 32px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.payments-logos img:hover,
.licenses-logos img:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
}

.copyright {
  margin-bottom: 16px;
  color: #b0b0b0;
  font-size: 14px;
}

.legal-text {
  color: #888;
  font-size: 13px;
  line-height: 1.6;
}

.legal-text strong {
  color: #e50539;
}

.fixed-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #28a909, #34c90f);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 8px 24px rgba(40, 169, 9, 0.4);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 16px;
  animation: slideInUp 0.5s ease;
}

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

.widget-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.widget-text {
  line-height: 1.4;
}

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

.widget-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

.widget-btn {
  background-color: #fff;
  color: #28a909;
  padding: 10px 24px;
  font-weight: 700;
  border-radius: 8px;
  white-space: nowrap;
}

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

.widget-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 0 8px;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.widget-close:hover {
  opacity: 1;
}

.fixed-widget.hidden {
  display: none;
}

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

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

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

  .bonuses-slider {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bonus-slide {
    min-width: 100%;
  }
}

@media (max-width: 768px) {
  .burger-btn {
    display: flex;
  }

  .header-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background-color: #1b1c1d;
    padding: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  }

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

  .nav-menu {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-link {
    padding: 14px 16px;
  }

  .online-counter {
    display: none;
  }

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

  .hero-text {
    font-size: 16px;
  }

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

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
  }

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

  .section-subtitle {
    font-size: 16px;
  }

  .casino-header {
    flex-direction: column;
  }

  .casino-logo {
    width: 100%;
    height: 100px;
  }

  .casino-buttons {
    flex-direction: column;
  }

  .btn-casino-primary,
  .btn-casino-secondary {
    width: 100%;
  }

  .jackpots-grid {
    grid-template-columns: 1fr;
  }

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

  .author-photo img {
    margin: 0 auto;
  }

  .author-social {
    justify-content: center;
  }

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

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

  .widget-content {
    flex: 1;
  }

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

  .widget-title {
    font-size: 14px;
  }

  .widget-subtitle {
    font-size: 12px;
  }

  .widget-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .header-buttons .btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .hero-slider {
    height: 400px;
  }

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

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

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

  .casino-card {
    padding: 20px;
  }

  .content-block {
    padding: 24px 20px;
  }

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

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

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

.qr3w9xm8 {
  display: none;
}

.fh9k2xp7 {
  opacity: 0;
}

.bn8w4xt5 {
  visibility: hidden;
}
/* ============================
   ✅ FULL HEIGHT GAME ON MOBILE
   ============================ */

/* Desktop / default: залишаємо як є (16:9) */
.demo-iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.demo-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Mobile: робимо гру на всю висоту екрану */
@media (max-width: 768px) {

    /* сам блок демо – без великого padding */
    .demo-game-wrap {
        padding: 16px;
    }

    /* прибираємо padding-bottom і ставимо реальну висоту */
    .demo-iframe-container {
        padding-bottom: 0 !important;
        height: calc(100dvh - 220px); /* 220px = заголовок + CTA (можеш змінити) */
        min-height: 420px; /* щоб не був занадто маленький на старих мобілках */
    }

    /* iframe займає 100% контейнера */
    .demo-iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    /* CTA під грою (щоб не з'їдало зайву висоту) */
    .demo-actions {
        margin-top: 14px;
    }

    .demo-text {
        font-size: 15px;
        margin-bottom: 12px;
        color: #cfcfcf;
    }

    .btn-play-real {
        width: 100%;
        padding: 14px 18px;
        font-size: 16px;
    }
}

/* Ultra small screens */
@media (max-width: 480px) {
    .demo-iframe-container {
        height: calc(100dvh - 200px);
    }
}
