:root {
  --color-bg-site: #b7915a;
  --color-bg-dark: #624c3c;
  --color-cta-primary: #fffefe;
  --color-cta-secondary: #f7cf06;
  --color-text-light: #ffffff;
  --color-text-dark: #1a1a1a;
  
  --radius: 12px;
  --spacing: 16px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif;
  background-color: var(--color-bg-site);
  color: var(--color-text-dark);
}

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

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

.lb-xk7p2 { display: grid; grid-template-columns: 1fr 1fr; opacity: 0.9; }
.lb-q9r3m { border: 2px dashed #ccc; padding: 20px; }
.wp-block-group { display: block; clear: both; }
.has-text-align-center { text-align: center; }
.is-layout-flex { display: flex; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing);
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

a {
  text-decoration: none;
  color: var(--color-cta-secondary);
  transition: var(--transition);
}

a:hover {
  opacity: 0.8;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-cta-primary);
  color: var(--color-text-dark);
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius);
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  gap: 8px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(255, 254, 254, 0.5);
  color: var(--color-text-dark);
  opacity: 1;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-cta-secondary);
  color: var(--color-text-dark);
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius);
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(247, 207, 6, 0.5);
  color: var(--color-text-dark);
  opacity: 1;
}

.lb-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.lb-header.scrolled {
  padding: 5px 0;
  background-color: rgba(98, 76, 60, 0.95);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 15px;
  transition: padding 0.3s ease;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  color: var(--color-text-light);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a:hover {
  color: var(--color-cta-secondary);
}

.nav-links svg {
  width: 18px;
  height: 18px;
}

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

.burger-menu {
  display: none;
  background: none;
  border: none;
  color: var(--color-text-light);
  cursor: pointer;
  padding: 5px;
}

.burger-menu svg {
  width: 28px;
  height: 28px;
}

.lb-hero {
  margin-top: 60px;
  min-height: 80vh;
  background-image: linear-gradient(to bottom, #624c3c 0%, rgba(98, 76, 60, 0.7) 40%, transparent 100%), url('/le-bandit-hero.avif');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 60px 0;
  color: var(--color-text-light);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.star-rating {
  font-size: 1.5rem;
  color: var(--color-cta-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,0,0,0.4);
  padding: 8px 16px;
  border-radius: 30px;
}

.star-rating span {
  font-size: 1rem;
  color: var(--color-text-light);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-top: 10px;
}

.link-secondary {
  color: var(--color-cta-secondary);
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

section {
  padding: 60px 0;
}

section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: var(--color-bg-dark);
}

.section-box {
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  padding-top: 40px;
  padding-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.jackpot-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.jackpot-card {
  flex: 1;
  background: linear-gradient(135deg, #624c3c, #3a2b21);
  color: var(--color-text-light);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  border: 2px solid var(--color-cta-secondary);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.jackpot-card h3 {
  color: var(--color-cta-secondary);
  font-size: 1.5rem;
  text-transform: uppercase;
}

.jackpot-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-cta-primary);
}

.jackpot-winners {
  background: rgba(0,0,0,0.3);
  border-radius: 8px;
  padding: 15px;
  text-align: left;
}

.jackpot-winners p {
  font-size: 0.9rem;
  margin-bottom: 5px;
  display: flex;
  justify-content: space-between;
}

.table-responsive {
  overflow-x: auto;
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
}

.winners-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.winners-table th, .winners-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.winners-table th {
  background-color: var(--color-bg-dark);
  color: #fff;
  font-weight: 600;
}

.winners-table tr:nth-child(1) td { font-weight: bold; background-color: rgba(247, 207, 6, 0.2); }
.winners-table tr:nth-child(2) td { font-weight: bold; background-color: rgba(192, 192, 192, 0.2); }
.winners-table tr:nth-child(3) td { font-weight: bold; background-color: rgba(205, 127, 50, 0.2); }

.demo-container {
  background: var(--color-bg-dark);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  color: #fff;
}

.demo-iframe-wrapper {
  width: 100%;
  height: 600px;
  border-radius: 8px;
  overflow: hidden;
  margin: 20px 0;
  background: #000;
}

.demo-iframe-wrapper iframe {
  width: 100%;
  height: 100%;
}

.similar-grid {
  display: flex;
  gap: 24px;
}

.game-card {
  flex: 1;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}

.game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.game-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 15px;
}

.game-card-content h3 {
  font-size: 1.4rem;
}

.game-card-actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
}

.game-card-actions a {
  flex: 1;
  text-align: center;
}

.lb-review-content {
  padding: 30px;
  border-radius: var(--radius);
  line-height: 1.8;
}

.lb-review-content h2, .lb-review-content h3 {
  color: var(--color-bg-dark);
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: left;
}

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

.lb-review-content ul, .lb-review-content ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
  padding: 20px;
  background: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--color-cta-secondary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fafafa;
  padding: 0 20px;
}

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

.author-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin: 0 auto;
}

.author-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--color-bg-site);
}

.author-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.author-info h3 {
  font-size: 1.5rem;
  color: var(--color-bg-dark);
}

.author-role {
  color: #666;
  font-weight: 500;
}

.author-bio-full {
  display: none;
  margin-top: 10px;
}

.author-bio-full.show {
  display: block;
}

.read-more-btn {
  background: none;
  border: none;
  color: var(--color-cta-secondary);
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  padding: 0;
}

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

.social-links svg {
  width: 24px;
  height: 24px;
  fill: var(--color-bg-dark);
}

.lb-footer {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  padding: 60px 0 20px;
  margin-top: auto;
}
.footer-logo {display: block;width: fit-content;}
.footer-logo img{height: 60px;width: auto;}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 30px;
  margin-bottom: 30px;
  gap: 20px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-nav a {
  color: #ccc;
}

.footer-nav a:hover {
  color: var(--color-cta-secondary);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-bottom: 30px;
}

.badge {
  background: rgba(255,255,255,0.1);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: #aaa;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}
.footer-bottom-link {display: block;width: fit-content;}

.footer-bottom p {
  line-height: 1.5;
}

.sticky-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 999;
  transform: translateY(150%);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid var(--color-cta-secondary);
}
.sticky-widget img{height: 70px;width: auto;
}

.sticky-widget.show {
  transform: translateY(0);
}

.sticky-close {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #333;
  color: #fff;
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.sticky-content p {
  font-weight: 700;
  color: var(--color-bg-dark);
  margin-bottom: 5px;
}

@media (max-width: 992px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--color-bg-dark);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  }
  .nav-links.show {
    display: flex;
  }
  .burger-menu {
    display: block;
  }
  .jackpot-grid {
    flex-direction: column;
  }
  .lb-review-content {padding: 28px;}
  .footer-nav {justify-content: center;}
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .similar-grid {
    overflow-x: auto;
    padding-bottom: 20px;
  }
  .game-card {
    min-width: 280px;
    scroll-snap-align: start;
  }
  .author-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-top {
    flex-direction: column;
    gap: 20px;
  }
  .sticky-widget {
    bottom: 20px;
    right: 50%;
    transform: translate(50%, 150%);
    width: 90%;
    justify-content: center;
  }
  .sticky-widget.show {
    transform: translate(50%, 0);
  }
  .lb-review-content {padding: 0;}
  .section h2 {font-size: 2rem;}
  .author-info {align-items: center;}
}
@media (max-width: 450px) {
.header-ctas .btn-secondary{display: none;}
section h2 {font-size: 1.5rem;}

}
