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

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: linear-gradient(135deg, #07a3fe 0%, #0d8cd9 100%);
  color: #ffffff;
  line-height: 1.6;
  min-height: 100vh;
}

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

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

.container-fluid {
  width: 100%;
  padding: 0 20px;
}

.header {
  background: #fe87d7;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.px3n7k2 {
  width: 100%;
}

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

.ty9k4m1 {
  flex-wrap: wrap;
}

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

.logo-img {
  display: block;
  max-width: 180px;
  height: auto;
}

.header-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.qw8n3k5 {
  max-width: 600px;
}

.nav-menu {
  display: flex;
  gap: 25px;
  align-items: center;
}

.lk7m2x9 {
  flex-wrap: wrap;
}

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

.nav-link:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.nav-icon {
  width: 18px;
  height: 18px;
}

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

.zx4m8p3 {
  flex-shrink: 0;
}

.language-selector {
  position: relative;
  cursor: pointer;
}

.px9k2m1 {
  user-select: none;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.lang-current:hover {
  background: rgba(255, 255, 255, 0.25);
}

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

.language-selector:hover .lang-arrow {
  transform: rotate(180deg);
}

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

.ty7k3m6 {
  z-index: 100;
}

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

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

.lang-option:hover {
  background: #f5f5f5;
}

.online-players {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
}

.qw5n8k4 {
  font-weight: 500;
}

.online-count {
  font-weight: 700;
  color: #73d245;
}

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

.lk3n7m8 {
  align-items: center;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.btn-demo {
  background: #73d245;
  color: #ffffff;
}

.btn-demo:hover {
  background: #62b937;
}

.btn-play {
  background: #ff8603;
  color: #ffffff;
}

.btn-play:hover {
  background: #e67700;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
}

.btn-md {
  padding: 12px 24px;
  font-size: 15px;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 17px;
}

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

.ty8k2p7 {
  transition: all 0.3s ease;
}

.burger-menu span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  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);
}

.mobile-menu {
  display: none;
  background: #fe87d7;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.px4m9x2 {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.mobile-menu.active {
  display: block;
  max-height: 500px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hero-section {
  background-image: url("/banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 20px;
  position: relative;
  margin-bottom: 40px;
}

.qp9m3x1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(7, 163, 254, 0.8) 0%, rgba(254, 135, 215, 0.6) 100%);
  z-index: 1;
}

