:root {
  --color-bg: #211e1c;
  --color-header: #312d2b;
  --color-btn-login: #d7cec5;
  --color-btn-signup: #d5812d;
  --color-text: #e8e6e3;
  --color-text-dark: #1a1816;
  --color-accent: #d5812d;
  --color-border: #3d3935;
  --font-main: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", 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.6;
  overflow-x: hidden;
}

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

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

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

.header-wrapper {
  width: 100%;
}

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

.header-logo .logo-link {
  display: block;
}

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

.header-online {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text);
  font-size: 14px;
}

.online-indicator {
  width: 10px;
  height: 10px;
  background-color: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.header-nav {
  display: flex;
}

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

.nav-menu a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: var(--color-accent);
}

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

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

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

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

.btn-signup {
  background-color: var(--color-btn-signup);
  color: #fff;
}

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

.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: var(--color-text);
  transition: all 0.3s;
}

.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);
}

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

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

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

.hero-slide.active {
  display: block;
}

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

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  width: 90%;
  max-width: 700px;
  background-color: rgba(128, 128, 128, 0.6);
  border-radius: 10px;
}

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

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

.btn-hero {
  background-color: var(--color-btn-signup);
  color: #fff;
  padding: 16px 40px;
  font-size: 18px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(213, 129, 45, 0.4);
}

.btn-hero:hover {
  background-color: #c17226;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(213, 129, 45, 0.6);
}

/* Main Content */
.main-content {
  flex: 1;
  padding: 40px 0;
}

.content-wrapper {
  max-width: 100%;
}

.main-title {
  font-size: 36px;
  color: var(--color-text);
  margin-bottom: 30px;
  text-align: center;
}

/* TOC Block */
.toc-block {
  background: linear-gradient(135deg, #2d2925 0%, #3a3530 100%);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
  border: 1px solid var(--color-border);
}

.toc-block h2 {
  color: var(--color-accent);
  margin-bottom: 15px;
  font-size: 24px;
}

.toc-list {
  list-style: none;
  padding: 0;
}

.toc-list li {
  margin-bottom: 10px;
}

.toc-list a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s;
  display: block;
  padding: 8px 0;
}

.toc-list a:hover {
  color: var(--color-accent);
  padding-left: 10px;
}

/* Info Section */
.info-section {
  background-color: #2a2622;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  border-left: 4px solid var(--color-accent);
}

.info-section h2 {
  color: var(--color-accent);
  margin-bottom: 20px;
  font-size: 28px;
}

.info-section p {
  margin-bottom: 15px;
  line-height: 1.8;
}

/* Table Wrapper */
.table-wrapper {
  margin-bottom: 40px;
  overflow-x: auto;
}

.table-wrapper h2 {
  color: var(--color-accent);
  margin-bottom: 20px;
  font-size: 28px;
  text-align: center;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #2a2622;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.info-table td {
  padding: 15px 20px;
  border: 1px solid var(--color-border);
  color: var(--color-text);
}

.info-table td:first-child {
  width: 35%;
  background-color: #322e2a;
}

.info-table strong {
  color: var(--color-accent);
}

/* Pros and Cons */
.pros-cons-section {
  margin-bottom: 40px;
}

.pros-cons-section h2 {
  color: var(--color-accent);
  margin-bottom: 25px;
  font-size: 28px;
  text-align: center;
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.pros-column,
.cons-column {
  background-color: #2a2622;
  border-radius: 12px;
  padding: 25px;
  border: 2px solid var(--color-border);
}

.pros-column {
  border-top: 4px solid #4ade80;
}

.cons-column {
  border-top: 4px solid #f87171;
}

.pros-title {
  color: #4ade80;
  margin-bottom: 20px;
  font-size: 22px;
}

.cons-title {
  color: #f87171;
  margin-bottom: 20px;
  font-size: 22px;
}

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

.pros-list li,
.cons-list li {
  padding: 10px 0;
  padding-left: 25px;
  position: relative;
}

.pros-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: bold;
}

.cons-list li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #f87171;
  font-weight: bold;
}

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

.winners-section h2 {
  color: var(--color-accent);
  margin-bottom: 25px;
  font-size: 28px;
  text-align: center;
}

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

.winners-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #2a2622;
  border-radius: 12px;
  overflow: hidden;
}

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

.winners-table th {
  padding: 15px;
  color: #fff;
  font-weight: 600;
  text-align: left;
}

.winners-table td {
  padding: 12px 15px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}

.winners-table tbody tr:hover {
  background-color: #322e2a;
}

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

.bonuses-section h2 {
  color: var(--color-accent);
  margin-bottom: 30px;
  font-size: 28px;
  text-align: center;
}

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

