*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  background: #fff;
}
body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background: #fff;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #e10600;
  text-decoration: none;
}
a:hover {
  color: #ff1e1e;
}
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.b3k9x {
  display: none;
}
.f7qw2 {
  visibility: hidden;
  position: absolute;
  pointer-events: none;
}
.xp4m1 {
  opacity: 0;
  position: fixed;
  top: -9999px;
}

.site-header {
  background: #1a1a1a;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.header-logo {
  flex-shrink: 0;
}
.header-logo img {
  height: 44px;
  width: auto;
  border-radius: 4px;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.header-nav a {
  color: #ccc;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 4px;
  transition:
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
}
.header-nav a:hover,
.header-nav a.active {
  background: #333;
  color: #fff;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.header-online {
  font-size: 11px;
  color: #aaa;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-online::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2ecc71;
  display: inline-block;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    background 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.btn--login {
  background: #e10600;
  color: #fff;
}
.btn--login:hover {
  background: #c50500;
  color: #fff;
}
.btn--signup {
  background: #ff1e1e;
  color: #fff;
}
.btn--signup:hover {
  background: #e01515;
  color: #fff;
}
.btn--bonus {
  background: linear-gradient(135deg, #e10600, #ff1e1e);
  color: #fff;
}
.btn--bonus:hover {
  background: linear-gradient(135deg, #c50500, #e10600);
  color: #fff;
}
.btn--lg {
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 8px;
}
.btn--md {
  padding: 10px 20px;
  font-size: 14px;
}
.btn--sm {
  padding: 6px 14px;
  font-size: 12px;
}
.btn--outline {
  background: transparent;
  border: 2px solid #e10600;
  color: #e10600;
}
.btn--outline:hover {
  background: #e10600;
  color: #fff;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.is-active span:nth-child(2) {
  opacity: 0;
}
.burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1a1a1a;
  z-index: 999;
  padding: 80px 20px 30px;
  overflow-y: auto;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu.is-open {
  display: flex;
}
.mobile-menu a {
  color: #ccc;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 6px;
  border-bottom: 1px solid #333;
}
.mobile-menu a:hover {
  background: #333;
  color: #fff;
}
.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}
.mobile-menu-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 16px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-title {
  font-size: clamp(26px, 5vw, 46px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.hero-desc {
  font-size: 16px;
  color: #ddd;
  margin-bottom: 28px;
  max-width: 580px;
  line-height: 1.6;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.breadcrumbs {
  padding: 10px 0;
  font-size: 13px;
}
.breadcrumbs a {
  color: #e10600;
}
.breadcrumbs span {
  color: #666;
}
.breadcrumbs-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.section {
  padding: 48px 0;
}
.section-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  margin-bottom: 24px;
  color: #1a1a1a;
}
.section-subtitle {
  font-size: 15px;
  color: #555;
  margin-bottom: 32px;
  margin-top: -16px;
}

/* INFO TABLE */
.info-table-wrap {
  overflow-x: auto;
  margin: 0 0 32px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.info-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 420px;
  background: #fff;
}
.info-table th,
.info-table td {
  text-align: left;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  font-size: 14px;
  line-height: 1.5;
}
.info-table th {
  background: #1a1a1a;
  color: #fff;
  font-weight: 600;
  width: 200px;
}
.info-table tr:nth-child(even) td {
  background: #f9f9f9;
}
.info-table tr:hover td {
  background: #fff3f3;
}
.info-table td a {
  color: #e10600;
}

/* JACKPOT */
.jackpot-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 40px 16px;
  margin: 0;
  border-radius: 0;
}
.jackpot-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.jackpot-title {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
}
.jackpot-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.jackpot-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 20px 28px;
  min-width: 180px;
  transition: transform 0.2s;
}
.jackpot-card:hover {
  transform: scale(1.04);
}
.jackpot-card-name {
  color: #aaa;
  font-size: 13px;
  margin-bottom: 6px;
}
.jackpot-card-amount {
  color: #ff1e1e;
  font-size: 26px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* BONUSES */
.bonuses-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.bonus-card {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.09);
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}
.bonus-card-head {
  background: #1a1a1a;
  padding: 20px;
  color: #fff;
}
.bonus-card-icon {
  font-size: 32px;
  margin-bottom: 8px;
}
.bonus-card-name {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}
.bonus-card-amount {
  font-size: 22px;
  font-weight: 700;
  color: #ff1e1e;
}
.bonus-card-body {
  padding: 16px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bonus-card-desc {
  font-size: 14px;
  color: #444;
  flex: 1;
}
.bonus-card-wager {
  font-size: 12px;
  color: #888;
}
.bonus-card-footer {
  padding: 12px 20px;
}

/* PROMO CODE */
.promo-section {
  background: linear-gradient(135deg, #e10600, #ff4444);
  border-radius: 14px;
  padding: 32px;
  margin: 32px 0;
  color: #fff;
  text-align: center;
  box-shadow: 0 4px 20px rgba(225, 6, 0, 0.3);
}
.promo-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.promo-desc {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 20px;
}
.promo-code-box {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.promo-code-val {
  background: #fff;
  color: #e10600;
  font-size: 20px;
  font-weight: 700;
  padding: 12px 24px;
  letter-spacing: 2px;
}
.promo-code-copy {
  background: #1a1a1a;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 20px;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}
.promo-code-copy:hover {
  background: #333;
}

.demo-section {
  background: #f5f5f5;
  border-radius: 14px;
  padding: 32px;
  margin: 32px 0;
}
.demo-iframe-wrap {
  border-radius: 10px;
  aspect-ratio: 16/9;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.demo-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}
.faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 20px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background 0.2s;
}
.faq-question:hover {
  background: #f9f9f9;
}
.faq-question.is-open {
  background: #fff3f3;
  color: #e10600;
}
.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  font-size: 18px;
  color: #e10600;
}
.faq-icon.rotated {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer.is-open {
  max-height: 600px;
}
.faq-answer-inner {
  padding: 12px 20px 18px;
  font-size: 14px;
  color: #444;
  line-height: 1.7;
}

/* REVIEWS */
.reviews-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.review-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: #e0e0e0;
  flex-shrink: 0;
}
.review-name {
  font-weight: 600;
  font-size: 15px;
}
.review-stars {
  color: #e10600;
  font-size: 16px;
  letter-spacing: 2px;
}
.review-text {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  flex: 1;
}

/* REVIEW FORM */
.review-form {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 28px;
  max-width: 560px;
  margin-top: 24px;
}
.review-form h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #444;
}
.form-group input,
.form-group textarea {
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  transition: border-color 0.2s;
  background: #fff;
  color: #1a1a1a;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e10600;
  box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-success {
  background: #e8f5e9;
  color: #2e7d32;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  display: none;
  margin-top: 12px;
}

/* AUTHOR */
.author-block {
  background: #f9f9f9;
  border-radius: 14px;
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin: 32px 0;
  border: 1px solid #eee;
}
.author-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #e0e0e0;
}
.author-info {
  flex: 1;
}
.author-name {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}
.author-role {
  font-size: 13px;
  color: #888;
  margin-bottom: 8px;
}
.author-bio {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 10px;
}
.author-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.author-links a {
  font-size: 12px;
  color: #e10600;
  border: 1px solid #e10600;
  border-radius: 20px;
  padding: 4px 12px;
  transition:
    background 0.2s,
    color 0.2s;
}
.author-links a:hover {
  background: #e10600;
  color: #fff;
}

/* DOWNLOAD BUTTONS */
.download-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 10px;
  background: #1a1a1a;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  transition:
    background 0.2s,
    transform 0.2s;
  text-decoration: none;
}
.download-btn:hover {
  background: #333;
  color: #fff;
  transform: translateY(-2px);
}
.download-btn svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.download-btn-sub {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.7;
  display: block;
  line-height: 1.2;
}
.download-btn-main {
  font-size: 15px;
  font-weight: 700;
  display: block;
  line-height: 1.3;
}

/* ALTERNATIVES */
.alts-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.alt-card {
  flex: 1 1 160px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  padding: 16px;
  text-align: center;
  transition: transform 0.2s;
}
.alt-card:hover {
  transform: translateY(-3px);
}
.alt-card-name {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 8px 0 4px;
}
.alt-card-bonus {
  font-size: 12px;
  color: #e10600;
  font-weight: 600;
}

.video-section {
  margin: 32px 0;
}
.video-wrap {
  border-radius: 12px;
  aspect-ratio: 16/9;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* JACKPOT ANIM */
@keyframes jcount {
  from {
    opacity: 0.6;
  }
  to {
    opacity: 1;
  }
}
.jackpot-card-amount {
  animation: jcount 1.5s ease infinite alternate;
}

/* PROVIDERS */
.providers-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 24px 0;
}
.provider-tag {
  background: #f0f0f0;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  transition:
    background 0.2s,
    color 0.2s;
}
.provider-tag:hover {
  background: #1a1a1a;
  color: #fff;
}

/* RTP TABLE */
.rtp-table-wrap {
  overflow-x: auto;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.rtp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 380px;
  background: #fff;
}
.rtp-table th {
  background: #e10600;
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
}
.rtp-table td {
  padding: 11px 16px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 13px;
  color: #333;
}
.rtp-table tr:last-child td {
  border-bottom: none;
}
.rtp-table tr:hover td {
  background: #fff3f3;
}
.rtp-badge {
  display: inline-block;
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: 20px;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 700;
}

/* REG METHODS */
.reg-methods {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.reg-method {
  flex: 1 1 200px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  padding: 20px;
  text-align: center;
  transition: transform 0.2s;
}
.reg-method:hover {
  transform: translateY(-3px);
}
.reg-method-icon {
  font-size: 36px;
  margin-bottom: 8px;
}
.reg-method-name {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}
.reg-method-desc {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
}

/* SLIDER */
.slider-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.slider-track {
  display: flex;
  transition: transform 0.4s ease;
  gap: 0;
}
.slider-slide {
  min-width: 100%;
  position: relative;
}
.slider-slide img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.slider-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
}
.slider-title {
  color: #fff;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}
.slider-desc {
  color: #ddd;
  font-size: 14px;
  margin-bottom: 16px;
  max-width: 480px;
}
.slider-btn-prev,
.slider-btn-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.slider-btn-prev {
  left: 12px;
}
.slider-btn-next {
  right: 12px;
}
.slider-btn-prev:hover,
.slider-btn-next:hover {
  background: rgba(225, 6, 0, 0.8);
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}
.slider-dot.is-active {
  background: #e10600;
  transform: scale(1.3);
}

/* CONTENT BLOCK */
.content-block {
  margin: 32px 0;
  line-height: 1.75;
}
.content-block h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 24px 0 12px;
  color: #1a1a1a;
}
.content-block h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 20px 0 10px;
  color: #1a1a1a;
}
.content-block h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 16px 0 8px;
  color: #1a1a1a;
}
.content-block p {
  margin: 0 0 14px;
  color: #333;
  font-size: 15px;
}
.content-block ul,
.content-block ol {
  margin: 0 0 14px 24px;
}
.content-block ul li,
.content-block ol li {
  margin-bottom: 6px;
  font-size: 14px;
  color: #333;
}
.content-block a {
  color: #e10600;
}
.content-block a:hover {
  color: #ff1e1e;
}
.content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.content-block table th,
.content-block table td {
  padding: 10px 14px;
  border: 1px solid #ddd;
  text-align: left;
}
.content-block table th {
  background: #1a1a1a;
  color: #fff;
}
.content-block table tr:nth-child(even) td {
  background: #f9f9f9;
}
.content-block blockquote {
  border-left: 4px solid #e10600;
  padding: 12px 20px;
  background: #fff3f3;
  border-radius: 0 8px 8px 0;
  margin: 16px 0;
  color: #555;
  font-style: italic;
}
.content-block img {
  border-radius: 8px;
  margin: 12px 0;
}
.content-block strong {
  color: #1a1a1a;
}

/* TECHNICAL PAGE */
.technical-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 32px 0;
}
.technical-content h1 {
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 700;
  margin-bottom: 24px;
  color: #1a1a1a;
}
.technical-content h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 28px 0 12px;
  color: #1a1a1a;
}
.technical-content h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 20px 0 8px;
  color: #1a1a1a;
}
.technical-content p {
  margin: 0 0 14px;
  font-size: 15px;
  color: #333;
  line-height: 1.75;
}
.technical-content ul,
.technical-content ol {
  margin: 0 0 16px 24px;
}
.technical-content li {
  font-size: 14px;
  color: #333;
  margin-bottom: 6px;
  line-height: 1.6;
}
.technical-content a {
  color: #e10600;
}

