/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lato", sans-serif;
  background-color: #13083c;
  color: #e8e8e8;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: #8476b5;
  transition: color 0.3s ease;
}

a:hover {
  color: #ffd571;
}

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

/* Header */
.lm9x3k7p {
  background-color: #22125b;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

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

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

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

.main-nav a {
  color: #e8e8e8;
  font-weight: 500;
  font-size: 15px;
}

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

.online-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e8e8e8;
  font-size: 14px;
}

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

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

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

.btn {
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  font-size: 14px;
}

.btn-login {
  background-color: #8476b5;
  color: #fff;
}

.btn-login:hover {
  background-color: #6d5f9a;
  color: #fff;
}

.btn-signup {
  background-color: #ffd571;
  color: #22125b;
}

.btn-signup:hover {
  background-color: #ffbf3d;
  color: #22125b;
}

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

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

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

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

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

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

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  width: 90%;
  max-width: 700px;
}

.hero-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 1s ease;
}

.hero-text {
  font-size: 22px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 1.2s ease;
}

.btn-hero {
  background-color: #ffd571;
  color: #22125b;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 8px;
  animation: fadeInUp 1.4s ease;
}

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

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

/* Breadcrumbs */
.xj8k2p9m {
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 20px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #b8b8b8;
}

.breadcrumbs a {
  color: #8476b5;
}

.breadcrumbs .separator {
  color: #666;
}

.breadcrumbs .current {
  color: #e8e8e8;
}

/* Main Content */
.qw7n4r5t {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px;
}

.zm3p8k1x {
  background-color: rgba(34, 18, 91, 0.3);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
}

.content-wrapper h1 {
  font-size: 36px;
  color: #ffd571;
  margin-bottom: 30px;
  font-weight: 900;
}

.main-content {
  color: #e8e8e8;
  line-height: 1.8;
}

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

.main-content h3 {
  color: #8476b5;
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 22px;
}

.main-content p {
  margin-bottom: 15px;
}

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

.main-content li {
  margin-bottom: 8px;
}

.main-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.main-content table th,
.main-content table td {
  border: 1px solid #8476b5;
  padding: 12px;
  text-align: left;
}

.main-content table th {
  background-color: #22125b;
  color: #ffd571;
}

/* Promo Section */
.promo-section {
  margin-bottom: 40px;
}

