/* Base Styles */
:root {
  --color-header: #090111;
  --color-footer: #090111;
  --color-btn-login: #0b80dc;
  --color-btn-signup: #a8c94e;
  --color-bg: #020100;
  --color-text: #e8e6e3;
  --color-text-dark: #1a1a1a;
  --color-accent: #ffd700;
  --font-main: Helvetica, sans-serif;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  overflow-x: hidden;
}

.wr9p-wrapper {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.px7b {
  padding-left: 20px;
  padding-right: 20px;
}

/* Header Styles */
.hd92-header {
  background: linear-gradient(135deg, var(--color-header) 0%, #1a0a2e 100%);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

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

.main-nav-hd a {
  color: var(--color-text);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s;
}

.main-nav-hd a:hover {
  color: var(--color-btn-login);
}

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

.header-actions-hd {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

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

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

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

.btn-login-hd {
  background: var(--color-btn-login);
  color: white;
}

.btn-login-hd:hover {
  background: #0965b3;
  transform: translateY(-2px);
}

.btn-signup-hd {
  background: var(--color-btn-signup);
  color: var(--color-text-dark);
}

.btn-signup-hd:hover {
  background: #92b03f;
  transform: translateY(-2px);
}

/* Mobile Menu */
.mobile-header-btns {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-mobile {
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-login-m {
  background: var(--color-btn-login);
  color: white;
}

.btn-signup-m {
  background: var(--color-btn-signup);
  color: var(--color-text-dark);
}

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

.burger-btn-hd span {
  width: 25px;
  height: 3px;
  background: var(--color-text);
  transition: all 0.3s;
  border-radius: 2px;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 999;
  padding: 20px;
}

.mobile-menu-overlay.active {
  display: block;
}

.mobile-nav-list {
  list-style: none;
}

.mobile-nav-list li {
  margin-bottom: 20px;
}

.mobile-nav-list a {
  color: var(--color-text);
  font-size: 18px;
  text-decoration: none;
}

.mobile-online-info {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero-section-az {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url("/casino-banner.png") center / cover;
  padding: 60px 0;
  position: relative;
  margin-bottom: 40px;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(11, 128, 220, 0.2), transparent);
  pointer-events: none;
}

.hero-content-box {
  position: relative;
  z-index: 2;
}

.hero-title-main {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle-txt {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-features-list {
  margin-bottom: 30px;
}

.feature-item-hero {
  margin-bottom: 12px;
  font-size: 16px;
}

.check-icon {
  color: var(--color-btn-signup);
  font-weight: bold;
  margin-right: 8px;
}

.btn-hero-main {
  background: var(--color-btn-signup);
  color: var(--color-text-dark);
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(168, 201, 78, 0.3);
}

.btn-hero-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(168, 201, 78, 0.4);
}

/* Promo Card */
.promo-card-hero {
  background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 100%);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(168, 201, 78, 0.3);
}

.promo-header-card {
  background: var(--color-btn-signup);
  padding: 12px 20px;
  text-align: center;
}

.promo-label-txt {
  color: var(--color-text-dark);
  font-weight: 700;
  font-size: 16px;
}

.promo-body-card {
  padding: 30px 20px;
}

.promo-code-display {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 3px;
  border-radius: 8px;
  margin-bottom: 15px;
  border: 2px dashed var(--color-accent);
  color: var(--color-accent);
}

.promo-status-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 13px;
}

.status-badge-active {
  color: #00ff00;
}

.status-time-left {
  color: var(--color-accent);
}

.promo-desc-txt {
  text-align: center;
  margin-bottom: 20px;
  font-size: 14px;
  opacity: 0.9;
}

.promo-actions-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.btn-copy-promo {
  background: var(--color-btn-login);
  color: white;
}

.btn-activate-promo {
  background: var(--color-btn-signup);
  color: var(--color-text-dark);
}

/* Content Sections */
.kd82-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.pq4x-main {
  padding-bottom: 80px;
}

.section-title-main {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
  color: var(--color-text);
}

.section-subtitle-txt {
  text-align: center;
  margin-bottom: 40px;
  opacity: 0.8;
  font-size: 16px;
}

/* Pros and Cons */
.proscons-section-main {
  margin-bottom: 60px;
}

.pros-card-block,
.cons-card-block {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  backdrop-filter: blur(10px);
}

.pros-card-block {
  border-left: 4px solid var(--color-btn-signup);
}

.cons-card-block {
  border-left: 4px solid #ff4444;
}

.card-title-pros,
.card-title-cons {
  font-size: 24px;
  margin-bottom: 20px;
}

.card-title-pros {
  color: var(--color-btn-signup);
}

.card-title-cons {
  color: #ff4444;
}

.pros-list-items,
.cons-list-items {
  list-style: none;
}

.pros-list-items li,
.cons-list-items li {
  padding: 10px 0 10px 30px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pros-list-items li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-btn-signup);
  font-weight: bold;
  font-size: 18px;
}

.cons-list-items li:before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #ff4444;
  font-weight: bold;
  font-size: 18px;
}

/* Screenshots */
.screenshots-section-main {
  margin-bottom: 60px;
}

.screenshot-item-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s;
}

.screenshot-item-card:hover {
  transform: translateY(-5px);
}

.screenshot-img {
  width: 100%;
  height: auto;
  display: block;
}

.screenshot-caption {
  padding: 15px;
  text-align: center;
  font-weight: 600;
}

/* Author Info */
.author-info-wp {
  margin: 30px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border-left: 4px solid var(--color-btn-login);
}

.author-meta-flex {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid var(--color-btn-login);
}

.author-name-txt {
  display: block;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 5px;
}

.author-desc-small {
  font-size: 13px;
  opacity: 0.8;
}

/* Content Block */
.n7v2-content-block {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 60px;
}

.zx9m-heading {
  font-size: 36px;
  margin-bottom: 30px;
  color: var(--color-text);
}

.m3b8-text-content {
  font-size: 16px;
  line-height: 1.8;
}

.m3b8-text-content h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--color-text);
}

