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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #151028;
  color: #e0e0e0;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

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

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

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

.xm5p9kvr {
  background: linear-gradient(135deg, #231d47 0%, #1a1535 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(138, 70, 246, 0.1);
}

.qw4k8nvm {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.logo-link {
  display: block;
  text-decoration: none;
}

.logo-img {
  display: block;
  height: 45px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

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

.burger-menu span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

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

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

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

.main-nav {
  display: flex;
  align-items: center;
}

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

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

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

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

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

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

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

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

.online-text {
  color: #e0e0e0;
}

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

.lang-selector {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #8a46f6;
}

.lang-btn img {
  border-radius: 2px;
}

.lang-arrow {
  transition: transform 0.3s ease;
}

.lang-btn.active .lang-arrow {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #231d47;
  border: 1px solid rgba(138, 70, 246, 0.3);
  border-radius: 8px;
  min-width: 200px;
  display: none;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.lang-dropdown.active {
  display: flex;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: #e0e0e0;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

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

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

.lang-option img {
  border-radius: 2px;
}

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

.header-controls-mobile {
  display: none;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.btn-demo {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-demo:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-play {
  background: linear-gradient(135deg, #8a46f6 0%, #6a2fd6 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(138, 70, 246, 0.4);
}

.btn-play:hover {
  background: linear-gradient(135deg, #9a56ff 0%, #7a3fe6 100%);
  box-shadow: 0 6px 20px rgba(138, 70, 246, 0.6);
  transform: translateY(-2px);
}

.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  height: 600px;
}

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(21, 16, 40, 0.9) 0%, rgba(35, 29, 71, 0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

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

.hero-subtitle {
  font-size: 22px;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.hero-features {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 16px;
}

.hero-feature svg {
  color: #8a46f6;
  flex-shrink: 0;
}

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

.btn-hero-primary {
  background: linear-gradient(135deg, #8a46f6 0%, #6a2fd6 100%);
  color: #fff;
  padding: 16px 40px;
  font-size: 18px;
  box-shadow: 0 6px 20px rgba(138, 70, 246, 0.5);
}

.btn-hero-primary:hover {
  background: linear-gradient(135deg, #9a56ff 0%, #7a3fe6 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(138, 70, 246, 0.7);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 16px 40px;
  font-size: 18px;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
  transform: translateY(-3px);
}

.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 2;
}

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

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

.wp7n5kvm {
  padding: 80px 0;
  flex: 1;
}

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

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

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

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

.casinos-list {
  display: grid;
  gap: 25px;
}

.casino-card {
  background: linear-gradient(135deg, #231d47 0%, #1a1535 100%);
  border-radius: 16px;
  padding: 30px;
  display: grid;
  grid-template-columns: auto 150px 1fr auto;
  gap: 30px;
  align-items: center;
  position: relative;
  border: 1px solid rgba(138, 70, 246, 0.2);
  transition: all 0.3s ease;
}

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

.casino-card.top-casino {
  border: 2px solid #8a46f6;
  box-shadow: 0 5px 30px rgba(138, 70, 246, 0.3);
}

.casino-badge {
  position: absolute;
  top: -12px;
  left: 30px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #1a1535;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.casino-number {
  font-size: 48px;
  font-weight: 700;
  color: rgba(138, 70, 246, 0.3);
  min-width: 60px;
  text-align: center;
}

.casino-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 12px;
}

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

.casino-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.casino-country {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #b0b0b0;
}

.casino-country img {
  border-radius: 2px;
}

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

.stars {
  display: flex;
  gap: 2px;
}

.rating-value {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.casino-bonus {
  font-size: 16px;
  color: #8a46f6;
  font-weight: 600;
}

.casino-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: #b0b0b0;
}

.casino-license,
.casino-providers {
  font-size: 13px;
  color: #888;
}

.casino-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 150px;
}

.btn-casino-play {
  background: linear-gradient(135deg, #8a46f6 0%, #6a2fd6 100%);
  color: #fff;
  padding: 14px 28px;
  box-shadow: 0 4px 15px rgba(138, 70, 246, 0.4);
}

.btn-casino-play:hover {
  background: linear-gradient(135deg, #9a56ff 0%, #7a3fe6 100%);
  box-shadow: 0 6px 20px rgba(138, 70, 246, 0.6);
}

.btn-casino-review {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding: 14px 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-casino-review:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #8a46f6;
}

.load-more-wrapper {
  text-align: center;
  margin-top: 40px;
}

.btn-load-more {
  background: rgba(138, 70, 246, 0.1);
  color: #8a46f6;
  border: 2px solid #8a46f6;
  padding: 14px 40px;
  font-size: 16px;
}

.btn-load-more:hover {
  background: rgba(138, 70, 246, 0.2);
  transform: translateY(-2px);
}

.btn-load-more.loading {
  opacity: 0.6;
  cursor: not-allowed;
}

.winners-section {
  margin-bottom: 80px;
}

.winners-table-wrapper {
  overflow-x: auto;
  border-radius: 16px;
  background: linear-gradient(135deg, #231d47 0%, #1a1535 100%);
  border: 1px solid rgba(138, 70, 246, 0.2);
}

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

.winners-table thead {
  background: rgba(138, 70, 246, 0.2);
}

.winners-table th {
  padding: 18px 20px;
  text-align: left;
  font-weight: 600;
  color: #fff;
  font-size: 15px;
  border-bottom: 2px solid rgba(138, 70, 246, 0.3);
}

.winners-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #e0e0e0;
  font-size: 15px;
}

.winners-table tbody tr:hover {
  background: rgba(138, 70, 246, 0.1);
}

.winners-table tbody tr:last-child td {
  border-bottom: none;
}

.winner-rank {
  font-weight: 700;
  color: #8a46f6;
}

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

.winner-multiplier {
  color: #ffd700;
  font-weight: 700;
}

.winner-amount {
  color: #4caf50;
  font-weight: 700;
  font-size: 16px;
}

.content-block {
  margin: 80px 0;
  background: linear-gradient(135deg, #231d47 0%, #1a1535 100%);
  border-radius: 16px;
  padding: 50px;
  border: 1px solid rgba(138, 70, 246, 0.2);
}

.h1-main {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.2;
}

.text-content {
  color: #e0e0e0;
  line-height: 1.8;
}

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

.text-content h3 {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  margin: 30px 0 15px;
}

.text-content p {
  margin-bottom: 20px;
  font-size: 17px;
}

.text-content ul,
.text-content ol {
  margin: 20px 0;
  padding-left: 30px;
}

.text-content li {
  margin-bottom: 12px;
  font-size: 17px;
}

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

.text-content a {
  color: #8a46f6;
  text-decoration: none;
  border-bottom: 1px solid rgba(138, 70, 246, 0.3);
  transition: all 0.3s ease;
}

.text-content a:hover {
  color: #9a56ff;
  border-bottom-color: #9a56ff;
}

.xj8k2p9m,
.qw7n5rtx,
.vb4m8yfp,
.dm9k3pxr,
.ks5p7mhw,
.pl8m4kvr,
.nr6w9ztm,
.ty4n8qvm {
  display: block;
}

.vb4m8yfp {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin: 40px 0 20px;
}

.ks5p7mhw {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  margin: 30px 0 15px;
}

.dm9k3pxr {
  margin-bottom: 20px;
  font-size: 17px;
  color: #e0e0e0;
  line-height: 1.8;
}

.pl8m4kvr,
.nr6w9ztm {
  margin: 20px 0;
  padding-left: 30px;
}

.pl8m4kvr li,
.nr6w9ztm li {
  margin-bottom: 12px;
  font-size: 17px;
  color: #e0e0e0;
}

.ty4n8qvm {
  margin: 25px 0;
  padding: 20px;
  background: rgba(138, 70, 246, 0.05);
  border-left: 4px solid #8a46f6;
  border-radius: 8px;
}

.app-section {
  margin-bottom: 80px;
}

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

.app-info {
  background: linear-gradient(135deg, #231d47 0%, #1a1535 100%);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(138, 70, 246, 0.2);
}

.app-subtitle {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.app-description {
  font-size: 17px;
  color: #e0e0e0;
  line-height: 1.8;
  margin-bottom: 30px;
}

.app-table {
  margin: 30px 0;
  overflow-x: auto;
}

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

.app-table td {
  padding: 15px;
  border: 1px solid rgba(138, 70, 246, 0.2);
  font-size: 16px;
  color: #e0e0e0;
}

.app-table td:first-child {
  width: 40%;
}

.app-downloads {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.btn-app {
  background: rgba(138, 70, 246, 0.1);
  color: #fff;
  border: 2px solid #8a46f6;
  padding: 16px 24px;
  font-size: 16px;
}

.btn-app:hover {
  background: rgba(138, 70, 246, 0.2);
  transform: translateY(-2px);
}

.app-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

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

.demo-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.demo-game {
  background: linear-gradient(135deg, #231d47 0%, #1a1535 100%);
  border-radius: 16px;
  border: 1px solid rgba(138, 70, 246, 0.2);
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.demo-placeholder {
  text-align: center;
  padding: 40px;
}

.demo-icon {
  margin-bottom: 30px;
  color: #8a46f6;
}

.demo-placeholder h3 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.demo-placeholder p {
  font-size: 17px;
  color: #b0b0b0;
  margin-bottom: 30px;
}

.btn-demo-launch {
  background: linear-gradient(135deg, #8a46f6 0%, #6a2fd6 100%);
  color: #fff;
  padding: 16px 40px;
  font-size: 18px;
  box-shadow: 0 6px 20px rgba(138, 70, 246, 0.5);
}

.btn-demo-launch:hover {
  background: linear-gradient(135deg, #9a56ff 0%, #7a3fe6 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(138, 70, 246, 0.7);
}

.demo-info {
  background: linear-gradient(135deg, #231d47 0%, #1a1535 100%);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(138, 70, 246, 0.2);
}

.demo-info-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
}

.demo-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.demo-features li {
  display: flex;
  align-items: start;
  gap: 12px;
  color: #e0e0e0;
  font-size: 16px;
  line-height: 1.6;
}

.demo-features svg {
  color: #4caf50;
  flex-shrink: 0;
  margin-top: 2px;
}

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

.demo-cta p {
  font-size: 16px;
  color: #b0b0b0;
  margin-bottom: 20px;
}

.btn-play-large {
  background: linear-gradient(135deg, #8a46f6 0%, #6a2fd6 100%);
  color: #fff;
  padding: 16px 32px;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(138, 70, 246, 0.4);
}

.btn-play-large:hover {
  background: linear-gradient(135deg, #9a56ff 0%, #7a3fe6 100%);
  box-shadow: 0 6px 20px rgba(138, 70, 246, 0.6);
}

.reviews-section {
  margin-bottom: 80px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.review-card {
  background: linear-gradient(135deg, #231d47 0%, #1a1535 100%);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(138, 70, 246, 0.2);
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(138, 70, 246, 0.3);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #8a46f6;
}

.review-author {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 5px;
}

.review-rating {
  display: flex;
  gap: 3px;
}

.review-text {
  color: #e0e0e0;
  font-size: 16px;
  line-height: 1.7;
}

.review-form-wrapper {
  background: linear-gradient(135deg, #231d47 0%, #1a1535 100%);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(138, 70, 246, 0.2);
  position: relative;
}

.review-form-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
  text-align: center;
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.form-group input,
.form-group textarea {
  padding: 14px 18px;
  border-radius: 8px;
  border: 1px solid rgba(138, 70, 246, 0.3);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #8a46f6;
  background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit-review {
  background: linear-gradient(135deg, #8a46f6 0%, #6a2fd6 100%);
  color: #fff;
  padding: 16px 32px;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(138, 70, 246, 0.4);
  margin-top: 10px;
}

.btn-submit-review:hover {
  background: linear-gradient(135deg, #9a56ff 0%, #7a3fe6 100%);
  box-shadow: 0 6px 20px rgba(138, 70, 246, 0.6);
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  padding: 40px;
}

.form-success.active {
  display: flex;
}

.form-success p {
  font-size: 18px;
  color: #4caf50;
  font-weight: 600;
}

.footer-section {
  background: linear-gradient(135deg, #231d47 0%, #1a1535 100%);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(138, 70, 246, 0.2);
}

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

.footer-logo {
  display: inline-block;
  margin-bottom: 20px;
}

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

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

.footer-author {
  padding: 20px;
  background: rgba(138, 70, 246, 0.1);
  border-radius: 8px;
  border-left: 3px solid #8a46f6;
}

.footer-author p {
  font-size: 14px;
  color: #e0e0e0;
  margin-bottom: 8px;
}

.footer-author-link {
  color: #8a46f6;
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
  margin-top: 8px;
}

.footer-author-link:hover {
  color: #9a56ff;
  text-decoration: underline;
}

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

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

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

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

.footer-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

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

.footer-provider img {
  max-width: 120px;
  height: auto;
}

.footer-provider p {
  font-size: 16px;
  color: #e0e0e0;
  font-weight: 600;
}

.footer-provider a {
  color: #8a46f6;
  text-decoration: none;
  font-size: 14px;
}

.footer-provider a:hover {
  color: #9a56ff;
  text-decoration: underline;
}

.footer-payments,
.footer-licenses {
  margin: 40px 0;
  text-align: center;
}

.payment-logos,
.license-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.payment-logos img,
.license-logos img {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.payment-logos img:hover,
.license-logos img:hover {
  opacity: 1;
}

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

.footer-copyright,
.footer-legal,
.footer-disclaimer {
  font-size: 13px;
  color: #888;
  margin-bottom: 10px;
  line-height: 1.6;
}

.fixed-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background: linear-gradient(135deg, #8a46f6 0%, #6a2fd6 100%);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 30px rgba(138, 70, 246, 0.5);
  max-width: 350px;
  animation: slideInUp 0.5s ease;
}

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

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

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

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

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

.widget-text strong {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
}

.widget-text span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

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

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

.widget-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.widget-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

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

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

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

  .casino-card {
    grid-template-columns: auto 120px 1fr;
    gap: 20px;
  }

  .casino-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: center;
  }

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

  .app-image {
    order: -1;
  }

  .demo-container {
    grid-template-columns: 1fr;
  }
}

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

  .qw4k8nvm {
    grid-template-columns: auto 1fr;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #231d47;
    padding: 80px 30px 30px;
    transition: left 0.3s ease;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.5);
  }

  .main-nav.active {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-link {
    padding: 15px 0;
    width: 100%;
  }

  .header-controls-mobile {
    display: flex;
  }

  .header-right {
    gap: 15px;
  }

  .header-controls {
    display: none;
  }

  .online-counter {
    display: none;
  }

  .hero-slider {
    height: 500px;
  }

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

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

  .hero-features {
    flex-direction: column;
    gap: 15px;
  }

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

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

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

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

  .casino-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 25px 20px;
  }

  .casino-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 36px;
  }

  .casino-logo {
    justify-content: flex-start;
  }

  .casino-actions {
    flex-direction: column;
    width: 100%;
  }

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

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

  .h1-main {
    font-size: 32px;
  }

  .vb4m8yfp {
    font-size: 28px;
  }

  .ks5p7mhw {
    font-size: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .fixed-widget {
    left: 10px;
    right: 10px;
    max-width: none;
    padding: 15px;
  }

  .widget-content {
    flex-wrap: wrap;
  }

  .widget-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 400px;
  }

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

  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 14px 24px;
    font-size: 16px;
  }

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

  .casino-card {
    padding: 20px 15px;
  }

  .winners-table th,
  .winners-table td {
    padding: 12px 10px;
    font-size: 14px;
  }

  .app-table td {
    padding: 12px;
    font-size: 14px;
  }
}

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

  .qw4k8nvm {
    grid-template-columns: auto 1fr;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: #231d47;
    padding: 80px 30px 30px;
    transition: transform 0.3s ease;
    transform: translateX(-100%);
    overflow-y: auto;
    z-index: 1000;

    /* головне: меню в колонку */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

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

  .nav-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-link {
    padding: 15px 0;
    width: 100%;
  }

  .header-controls-mobile {
    display: flex;
    flex-direction: column; /* кнопки одна під одною */
    gap: 12px;
    width: 100%;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .header-right {
    gap: 15px;
  }

  .header-controls {
    display: none;
  }

  .online-counter {
    display: none;
  }
}