/* FOOTER */
.site-footer {
  background: #1a1a1a;
  color: #aaa;
  padding: 40px 0 20px;
  margin-top: auto;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.footer-top {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.footer-logo-col {
  flex: 0 0 auto;
}
.footer-logo {
  height: 40px;
  width: auto;
  filter: brightness(0.8);
}
.footer-tagline {
  font-size: 12px;
  color: #666;
  margin-top: 6px;
  max-width: 180px;
}
.footer-nav-col {
  flex: 1 1 160px;
}
.footer-nav-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666;
  margin-bottom: 10px;
}
.footer-nav a {
  display: block;
  font-size: 13px;
  color: #888;
  padding: 3px 0;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #fff;
}
.footer-payments {
  margin-bottom: 20px;
}
.footer-payments-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666;
  margin-bottom: 10px;
}
.footer-payments-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.payment-badge {
  background: #2a2a2a;
  border: 1px solid #333;
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #ccc;
}
.footer-providers {
  margin-bottom: 20px;
}
.footer-providers-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.provider-badge {
  background: #222;
  border: 1px solid #2e2e2e;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  color: #888;
}
.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.footer-copyright {
  font-size: 12px;
  color: #555;
}
.footer-legal-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-legal-links a {
  font-size: 12px;
  color: #555;
  transition: color 0.2s;
}
.footer-legal-links a:hover {
  color: #aaa;
}
.footer-disclaimer {
  font-size: 11px;
  color: #444;
  margin-top: 12px;
  line-height: 1.5;
  border-top: 1px solid #222;
  padding-top: 12px;
}