.m3b8-text-content h3 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--color-btn-login);
}

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

.m3b8-text-content ul,
.m3b8-text-content ol {
  margin-bottom: 25px;
  padding-left: 30px;
}

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

.m3b8-text-content table {
  width: 100%;
  margin: 30px auto;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.05);
}

.m3b8-text-content th,
.m3b8-text-content td {
  padding: 15px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.m3b8-text-content th {
  background: rgba(11, 128, 220, 0.2);
  font-weight: 700;
}

.xg72k-intro {
  background: linear-gradient(135deg, rgba(11, 128, 220, 0.1), rgba(168, 201, 78, 0.1));
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 30px;
  border-left: 5px solid var(--color-btn-login);
}

/* Winners Table */
.winners-section-main {
  margin-bottom: 60px;
}

.winners-table-wrap {
  overflow-x: auto;
}

.winners-table-main {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
}

.winners-table-main thead {
  background: var(--color-header);
}

.winners-table-main th {
  padding: 15px;
  font-weight: 700;
  text-align: left;
}

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

.winners-table-main tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.place-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
}

.place-badge.gold {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000;
}

.place-badge.silver {
  background: linear-gradient(135deg, #c0c0c0, #e8e8e8);
  color: #000;
}

.place-badge.bronze {
  background: linear-gradient(135deg, #cd7f32, #e89f65);
  color: #000;
}

.win-amount {
  color: var(--color-btn-signup);
  font-weight: 700;
  font-size: 16px;
}

/* Video Section */
.video-section-main {
  margin-bottom: 60px;
}

.video-wrapper-main {
  max-width: 900px;
  margin: 0 auto;
}

.video-container-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.video-container-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

.slot-game-wrapper {
  max-width: 500px;
  margin: 0 auto;
}

.slot-machine-box {
  background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 100%);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 3px solid var(--color-accent);
}

.slot-display-area {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.slot-reel {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  border: 2px solid rgba(255, 215, 0, 0.3);
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slot-symbol {
  font-size: 60px;
  display: block;
}

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

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

.btn-spin-slot {
  width: 100%;
  background: var(--color-btn-signup);
  color: var(--color-text-dark);
  padding: 18px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(168, 201, 78, 0.3);
}

.btn-spin-slot:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(168, 201, 78, 0.4);
}

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

.slot-result-display {
  margin-top: 20px;
  text-align: center;
  font-size: 18px;
  min-height: 60px;
  padding: 15px;
  border-radius: 8px;
}

.slot-result-display.win {
  background: rgba(168, 201, 78, 0.2);
  border: 2px solid var(--color-btn-signup);
  animation: pulse-win 1s ease-in-out;
}

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

.slot-result-display.lose {
  background: rgba(255, 68, 68, 0.1);
  border: 2px solid #ff4444;
}

/* FAQ Section */
.faq-section-main {
  margin-bottom: 60px;
}

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

.accordion-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-button {
  background: transparent;
  color: var(--color-text);
  font-size: 18px;
  font-weight: 600;
  padding: 20px 25px;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s;
}

.accordion-button:not(.collapsed) {
  background: rgba(11, 128, 220, 0.1);
  color: var(--color-btn-login);
}

.accordion-button:hover {
  background: rgba(255, 255, 255, 0.05);
}

.accordion-body {
  padding: 20px 25px;
  line-height: 1.7;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer */
.footer-main-az {
  background: linear-gradient(135deg, var(--color-footer) 0%, #1a0a2e 100%);
  padding: 50px 0 20px;
  margin-top: auto;
}

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

.footer-desc-txt {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.6;
}

.footer-title-sec {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--color-btn-login);
}

.footer-nav-list,
.footer-contact-list {
  list-style: none;
}

.footer-nav-list li,
.footer-contact-list li {
  margin-bottom: 12px;
}

.footer-nav-list a {
  color: var(--color-text);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-nav-list a:hover {
  color: var(--color-btn-login);
}

.footer-contact-list li {
  font-size: 14px;
  opacity: 0.9;
}

.footer-providers-sec,
.footer-payments-sec {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-subtitle-txt {
  font-size: 16px;
  margin-bottom: 20px;
  text-align: center;
}

.providers-logos-grid,
.payments-logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.providers-logos-grid img,
.payments-logos-grid img {
  opacity: 0.7;
  transition: opacity 0.3s;
}

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

.footer-copyright-sec {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.copyright-text-ft,
.legal-text-ft {
  font-size: 13px;
  opacity: 0.7;
  margin-bottom: 10px;
}

/* Sticky Widget */
.sticky-widget-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--color-header) 0%, #2d1b4e 100%);
  padding: 15px 20px;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.4);
  z-index: 999;
  transform: translateY(0);
  transition: transform 0.3s;
  border-top: 3px solid var(--color-btn-signup);
}

.sticky-widget-bottom.hidden {
  transform: translateY(100%);
}

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

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

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

.widget-bonus-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.widget-bonus-text strong {
  font-size: 16px;
  color: var(--color-accent);
}

.widget-bonus-text span {
  font-size: 13px;
  opacity: 0.9;
}

.btn-widget-register {
  background: var(--color-btn-signup);
  color: var(--color-text-dark);
  padding: 12px 30px;
  font-weight: 700;
  text-decoration: none;
}

.btn-widget-register:hover {
  transform: translateY(-2px);
}

.widget-close-btn {
  background: transparent;
  border: none;
  color: var(--color-text);
  font-size: 28px;
  cursor: pointer;
  padding: 0 10px;
  transition: transform 0.3s;
}

.widget-close-btn:hover {
  transform: rotate(90deg);
}

/* Unused styles for obfuscation */
.wp-block-column {
  display: block;
}
.elementor-widget-container {
  position: relative;
}
.site-header-sticky {
  position: sticky;
}
.yoast-breadcrumb {
  display: inline;
}
.woocommerce-cart {
  margin: 0;
}
.entry-content-wrap {
  padding: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title-main {
    font-size: 28px;
  }

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

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

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

  .zx9m-heading {
    font-size: 26px;
  }

  .widget-bonus-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

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

  .btn-widget-register {
    padding: 10px 20px;
    font-size: 14px;
  }

  .winners-table-main {
    font-size: 13px;
  }

  .winners-table-main th,
  .winners-table-main td {
    padding: 8px 10px;
  }
}

@media (max-width: 480px) {
  .slot-symbol {
    font-size: 40px;
  }

  .slot-reel {
    padding: 20px 10px;
    min-height: 100px;
  }
}