.promo-card {
  background: linear-gradient(135deg, #22125b 0%, #3a2580 100%);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  border: 2px solid #8476b5;
}

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

.promo-header h2 {
  color: #ffd571;
  font-size: 28px;
  margin: 0;
}

.promo-status {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.promo-status.active {
  background-color: #00ff00;
  color: #000;
}

.promo-code-wrapper {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: center;
}

.promo-code {
  flex: 1;
  background-color: #13083c;
  padding: 20px;
  border-radius: 8px;
  font-size: 32px;
  font-weight: 900;
  text-align: center;
  color: #ffd571;
  letter-spacing: 3px;
  border: 2px dashed #8476b5;
}

.btn-copy {
  padding: 20px 30px;
  background-color: #8476b5;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-copy:hover {
  background-color: #6d5f9a;
  transform: translateY(-2px);
}

.promo-info {
  margin-bottom: 20px;
  color: #e8e8e8;
}

.promo-info p {
  margin-bottom: 8px;
  font-size: 16px;
}

.btn-activate {
  display: block;
  width: 100%;
  padding: 16px;
  background-color: #ffd571;
  color: #22125b;
  text-align: center;
  border-radius: 8px;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
}

.btn-activate:hover {
  background-color: #ffbf3d;
  transform: scale(1.02);
}

/* Casino Info Table */
.casino-info-section {
  margin-bottom: 40px;
}

.casino-info-section h2 {
  color: #ffd571;
  font-size: 28px;
  margin-bottom: 20px;
}

.table-responsive {
  overflow-x: auto;
}

.casino-info-table {
  width: 100%;
  background-color: rgba(34, 18, 91, 0.5);
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #8476b5;
}

.casino-info-table tr {
  border-bottom: 1px solid #8476b5;
}

.casino-info-table tr:last-child {
  border-bottom: none;
}

.casino-info-table td {
  padding: 16px 20px;
}

.casino-info-table .param {
  font-weight: 700;
  color: #8476b5;
  width: 40%;
}

.casino-info-table .value {
  color: #e8e8e8;
}

/* Winners Section */
.winners-section {
  margin-bottom: 40px;
}

.winners-section h2 {
  color: #ffd571;
  font-size: 28px;
  margin-bottom: 20px;
}

.winners-list {
  background-color: rgba(34, 18, 91, 0.5);
  border-radius: 12px;
  padding: 20px;
  border: 2px solid #8476b5;
}

.winner-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 15px;
  border-bottom: 1px solid rgba(132, 118, 181, 0.3);
  transition: background-color 0.3s ease;
}

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

.winner-item:hover {
  background-color: rgba(132, 118, 181, 0.2);
}

.winner-name {
  color: #e8e8e8;
  font-weight: 600;
}

.winner-amount {
  color: #ffd571;
  font-weight: 700;
}

/* Bonuses Section */
.bonuses-section {
  margin-bottom: 40px;
}

.bonuses-section h2 {
  color: #ffd571;
  font-size: 28px;
  margin-bottom: 20px;
}

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

.bonus-card {
  background: linear-gradient(135deg, #22125b 0%, #3a2580 100%);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  border: 2px solid #8476b5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(255, 213, 113, 0.3);
}

.bonus-icon {
  font-size: 60px;
  margin-bottom: 15px;
}

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

.bonus-amount {
  font-size: 28px;
  font-weight: 900;
  color: #8476b5;
  margin-bottom: 15px;
}

.bonus-desc {
  color: #e8e8e8;
  margin-bottom: 20px;
  line-height: 1.6;
}

.btn-bonus-claim {
  display: inline-block;
  padding: 12px 30px;
  background-color: #ffd571;
  color: #22125b;
  border-radius: 8px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-bonus-claim:hover {
  background-color: #ffbf3d;
  transform: scale(1.05);
}

/* Slot Game Section */
.slot-game-section {
  margin-bottom: 40px;
}

.slot-game-section h2 {
  color: #ffd571;
  font-size: 28px;
  margin-bottom: 20px;
}

.slot-machine {
  background: linear-gradient(135deg, #22125b 0%, #3a2580 100%);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  border: 3px solid #ffd571;
  max-width: 500px;
  margin: 0 auto;
}

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

.slot-reel {
  width: 100px;
  height: 100px;
  background-color: #13083c;
  border: 3px solid #8476b5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
}

.btn-spin {
  padding: 16px 50px;
  background-color: #ffd571;
  color: #22125b;
  font-size: 20px;
  font-weight: 900;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.slot-result {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 700;
  min-height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.slot-result.win {
  color: #00ff00;
}

.slot-result.lose {
  color: #ff6b6b;
}

/* Author Section */
.author-section {
  margin-bottom: 40px;
}

.author-section h2 {
  color: #ffd571;
  font-size: 28px;
  margin-bottom: 20px;
}

.author-card {
  background-color: rgba(34, 18, 91, 0.5);
  border-radius: 12px;
  padding: 30px;
  display: flex;
  gap: 30px;
  align-items: center;
  border: 2px solid #8476b5;
}

.author-photo img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #8476b5;
}

.author-info h3 {
  color: #ffd571;
  font-size: 24px;
  margin-bottom: 10px;
}

.author-bio {
  color: #e8e8e8;
  line-height: 1.8;
  margin-bottom: 15px;
}

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

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background-color: #8476b5;
  color: #fff;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: #6d5f9a;
  color: #fff;
}

/* Footer */
.pn5k8x2w {
  background-color: #22125b;
  padding: 40px 0 20px;
  margin-top: 60px;
}

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

.footer-section h4 {
  color: #ffd571;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-logo {
  margin-bottom: 15px;
}

.footer-desc {
  color: #b8b8b8;
  line-height: 1.6;
}

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

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

.footer-links a {
  color: #e8e8e8;
  transition: color 0.3s ease;
}

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

.footer-section p {
  color: #e8e8e8;
  margin-bottom: 8px;
}

.payment-methods,
.game-providers {
  margin-bottom: 30px;
}

.payment-methods h4,
.game-providers h4 {
  color: #ffd571;
  margin-bottom: 15px;
}

.payment-logos,
.provider-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.payment-logos img,
.provider-logos img {
  height: 40px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(132, 118, 181, 0.3);
  padding-top: 20px;
  text-align: center;
}

.copyright,
.legal-info,
.disclaimer {
  color: #b8b8b8;
  font-size: 14px;
  margin-bottom: 8px;
}

/* Fixed Widget */
.fixed-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #22125b 0%, #3a2580 100%);
  padding: 15px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  z-index: 999;
  animation: slideUp 0.5s ease;
}

@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;
  gap: 20px;
}

.widget-bonus {
  color: #ffd571;
  font-size: 20px;
  font-weight: 700;
}

.btn-widget {
  padding: 12px 40px;
  background-color: #ffd571;
  color: #22125b;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
}

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

/* Responsive */
@media (max-width: 992px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #22125b;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .burger-menu {
    display: flex;
  }

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

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

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

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

@media (max-width: 768px) {
  .header-wrapper {
    gap: 15px;
  }

  .online-counter {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .promo-code-wrapper {
    flex-direction: column;
  }

  .slot-display {
    gap: 10px;
  }

  .slot-reel {
    width: 80px;
    height: 80px;
    font-size: 48px;
  }

  .widget-content {
    flex-direction: column;
    text-align: center;
  }
}

/* Unused styles for uniqueness */
.xk9m2p7n {
  display: none;
}
.ql3w8r5t {
  visibility: hidden;
}
.zm7k4p2x {
  opacity: 0;
}
.vn8x3k1m {
  position: absolute;
  left: -9999px;
}
.wp-block-unused {
  display: none;
}
.elementor-hidden {
  display: none;
}