.bottom-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: #1a1a1a;
  border-top: 2px solid #e10600;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}
.widget-text {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
.widget-text span {
  color: #ff1e1e;
  font-size: 16px;
  font-weight: 700;
}
.widget-btns {
  display: flex;
  gap: 8px;
}
.widget-close {
  background: none;
  border: none;
  color: #666;
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color 0.2s;
}
.widget-close:hover {
  color: #fff;
}
body.widget-open {
  padding-bottom: 60px;
}

.deposit-bonus {
  background: #fff;
  border: 2px solid #e10600;
  border-radius: 14px;
  padding: 28px;
  margin: 24px 0;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.deposit-bonus-icon {
  font-size: 56px;
  flex-shrink: 0;
}
.deposit-bonus-info {
  flex: 1;
}
.deposit-bonus-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
}
.deposit-bonus-amount {
  font-size: 28px;
  font-weight: 700;
  color: #e10600;
  margin-bottom: 8px;
}
.deposit-bonus-desc {
  font-size: 14px;
  color: #555;
  margin-bottom: 16px;
  line-height: 1.5;
}

.get-bonus-section {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  border-radius: 14px;
  padding: 32px;
  text-align: center;
  margin: 0 0 32px;
  color: #fff;
}
.get-bonus-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}
.get-bonus-amount {
  font-size: 36px;
  font-weight: 700;
  color: #ff1e1e;
  margin-bottom: 8px;
}
.get-bonus-desc {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 20px;
}
.get-bonus-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  background: #1a1a1a;
}
.hero-slider .slider-slide img {
  height: 380px;
}