.ty6n8k3 {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.zx3p7m4 {
  animation: fadeInUp 0.8s ease;
}

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

.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-text {
  font-size: 22px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

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

.main-content {
  flex: 1;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.casino-rating {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.lk9m2x7 {
  margin-bottom: 30px;
}

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

.jx8k3n2 {
  min-height: 200px;
}

.casino-item {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  color: #333;
}

.casino-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.casino-number {
  font-size: 36px;
  font-weight: 700;
  color: #07a3fe;
  min-width: 50px;
  text-align: center;
}

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

.casino-info {
  flex: 1;
}

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

.casino-features {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.casino-feature {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: #666;
}

.casino-rating-stars {
  color: #ff8603;
  font-weight: 700;
}

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

.casino-description {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.casino-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-casino-play {
  background: #ff8603;
  color: #ffffff;
  padding: 12px 28px;
  white-space: nowrap;
}

.btn-casino-review {
  background: #73d245;
  color: #ffffff;
  padding: 10px 24px;
  font-size: 14px;
}

.casino-top {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, #ff8603, #ff6b00);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.btn-load-more {
  background: #73d245;
  color: #ffffff;
  padding: 14px 40px;
}

.qw7m4x9 {
  margin-top: 20px;
}

.jackpot-section {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.ty5n8k2 {
  animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

.zx4p7m1 {
  margin-top: 20px;
}

.jackpot-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  color: #333;
}

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

.jackpot-type {
  font-size: 18px;
  font-weight: 700;
  color: #666;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.jackpot-amount {
  font-size: 42px;
  font-weight: 700;
  color: #ff8603;
  margin-bottom: 25px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.mega-jackpot .jackpot-amount {
  color: #ff0066;
}

.major-jackpot .jackpot-amount {
  color: #ff8603;
}

.mini-jackpot .jackpot-amount {
  color: #73d245;
}

.jackpot-winners h4 {
  font-size: 16px;
  color: #666;
  margin-bottom: 12px;
}

.winner-list {
  list-style-position: inside;
  text-align: left;
  font-size: 14px;
  color: #333;
}

.winner-list li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.bonuses-section {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.ty9k3m8 {
  position: relative;
}

.bonuses-slider-wrapper {
  overflow: hidden;
}

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

.px7n2k5 {
  transition: all 0.3s ease;
}

.bonus-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  color: #333;
}

.zx4m8p1 {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bonus-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.bonus-logo {
  margin-bottom: 20px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bonus-logo img {
  max-width: 150px;
  max-height: 60px;
  object-fit: contain;
}

.bonus-card h3 {
  font-size: 22px;
  color: #333;
  margin-bottom: 15px;
}

.bonus-highlight {
  font-size: 28px;
  font-weight: 700;
  color: #ff8603;
  margin-bottom: 15px;
}

.bonus-card p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.5;
}

.btn-bonus-claim {
  background: #ff8603;
  color: #ffffff;
}

.qw9k3x7 {
  width: 100%;
}

.demo-game-section {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.lk3n7m9 {
  margin-bottom: 30px;
}

.demo-game-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.ty8k2p5 {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 12px;
}

.game-iframe-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

.px4m9x3 {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

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

.btn-play-real {
  background: #ff8603;
  color: #ffffff;
  padding: 16px 48px;
  font-size: 18px;
}

.zx7k3m2 {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.content-section {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  color: #333;
}

.qw5n8k7 {
  line-height: 1.8;
}

.content-section h1 {
  font-size: 36px;
  color: #333;
  margin-bottom: 25px;
}

.content-section h2 {
  font-size: 28px;
  color: #333;
  margin-top: 30px;
  margin-bottom: 20px;
}

.content-section h3 {
  font-size: 22px;
  color: #333;
  margin-top: 25px;
  margin-bottom: 15px;
}

.content-section p {
  margin-bottom: 15px;
  color: #444;
}

.content-section ul,
.content-section ol {
  margin-left: 25px;
  margin-bottom: 15px;
}

.content-section li {
  margin-bottom: 10px;
  color: #444;
}

.content-section strong {
  color: #ff8603;
  font-weight: 600;
}

.content-section a {
  color: #73d245;
  text-decoration: underline;
}

.content-section a:hover {
  color: #62b937;
}

.content-section table {
  width: 100%;
  margin: 20px auto;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.content-section th,
.content-section td {
  padding: 12px 15px;
  text-align: left;
  border: 1px solid #ddd;
}

.content-section th {
  background: #fe87d7;
  color: #fff;
  font-weight: 600;
}

.content-section tr:nth-child(even) {
  background: #f9f9f9;
}

.faq-section {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.ty3k9m4 {
  margin-bottom: 40px;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.px7n2k8 {
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 17px;
  color: #333;
  background: rgba(255, 255, 255, 0.95);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(254, 135, 215, 0.1);
}

.faq-icon {
  font-size: 24px;
  font-weight: 700;
  color: #ff8603;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fff;
}

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

.faq-answer p {
  color: #555;
  line-height: 1.7;
}

.footer {
  background: #fe87d7;
  padding: 50px 0 30px;
  margin-top: 60px;
}

.qw9k3x8 {
  border-top: 4px solid rgba(255, 255, 255, 0.3);
}

.footer-content {
  color: #ffffff;
}

.ty5n8k1 {
  max-width: 1200px;
  margin: 0 auto;
}

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

.footer-column h4 {
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-title {
  font-weight: 700;
}

.footer-logo img {
  max-width: 150px;
  margin-bottom: 15px;
}

.footer-description {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

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

.footer-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  opacity: 0.9;
}

.footer-link:hover {
  opacity: 1;
  padding-left: 5px;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.zx7k3m9 img {
  background: #fff;
  padding: 5px;
  border-radius: 6px;
}

.licenses {
  display: flex;
  gap: 15px;
}

.px4n7k2 img {
  background: #fff;
  padding: 8px;
  border-radius: 8px;
}

.footer-middle {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.lk8n3m7 img {
  opacity: 0.9;
}

.footer-provider {
  padding: 20px 0;
}

.provider-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.ty9k2x5 {
  font-size: 14px;
}

.footer-bottom {
  padding-top: 20px;
  text-align: center;
}

.copyright {
  margin-bottom: 15px;
}

.qw3n8k6 p {
  font-size: 13px;
  opacity: 0.9;
  margin-bottom: 8px;
}

.disclaimer {
  font-size: 12px;
  opacity: 0.8;
}

.legal-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.zx5m7p3 {
  margin-top: 15px;
}

.legal-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.legal-link:hover {
  opacity: 1;
  text-decoration: underline;
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #fe87d7 0%, #ff6ba8 100%);
  padding: 15px 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  z-index: 999;
  animation: slideUp 0.5s ease;
}

.lk8n3m5 {
  backdrop-filter: blur(10px);
}

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

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

.widget-bonus {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.btn-widget-register {
  background: #ff8603;
  color: #ffffff;
  padding: 12px 32px;
  text-decoration: none;
  white-space: nowrap;
}

.ty7k2p9 {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mt-3 {
  margin-top: 1rem;
}
.mt-4 {
  margin-top: 1.5rem;
}
.mt-5 {
  margin-top: 2rem;
}
.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-4 {
  margin-bottom: 1.5rem;
}
.mx7k2p9 {
  margin: 0 auto;
}
.wp4n8x1 {
  width: auto;
}
.text-center {
  text-align: center;
}

.xf9k2p1,
.qw7e3m5,
.ty8n2k9,
.pl4m8x2 {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}


