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

body {
  font-family: "Roboto", -apple-system, "BlinkMacSystemFont", "Segoe UI", "Oxygen", "Ubuntu", "Cantarell", "Open Sans",
    "Helvetica Neue", "Arial", sans-serif;
  background-color: #0e2f2b;
  color: #e8e8e8;
  line-height: 1.6;
  overflow-x: hidden;
}

body.fixed {
  overflow: hidden;
}

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

.box {
  background: rgba(34, 39, 35, 0.8);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Header Styles */
.header {
  background-color: #222723;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

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

.header-logo .logo-img {
  display: block;
  max-width: 100%;
  height: auto;
}

.header-nav {
  display: flex;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: #e8e8e8;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #f9c719;
}

.online-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(2, 80, 75, 0.3);
  padding: 8px 15px;
  border-radius: 20px;
}

.online-icon {
  font-size: 12px;
}

.online-text {
  font-size: 14px;
  color: #e8e8e8;
}

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

.btn {
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.btn-login {
  background-color: #02504b;
  color: #fff;
}

.btn-login:hover {
  background-color: #037066;
  transform: translateY(-2px);
}

.btn-signup {
  background-color: #f9c719;
  color: #1a1a1a;
}

.btn-signup:hover {
  background-color: #ffd84d;
  transform: translateY(-2px);
}

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

.burger span {
  width: 25px;
  height: 3px;
  background-color: #e8e8e8;
  transition: all 0.3s;
}

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

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

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

/* Hero Section */
.hero-section {
  position: relative;
  margin-bottom: 40px;
  overflow: hidden;
}

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

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s;
}

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

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  text-align: center;
  z-index: 2;
}

.hero-title {
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  margin-bottom: 20px;
}

.hero-text {
  font-size: 24px;
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
  margin-bottom: 30px;
}

.btn-hero {
  background: linear-gradient(135deg, #f9c719 0%, #ffb700 100%);
  color: #1a1a1a;
  padding: 15px 40px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(249, 199, 25, 0.4);
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(249, 199, 25, 0.6);
}

.hero-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 3;
}

.hero-prev,
.hero-next {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 30px;
  cursor: pointer;
  transition: all 0.3s;
}

.hero-prev:hover,
.hero-next:hover {
  background: rgba(0, 0, 0, 0.8);
}

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

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

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

/* Breadcrumbs */
.breadcrumbs-wrapper {
  margin-bottom: 20px;
}

.breadcrumb {
  background: transparent;
  padding: 10px 0;
  margin: 0;
}

.breadcrumb-item {
  color: #e8e8e8;
}

.breadcrumb-item a {
  color: #02504b;
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: #f9c719;
}

.breadcrumb-item.active {
  color: #f9c719;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #f9c719;
  margin-bottom: 10px;
}

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

/* Jackpots Section */
.jackpots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.jackpot-card {
  background: linear-gradient(135deg, rgba(2, 80, 75, 0.3) 0%, rgba(14, 47, 43, 0.5) 100%);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  border: 2px solid rgba(249, 199, 25, 0.3);
  transition: all 0.3s;
}

.jackpot-card:hover {
  transform: translateY(-5px);
  border-color: #f9c719;
  box-shadow: 0 8px 25px rgba(249, 199, 25, 0.3);
}

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

.jackpot-name {
  font-size: 24px;
  font-weight: 700;
  color: #f9c719;
  margin-bottom: 15px;
}

.jackpot-amount {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
}

.jackpot-label {
  font-size: 14px;
  color: #e8e8e8;
  opacity: 0.8;
}

/* Winners Section */
.winners-table-wrapper {
  overflow-x: auto;
}

.winners-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(14, 47, 43, 0.5);
  border-radius: 10px;
  overflow: hidden;
}

.winners-table thead {
  background: #02504b;
}

.winners-table th {
  padding: 15px;
  text-align: left;
  font-weight: 700;
  color: #f9c719;
  border-bottom: 2px solid rgba(249, 199, 25, 0.3);
}

.winners-table td {
  padding: 12px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.winners-table tr:hover {
  background: rgba(2, 80, 75, 0.3);
}

.rank {
  font-weight: 700;
  color: #f9c719;
}

.player {
  font-weight: 600;
}

.amount {
  color: #4ade80;
  font-weight: 700;
}

/* Tournaments Section */
.tournaments-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 20px;
}

.tournament-card {
  background: linear-gradient(135deg, rgba(34, 39, 35, 0.9) 0%, rgba(14, 47, 43, 0.7) 100%);
  border-radius: 15px;
  padding: 30px;
  border: 2px solid rgba(2, 80, 75, 0.5);
  position: relative;
  transition: all 0.3s;
}

.tournament-card:hover {
  transform: translateY(-5px);
  border-color: #f9c719;
  box-shadow: 0 10px 30px rgba(249, 199, 25, 0.2);
}

.tournament-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #4ade80;
  color: #1a1a1a;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.tournament-title {
  font-size: 24px;
  font-weight: 700;
  color: #f9c719;
  margin-bottom: 15px;
}