@media (max-width: 767px) {
  .bonuses-grid,
  .reviews-grid,
  .alts-grid,
  .reg-methods {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    gap: 12px;
    -webkit-overflow-scrolling: touch;
  }
  .bonus-card,
  .review-card,
  .alt-card,
  .reg-method {
    min-width: 260px;
    scroll-snap-align: start;
    flex-shrink: 0;
  }
}

.wp-block-group,
.wp-block-cover,
.wp-has-aspect-ratio {
  display: block;
}
.entry-content,
.post-content {
  display: block;
}
.elementor-section,
.elementor-widget {
  display: block;
}
.wpcf7-not-valid-tip {
  display: none;
}
.screen-reader-text {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
#qc-cmp2-container {
  z-index: 9999;
}
[data-elementor-type] {
  display: block;
}
.wpml-ls-legacy-dropdown {
  display: none;
}
.et_pb_section,
.et_pb_row,
.et_pb_column,
.et_pb_module {
  display: block;
}

@media (max-width: 900px) {
  .header-nav {
    display: none;
  }
}
@media (max-width: 767px) {
  .section {
    padding: 32px 0;
  }
  .hero {
    min-height: 320px;
  }
  .hero-content {
    padding: 40px 16px;
  }
  .jackpot-grid {
    gap: 12px;
  }
  .jackpot-card {
    padding: 14px 18px;
  }
  .footer-top {
    gap: 24px;
  }
  .download-btns {
    gap: 10px;
  }
  .author-block {
    flex-direction: column;
    gap: 12px;
  }
  .deposit-bonus {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .header-actions .btn--login {
    display: none;
  }
  .bonus-card {
    min-width: 240px;
  }
}

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

.cx-af91b {
  display: none;
  position: absolute;
  overflow: hidden;
}
.d8qz7 {
  visibility: hidden;
  height: 0;
  width: 0;
  overflow: hidden;
}
.qm3xj {
  opacity: 0;
  pointer-events: none;
  user-select: none;
}
.nr47t::after {
  content: "";
  display: none;
  clear: both;
}
.wp-content-placeholder {
  display: none;
}

@media (max-width: 900px) {
  .burger {
    display: flex;
    flex-shrink: 0;
  }
}

@media (max-width: 767px) {
  .header-actions {
    display: none;
  }
}

.technical-content {
  background: #f7f7f7;
  border-radius: 12px;
  padding: 32px;
  margin: 24px auto;
}

@media (max-width: 767px) {
  .technical-content {
    padding: 20px 16px;
    margin: 16px auto;
    border-radius: 10px;
  }
}

.content-block {
  background: #f7f7f7;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 32px;
}

@media (max-width: 768px) {
  .content-block {
    padding: 20px 16px;
    border-radius: 12px;
  }
}