.bonus-card {
  background: linear-gradient(135deg, #2d2925 0%, #3a3530 100%);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border: 2px solid var(--color-border);
  transition: transform 0.3s, box-shadow 0.3s;
}

.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(213, 129, 45, 0.3);
}

.bonus-badge {
  background-color: var(--color-accent);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

.bonus-card h3 {
  color: var(--color-text);
  font-size: 24px;
  margin-bottom: 10px;
}

.bonus-amount {
  color: var(--color-accent);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.bonus-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  text-align: left;
}

.bonus-features li {
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  color: var(--color-text);
}

.bonus-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-size: 20px;
}

.btn-bonus-claim {
  background-color: var(--color-btn-signup);
  color: #fff;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  font-weight: 600;
}

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

/* Games and Payments Sections */
.games-section,
.payments-section {
  background-color: #2a2622;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
}

.games-section h2,
.payments-section h2 {
  color: var(--color-accent);
  margin-bottom: 20px;
  font-size: 28px;
}

.games-section h3,
.payments-section h3 {
  color: var(--color-text);
  margin-top: 20px;
  margin-bottom: 15px;
}

.games-section ul,
.payments-section ul {
  padding-left: 25px;
}

.games-section li,
.payments-section li {
  margin-bottom: 10px;
  line-height: 1.8;
}

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

.faq-section h2 {
  color: var(--color-accent);
  margin-bottom: 25px;
  font-size: 28px;
  text-align: center;
}

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

.faq-item {
  background-color: #2a2622;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 15px;
  transition: background-color 0.3s;
}

.faq-question:hover {
  background-color: #322e2a;
}

.faq-icon {
  color: var(--color-accent);
  font-size: 12px;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

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

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

.faq-answer p {
  color: var(--color-text);
  line-height: 1.8;
}

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

.author-section h2 {
  color: var(--color-accent);
  margin-bottom: 25px;
  font-size: 28px;
  text-align: center;
}

.author-card {
  background-color: #2a2622;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  gap: 30px;
  align-items: center;
  border: 1px solid var(--color-border);
}

.author-photo img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-accent);
}

.author-info {
  flex: 1;
}

.author-name {
  color: var(--color-accent);
  font-size: 24px;
  margin-bottom: 15px;
}

.author-bio {
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 15px;
}

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

.author-social-link {
  color: var(--color-btn-login);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.author-social-link:hover {
  color: var(--color-accent);
}

/* Footer */
.footer-main {
  background-color: var(--color-header);
  padding: 40px 0 20px;
  margin-top: auto;
}

.footer-content {
  text-align: center;
}

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

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

.footer-nav {
  margin-bottom: 30px;
}

.footer-menu {
  display: flex;
  justify-content: center;
  gap: 25px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-menu a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-menu a:hover {
  color: var(--color-accent);
}

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

.footer-payments h4,
.footer-providers h4 {
  color: var(--color-accent);
  margin-bottom: 15px;
  font-size: 18px;
}

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

.provider-logos {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.provider-name {
  color: var(--color-text);
  font-size: 14px;
  padding: 5px 10px;
  background-color: #3d3935;
  border-radius: 5px;
}

.footer-legal {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.footer-legal p {
  color: #9ca3af;
  font-size: 13px;
  margin-bottom: 8px;
}

.footer-license {
  color: var(--color-accent) !important;
  font-weight: 600;
}

/* Sticky Widget */
.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--color-header) 0%, #3d3935 100%);
  padding: 15px 20px;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
  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;
  gap: 20px;
}

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

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

.widget-text {
  color: var(--color-text);
  font-weight: 600;
  font-size: 16px;
}

.widget-btn {
  background-color: var(--color-btn-signup);
  color: #fff;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
}

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

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

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

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

  .burger-menu {
    display: flex;
  }

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

  .pros-cons-grid {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 768px) {
  .header-top {
    justify-content: space-between;
  }

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

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

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

  .info-table td {
    display: block;
    width: 100%;
  }

  .info-table td:first-child {
    background-color: var(--color-accent);
    color: #fff;
    font-weight: 600;
  }
}

/* Unused styles for uniqueness */
.xj8k2m {
  display: none;
}
.p9q3r7 {
  visibility: hidden;
}
.z4n8w1 {
  opacity: 0;
}
.m2v5b9 {
  position: absolute;
  left: -9999px;
}
.k7h3t6 {
  color: transparent;
}
.wp-block-group {
  margin: 0;
}
.elementor-widget-container {
  padding: 0;
}
.site-header-wrapper {
  display: block;
}
.entry-content-wrapper {
  width: 100%;
}