.tournament-description {
  font-size: 16px;
  color: #e8e8e8;
  margin-bottom: 20px;
  line-height: 1.6;
}

.tournament-prize {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(2, 80, 75, 0.3);
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.prize-label {
  font-size: 14px;
  color: #e8e8e8;
}

.prize-amount {
  font-size: 24px;
  font-weight: 900;
  color: #4ade80;
}

.tournament-timer {
  margin-bottom: 20px;
}

.timer-label {
  display: block;
  font-size: 14px;
  color: #e8e8e8;
  margin-bottom: 10px;
}

.timer-display {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.timer-unit {
  text-align: center;
}

.timer-value {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: #f9c719;
}

.timer-text {
  display: block;
  font-size: 12px;
  color: #e8e8e8;
}

.btn-tournament {
  width: 100%;
  background: linear-gradient(135deg, #02504b 0%, #037066 100%);
  color: #fff;
  padding: 15px;
  font-size: 18px;
  font-weight: 700;
}

.btn-tournament:hover {
  background: linear-gradient(135deg, #037066 0%, #02504b 100%);
}

.tournaments-controls {
  display: none;
}

/* Mini Games Section */
.minigames-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.minigame-wrapper {
  text-align: center;
}

/* Slot Machine */
.slot-machine {
  padding: 20px;
}

.slot-reels {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.slot-reel {
  width: 100px;
  height: 100px;
  background: rgba(14, 47, 43, 0.8);
  border: 3px solid #f9c719;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  transition: all 0.3s;
}

.slot-reel.spinning {
  animation: spin 0.1s linear infinite;
}

@keyframes spin {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100px);
  }
}

.btn-spin {
  background: linear-gradient(135deg, #f9c719 0%, #ffb700 100%);
  color: #1a1a1a;
  padding: 15px 40px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 50px;
  margin-bottom: 20px;
}

.btn-spin:hover {
  transform: scale(1.05);
}

.btn-spin:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.slot-result,
.wheel-result {
  min-height: 80px;
  font-size: 18px;
  font-weight: 600;
  color: #4ade80;
}

/* Wheel Game */
.wheel-game {
  padding: 20px;
}

.wheel-container {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto 30px;
}

#wheelCanvas {
  display: block;
  margin: 0 auto;
}

.wheel-pointer {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 40px;
  color: #f9c719;
  z-index: 10;
}

/* Content Block */
.content-block {
  margin: 40px 0;
}

.content-block h1 {
  font-size: 42px;
  font-weight: 700;
  color: #f9c719;
  margin-bottom: 30px;
  text-align: center;
}

.text-content {
  font-size: 18px;
  line-height: 1.8;
  color: #e8e8e8;
}

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

.text-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: #02504b;
  margin: 25px 0 15px;
}

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

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

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

.text-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px auto;
  background: rgba(14, 47, 43, 0.5);
}

.text-content table th {
  background: #02504b;
  color: #f9c719;
  padding: 15px;
  text-align: left;
  border: 1px solid rgba(249, 199, 25, 0.3);
}

.text-content table td {
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.text-content a {
  color: #02504b;
  text-decoration: underline;
}

.text-content a:hover {
  color: #f9c719;
}

/* Footer */
.footer {
  background-color: #222723;
  padding: 50px 0 20px;
  margin-top: 60px;
}

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

.footer-logo .footer-tagline {
  margin-top: 15px;
  color: #e8e8e8;
  font-size: 14px;
}

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

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

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

.footer-links a {
  color: #e8e8e8;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #f9c719;
}

.footer-text {
  color: #e8e8e8;
  margin-bottom: 10px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-link {
  display: inline-block;
  padding: 8px 15px;
  background: #02504b;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s;
}

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

.footer-payments,
.footer-providers {
  margin-bottom: 30px;
}

.payment-logos,
.provider-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}

.payment-logo,
.provider-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
}

.footer-legal p {
  color: #e8e8e8;
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-warning {
  color: #f9c719;
  font-weight: 600;
}

/* Sticky Widget */
.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #222723 0%, #02504b 100%);
  padding: 15px 20px;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.5);
  z-index: 999;
  animation: slideUp 0.5s ease-out;
}

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

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

.widget-bonus {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

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

.widget-btn {
  background: linear-gradient(135deg, #f9c719 0%, #ffb700 100%);
  color: #1a1a1a;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
}

.widget-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(249, 199, 25, 0.4);
}

/* Unused styles for uniqueness */
.unused-class-1 {
  display: none;
}
.unused-class-2 {
  visibility: hidden;
}
.zx9k3m {
  opacity: 0;
}
.p8j2n5 {
  position: absolute;
  left: -9999px;
}
.q4w7r1 {
  color: transparent;
}
.m3n8b6 {
  font-size: 0;
}
.k5l2p9 {
  height: 0;
  overflow: hidden;
}
.elementor-widget {
  display: none;
}
.wp-block-group {
  visibility: hidden;
}
.yoast-schema {
  opacity: 0;
}
