@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  --bg: #2c1753;
  --header: #463195;
  --primary: #ffdc41;
  --secondary: #4172c1;
  --card: #1e1040;
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.65);
  --border: rgba(255, 255, 255, 0.12);
  --radius: 12px;
}

*,
::before,
::after {
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.has-widget {
  padding-bottom: 70px;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition:
    opacity 0.2s ease,
    color 0.2s ease;
}

a:hover {
  opacity: 0.85;
}

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

h1,
h2,
h3,
h4 {
  color: #fff;
  margin-top: 0;
  line-height: 1.2;
}

p {
  margin-bottom: 1.25em;
  line-height: 1.7;
  color: var(--text-muted);
}

ul,
ol {
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5em;
  color: var(--text-muted);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

th {
  background: var(--header);
  color: #fff;
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
}

td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

tr:hover td {
  background: rgba(255, 255, 255, 0.04);
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

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

.container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

main {
  flex: 1;
}

.section {
  padding: 4rem 0;
}

.section-sm {
  padding: 2.5rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #1a0e2e;
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  background: #ffe84d;
  transform: translateY(-1px);
  opacity: 1;
}

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

.btn-secondary:hover {
  background: #4f83d4;
  opacity: 1;
}

.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 1rem;
  border-radius: 10px;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

header.site-header {
  background: var(--header);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.9rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.header-logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo span {
  color: var(--primary);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  flex-wrap: wrap;
}

.header-nav a {
  color: rgba(255, 255, 255, 0.85);
  padding: 0.4rem 0.7rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  transition:
    color 0.15s,
    background 0.15s;
}

.header-nav a:hover,
.header-nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  opacity: 1;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.header-players {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.header-players::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

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

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

.burger span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
}

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

footer.site-footer {
  background: var(--header);
  padding: 3rem 0 2rem;
  margin-top: auto;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-logo {
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.footer-logo span {
  color: var(--primary);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-bottom: 2rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.chip {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-size: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.5rem;
  font-weight: 600;
  display: block;
}

.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

.footer-copy p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
  margin: 0.25rem 0;
}

.hero {
  background: linear-gradient(135deg, #463195 0%, #2c1753 60%, #1a0e33 100%);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/laban.png") center/cover;
  opacity: 0.12;
  pointer-events: none;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero h1 em {
  color: var(--primary);
  font-style: normal;
}

.hero p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 580px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-badge svg,
.hero-badge::before {
  color: var(--primary);
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: relative;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.card-gold {
  border-color: rgba(255, 220, 65, 0.4);
}

.card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.card-amount {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 1rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.bonus-slider {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
}

.bonus-slider::-webkit-scrollbar {
  height: 4px;
}

.bonus-slider::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

.bonus-slider .card {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: min(280px, 85vw);
}

@media (min-width: 768px) {
  .bonus-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    overflow-x: unset;
  }
  .bonus-slider .card {
    width: 100%;
  }
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table tr {
  border-bottom: 1px solid var(--border);
}

.info-table td {
  padding: 0.85rem 1rem;
  vertical-align: top;
}

.info-table td:first-child {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  width: 40%;
  font-size: 0.9rem;
}

.info-table td:last-child {
  color: #fff;
  font-weight: 600;
}

.jackpot-bar {
  background: linear-gradient(90deg, #1e0d3e 0%, #2c1753 100%);
  border-bottom: 2px solid var(--primary);
  padding: 0.75rem 0;
}

.jackpot-bar-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  overflow: hidden;
}

.jackpot-label {
  color: var(--primary);
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.jackpot-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.jackpot-name {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

.jackpot-amount {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--primary);
  font-variant-numeric: tabular-nums;
}

.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.pros-col,
.cons-col {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
}

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

.cons-col {
  border-top: 3px solid #f87171;
}

.pros-col h3 {
  color: #4ade80;
}

.cons-col h3 {
  color: #f87171;
}

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

.pros-cons-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.pros-cons-list li:last-child {
  border-bottom: none;
}

.pros-cons-list.pros li::before {
  content: "✓";
  color: #4ade80;
  font-weight: 700;
  flex-shrink: 0;
}

.pros-cons-list.cons li::before {
  content: "✗";
  color: #f87171;
  font-weight: 700;
  flex-shrink: 0;
}

.winners-table {
  width: 100%;
}

.winners-table th {
  background: #1a0d36;
}

.winners-table .rank-1 {
  color: var(--primary);
  font-weight: 900;
}

.winners-table .rank-2 {
  color: #c0c0c0;
}

.winners-table .rank-3 {
  color: #cd7f32;
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  flex-shrink: 0;
  color: var(--primary);
  transition: transform 0.2s;
}

.faq-item.open .faq-question::after {
  content: "−";
}

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

.faq-item.open .faq-answer {
  max-height: 600px;
}

.faq-answer-inner {
  padding: 0 1.25rem 1.25rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.7;
}

.wheel-wrapper {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border);
}

.wheel-container {
  position: relative;
  display: inline-block;
}

.wheel-pointer {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 20px solid var(--primary);
  z-index: 10;
}

#wheelCanvas {
  border-radius: 50%;
  display: block;
}

.wheel-result {
  margin-top: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  font-weight: 700;
  display: none;
}

.wheel-result.win {
  display: block;
  background: rgba(74, 222, 128, 0.15);
  border: 1px solid #4ade80;
  color: #4ade80;
}

.wheel-result.lose {
  display: block;
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid #f87171;
  color: #f87171;
}

.author-block {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--header));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}

.author-info h4 {
  margin: 0 0 0.25rem;
  color: #fff;
  font-size: 1rem;
}

.author-info p {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.author-meta {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.author-meta a {
  color: var(--secondary);
}

.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: linear-gradient(90deg, #1a0e2e, #2c1753);
  border-top: 2px solid var(--primary);
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sticky-widget-text {
  color: #fff;
  font-size: 0.9rem;
}

.sticky-widget-text strong {
  color: var(--primary);
  display: block;
  font-size: 1rem;
}

.sticky-widget a {
  text-decoration: none;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  padding: 1rem 0;
  color: rgba(255, 255, 255, 0.45);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb span.sep {
  color: rgba(255, 255, 255, 0.25);
}

.promo-block {
  background: linear-gradient(135deg, #1a0d36, #2c1753);
  border: 1px solid rgba(255, 220, 65, 0.3);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.promo-code-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.promo-code {
  font-family: monospace;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 0.1em;
  background: rgba(255, 220, 65, 0.1);
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  border: 1px dashed rgba(255, 220, 65, 0.5);
}

.copy-btn {
  background: var(--secondary);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
}

.copy-btn.copied {
  background: #4ade80;
  color: #0a2e0a;
}

.content-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.content-block h2,
.content-block h3 {
  color: #fff;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
  margin-top: 1.5rem;
}

.content-block p {
  color: rgba(255, 255, 255, 0.75);
}

.content-block ul li {
  color: rgba(255, 255, 255, 0.75);
}

.content-block table {
  width: 100%;
}

.content-block td,
.content-block th {
  padding: 0.6rem 0.9rem;
  border: 1px solid var(--border);
  font-size: 0.9rem;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #1a0e2e;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}

.stat-card-value {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.stat-card-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.problem-card {
  background: var(--card);
  border-left: 3px solid var(--secondary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem;
}

.rating-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}

.rating-score {
  font-size: 4rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.rating-stars {
  color: var(--primary);
  font-size: 1.5rem;
  margin: 0.5rem 0;
}

.rating-bars {
  text-align: left;
  margin-top: 1.5rem;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.rating-bar-label {
  width: 70px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.rating-bar-track {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1s ease-out;
  background: var(--primary);
  width: 0;
}

.review-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.review-form label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.review-form input[type="text"],
.review-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  color: #fff;
  font-size: 0.9rem;
  font-family: inherit;
  resize: vertical;
}

.review-form input:focus,
.review-form textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(65, 114, 193, 0.2);
}

.star-select {
  display: flex;
  gap: 0.4rem;
  cursor: pointer;
}

.star-select span {
  font-size: 1.75rem;
  color: rgba(255, 255, 255, 0.25);
  transition: color 0.15s;
  cursor: pointer;
}

.star-select span.active,
.star-select span:hover {
  color: var(--primary);
}

.helpful-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
}

.helpful-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.875rem;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.helpful-btn:hover {
  background: rgba(255, 255, 255, 0.14);
}

.helpful-btn.yes:hover {
  border-color: #4ade80;
  color: #4ade80;
}

.helpful-btn.no:hover {
  border-color: #f87171;
  color: #f87171;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
}

.badge {
  background: rgba(255, 220, 65, 0.15);
  color: var(--primary);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.5rem 0;
}

.text-center {
  text-align: center;
}
.mb-sm {
  margin-bottom: 1rem;
}
.mb-md {
  margin-bottom: 2rem;
}
.mb-lg {
  margin-bottom: 3rem;
}
.mt-md {
  margin-top: 2rem;
}
.mt-lg {
  margin-top: 3rem;
}

.highlight-box {
  background: linear-gradient(135deg, #1e0d3e, #2c1753);
  border: 1px solid rgba(255, 220, 65, 0.2);
  border-radius: var(--radius);
  padding: 2rem;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
}
.game-card {
  background: var(--card);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.game-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.game-card-body {
  padding: 0.75rem;
  text-align: center;
}
.game-card-title {
  font-size: 0.85rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0;
}

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

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

.wp-block-paragraph,
.wp-block-heading,
.wp-block-image,
.wp-block-list {
  font: inherit;
  color: inherit;
}
.elementor-section,
.elementor-container,
.elementor-column,
.elementor-widget {
  display: block;
}
.site-main,
.post,
.page,
.entry-content,
.entry-header,
.entry-footer {
  display: block;
}
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.alignright {
  float: right;
  margin-left: 1em;
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.has-text-color,
.has-background {
  color: inherit;
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
  .burger {
    display: flex;
  }
  .pros-cons-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 3rem 0 2.5rem;
  }
  .hero h1 {
    font-size: 1.75rem;
  }
  .stat-cards {
    grid-template-columns: 1fr 1fr;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 2.5rem 0;
  }
  .section-title {
    font-size: 1.4rem;
  }
  .sticky-widget {
    padding: 0.7rem 1rem;
  }
  .footer-chips {
    gap: 0.35rem;
  }
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body,
main,
section,
header,
footer,
.container,
.container-narrow,
.header-inner,
.footer-inner,
.hero-content,
.jackpot-bar-inner {
  min-width: 0;
}

.header-login {
  display: inline-flex;
}

.mobile-menu-actions {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: min(360px, calc(100% - 32px));
  text-align: center;
}

.footer-tech-links {
  margin-bottom: 2rem;
}

.footer-tech-title {
  color: var(--primary);
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.provider-card {
  min-width: 0;
  background: rgba(255,255,255,0.05);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
}

.content-block,
.technical-content,
.prose {
  display: block;
  visibility: visible;
  opacity: 1;
  transform: none;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: normal;
}

.content-block *,
.technical-content *,
.prose * {
  min-width: 0;
}

.content-block img,
.content-block video,
.content-block iframe,
.technical-content img,
.technical-content video,
.technical-content iframe,
.prose img,
.prose video,
.prose iframe {
  max-width: 100%;
}

.content-table-scroll {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.5rem 0;
}

.content-table-scroll table {
  margin: 0;
  min-width: 620px;
}

.animate-in,
.animate-in.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  body.has-widget {
    padding-bottom: 112px;
  }

  .container,
  .container-narrow,
  .header-inner,
  .footer-inner,
  .hero-content,
  .jackpot-bar-inner {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .header-inner {
    min-height: 64px;
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .header-logo {
    font-size: 1.35rem;
    white-space: nowrap;
  }

  .header-nav {
    display: none !important;
  }

  .header-right {
    margin-left: auto;
    gap: 8px;
    min-width: 0;
  }

  .header-login {
    display: none !important;
  }

  .header-register {
    display: inline-flex !important;
    padding: 0.6rem 0.85rem;
    font-size: 0.82rem;
    max-width: 145px;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }

  .burger {
    display: flex !important;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1002;
  }

  .mobile-menu {
    display: none !important;
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    padding: 72px 20px 28px !important;
    background: #2c1753 !important;
    z-index: 1001 !important;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.4rem;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  }

  .mobile-menu.open {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  .mobile-menu > a {
    width: min(420px, 100%);
    padding: 0.8rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
    font-size: 1.05rem;
    text-align: center;
  }

  .mobile-close {
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1003;
  }

  .hero {
    padding: 3rem 0 2.5rem;
  }

  .hero h1 {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
    overflow-wrap: anywhere;
  }

  .hero p {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-badges {
    display: grid;
    grid-template-columns: 1fr;
  }

  .jackpot-bar-inner {
    overflow-x: auto;
    gap: 1.25rem;
    scrollbar-width: none;
  }

  .jackpot-bar-inner::-webkit-scrollbar {
    display: none;
  }

  .jackpot-item,
  .jackpot-label {
    flex: 0 0 auto;
  }

  .section {
    padding: 2.25rem 0;
  }

  .content-block,
  .technical-content,
  .card,
  .highlight-box,
  .promo-block,
  .review-form,
  .rating-block,
  .author-block,
  .pros-col,
  .cons-col,
  .problem-card,
  .stat-card {
    max-width: 100%;
  }

  .content-block,
  .technical-content {
    padding: 1.25rem;
  }

  .content-block h1,
  .content-block h2,
  .content-block h3,
  .technical-content h1,
  .technical-content h2,
  .technical-content h3 {
    overflow-wrap: anywhere;
  }

  .cards-grid,
  .pros-cons-grid,
  .problem-cards,
  .provider-grid {
    grid-template-columns: 1fr !important;
  }

  .games-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bonus-slider {
    display: flex !important;
    overflow-x: auto !important;
    gap: 14px;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }

  .bonus-slider .card {
    flex: 0 0 min(86vw, 340px);
    width: min(86vw, 340px) !important;
    max-width: min(86vw, 340px);
    scroll-snap-align: start;
  }

  .highlight-box,
  .promo-block,
  .author-block,
  .helpful-block,
  .step {
    min-width: 0;
  }

  .highlight-box[style*="display: flex"],
  .promo-block,
  .author-block,
  .helpful-block {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .highlight-box > div[style*="min-width"] {
    min-width: 0 !important;
    width: 100%;
  }

  .author-avatar {
    flex-shrink: 0;
  }

  .info-table,
  .winners-table {
    min-width: 560px;
  }

  .table-responsive {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
  }

  .btn,
  .copy-btn,
  button,
  input,
  textarea,
  select {
    max-width: 100%;
  }

  .btn {
    white-space: normal;
    text-align: center;
    justify-content: center;
  }

  .promo-code-box {
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
  }

  .promo-code {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  #wheelCanvas {
    width: min(300px, 100%);
    height: auto;
    margin: 0 auto;
  }

  .sticky-widget {
    min-height: 94px;
    padding: 10px 14px;
    gap: 10px;
    align-items: center;
  }

  .sticky-widget-text {
    min-width: 0;
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .sticky-widget-text strong {
    font-size: 0.88rem;
  }

  .sticky-widget .btn {
    flex: 0 0 auto;
    padding: 0.65rem 0.9rem;
    font-size: 0.8rem;
  }

  .footer-inner {
    overflow: hidden;
  }

  .footer-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }

  .footer-nav a,
  .footer-chips,
  .footer-copy,
  .footer-tech-links {
    max-width: 100%;
  }

  .footer-chips {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 560px) {
  .container,
  .container-narrow,
  .header-inner,
  .footer-inner,
  .hero-content,
  .jackpot-bar-inner {
    padding-left: 12px;
    padding-right: 12px;
  }

  .header-logo {
    font-size: 1.15rem;
  }

  .header-register {
    max-width: 118px;
    padding: 0.55rem 0.65rem;
    font-size: 0.76rem;
  }

  .burger {
    width: 38px;
    height: 38px;
  }

  .content-block,
  .technical-content,
  .card,
  .highlight-box,
  .promo-block,
  .review-form,
  .rating-block,
  .pros-col,
  .cons-col {
    padding: 1rem;
  }

  .games-grid,
  .stat-cards {
    grid-template-columns: 1fr;
  }

  .author-block,
  .helpful-block,
  .step {
    flex-direction: column;
  }

  .content-table-scroll table,
  .info-table,
  .winners-table {
    min-width: 520px;
  }

  .sticky-widget {
    padding: 9px 10px;
  }

  .sticky-widget .btn {
    padding: 0.6rem 0.7rem;
    font-size: 0.75rem;
  }
}
