:root {
  --color-bg: #110d0e;
  --color-header: #450b17;
  --color-header-dark: #350810;
  --color-btn-login: #e0e0e0;
  --color-btn-reg: #c7051d;
  --color-btn-reg-hover: #a30418;
  --color-text: #f0e8ea;
  --color-text-muted: #b89aa0;
  --color-accent: #c7051d;
  --color-accent2: #e8b860;
  --color-border: #3a1520;
  --color-card: #1d1215;
  --color-card2: #20161a;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --font-main: "Manrope", sans-serif;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--color-bg);
}

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

a {
  color: var(--color-btn-login);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent2);
}

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

ul {
  list-style: none;
}

.xw9k2 {
  display: none;
}
.f3m7p {
  visibility: hidden;
  position: absolute;
}

.b7r2q-wrap {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-gap {
  padding: 64px 0;
}

.section-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 32px;
  text-align: center;
  letter-spacing: -0.3px;
  text-wrap: balance;
}

.section-title span {
  color: var(--color-accent);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

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

.t9z1h {
  display: none;
  width: 0;
  height: 0;
  overflow: hidden;
}

.q4x8m-placeholder {
  display: none;
}

#wpadminbar {
  display: none;
}

.wp-caption {
  margin: 0;
}

.site-header {
  background-color: var(--color-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding: 8px 20px;
}

.header-logo a {
  display: flex;
  align-items: center;
}

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

.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-nav ul li a {
  color: #f0e8ea;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition:
    background var(--transition),
    color var(--transition);
  white-space: nowrap;
}

.header-nav ul li a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-accent2);
}

.header-online {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: #c8a8b0;
  white-space: nowrap;
}

.header-online .online-dot {
  width: 8px;
  height: 8px;
  background: #2ecc71;
  border-radius: 50%;
  animation: pulse-dot 1.6s infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.5);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(46, 204, 113, 0);
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 13px;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.btn:active {
  transform: scale(0.97);
}

.btn-login {
  background: var(--color-btn-login);
  color: #1a0a0e;
}

.btn-login:hover {
  background: #f5f5f5;
  color: #1a0a0e;
  box-shadow: 0 4px 12px rgba(224, 224, 224, 0.25);
}

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

.btn-reg:hover {
  background: var(--color-btn-reg-hover);
  box-shadow: 0 4px 14px rgba(199, 5, 29, 0.45);
  color: #fff;
}

.btn-lg {
  font-size: 16px;
  padding: 14px 36px;
  border-radius: var(--radius-md);
}

.btn-xl {
  font-size: 18px;
  padding: 16px 44px;
  border-radius: var(--radius-md);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  border: none;
  padding: 8px;
  flex-shrink: 0;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition);
}

.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 998;
}

.mobile-nav-overlay.open {
  display: block;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--color-header-dark);
  z-index: 999;
  padding: 16px 20px 24px;
  border-bottom: 2px solid var(--color-border);
  flex-direction: column;
  gap: 8px;
}

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

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav ul li a {
  display: block;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.mobile-nav ul li a:hover {
  background: rgba(255, 255, 255, 0.07);
}

.hero-section {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/7b.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(17, 13, 14, 0.92) 0%,
    rgba(17, 13, 14, 0.65) 60%,
    rgba(17, 13, 14, 0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 580px;
  padding: 60px 20px;
}

.hero-badge {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.hero-title {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 18px;
  text-wrap: balance;
}

.hero-title span {
  color: var(--color-accent2);
}

.hero-subtitle {
  font-size: 16px;
  color: #d4bec3;
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-note {
  margin-top: 18px;
  font-size: 12px;
  color: #9a7880;
}

.info-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.info-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  background: var(--color-card);
}

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

.info-table tr:last-child {
  border-bottom: none;
}

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

.info-table td {
  padding: 14px 20px;
  font-size: 14px;
  text-align: left;
  vertical-align: middle;
}

.info-table td:first-child {
  font-weight: 700;
  color: var(--color-text-muted);
  width: 42%;
  border-right: 1px solid var(--color-border);
  white-space: nowrap;
}

.info-table td:last-child {
  color: var(--color-text);
}

.info-table td .badge-val {
  display: inline-block;
  background: rgba(199, 5, 29, 0.15);
  color: #f08090;
  border: 1px solid rgba(199, 5, 29, 0.3);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

.info-table td .badge-ok {
  display: inline-block;
  background: rgba(46, 204, 113, 0.12);
  color: #7ee8a2;
  border: 1px solid rgba(46, 204, 113, 0.25);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

.advantages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.adv-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 220px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  transition:
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.adv-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(199, 5, 29, 0.12);
}

.adv-icon {
  width: 44px;
  height: 44px;
  background: rgba(199, 5, 29, 0.14);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 22px;
}

.adv-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 8px;
}

.adv-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.pros-cons-grid {
  display: flex;
  gap: 20px;
}

.pros-col,
.cons-col {
  flex: 1 1 50%;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px 22px;
}

.pros-col {
  border-top: 3px solid #2ecc71;
}

.cons-col {
  border-top: 3px solid var(--color-accent);
}

.pc-title {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 16px;
}

.pros-col .pc-title {
  color: #7ee8a2;
}
.cons-col .pc-title {
  color: #f08090;
}

.pc-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.55;
}

.pc-list li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-top: 1px;
  background-size: 10px 10px;
  background-repeat: no-repeat;
  background-position: center;
}

.pros-col .pc-list li::before {
  background-color: rgba(46, 204, 113, 0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpolyline points='1.5,5 4,7.5 8.5,2.5' stroke='%232ecc71' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.cons-col .pc-list li::before {
  background-color: rgba(199, 5, 29, 0.14);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cline x1='2' y1='2' x2='8' y2='8' stroke='%23c7051d' stroke-width='1.8' stroke-linecap='round'/%3E%3Cline x1='8' y1='2' x2='2' y2='8' stroke='%23c7051d' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.bonuses-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}

.bonuses-grid::-webkit-scrollbar {
  height: 4px;
}

.bonuses-grid::-webkit-scrollbar-track {
  background: var(--color-border);
  border-radius: 2px;
}

.bonuses-grid::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 2px;
}

.bonus-card {
  flex: 0 0 calc(33.333% - 12px);
  min-width: 260px;
  scroll-snap-align: start;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition:
    border-color var(--transition),
    transform var(--transition);
}

.bonus-card:hover {
  border-color: var(--color-accent2);
  transform: translateY(-3px);
}

.bonus-card-top {
  background: linear-gradient(135deg, #2a0810 0%, #450b17 100%);
  padding: 28px 24px 20px;
  text-align: center;
}

.bonus-type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-accent2);
  margin-bottom: 10px;
}

.bonus-amount {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 6px;
}

.bonus-sub {
  font-size: 13px;
  color: #d4bec3;
}

.bonus-card-body {
  padding: 20px 24px 24px;
}

.bonus-feat-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.bonus-feat-list li {
  font-size: 13px;
  color: var(--color-text-muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.bonus-feat-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--color-accent2);
}

.demo-wrap {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: var(--color-card2);
  border-bottom: 1px solid var(--color-border);
  flex-wrap: wrap;
  gap: 12px;
}

.demo-game-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-text);
}

.demo-provider {
  font-size: 12px;
  color: var(--color-text-muted);
}

.demo-iframe-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #0a0608;
}

.demo-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.review-block {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
}

.review-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
  flex-wrap: wrap;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-header);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
  border: 2px solid var(--color-accent);
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 4px;
}

.author-role {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.author-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--color-accent2);
  text-decoration: underline;
}

.review-content {
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-text);
}

.review-content h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-text);
  margin: 28px 0 14px;
}

.review-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  margin: 22px 0 12px;
}

.review-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-accent2);
  margin: 18px 0 10px;
}

.review-content p {
  margin-bottom: 16px;
  color: var(--color-text);
}

.review-content ul,
.review-content ol {
  margin: 0 0 16px 20px;
  padding: 0;
}

.review-content ul {
  list-style: disc;
}

.review-content ol {
  list-style: decimal;
}

.review-content li {
  margin-bottom: 8px;
  color: var(--color-text);
  line-height: 1.6;
}

.review-content table {
  width: auto;
  margin: 20px auto;
  border-collapse: collapse;
  font-size: 14px;
  text-align: left;
}

.review-content table th,
.review-content table td {
  padding: 10px 16px;
  border: 1px solid var(--color-border);
}

.review-content table th {
  background: var(--color-card2);
  font-weight: 700;
  color: var(--color-accent2);
}

.review-content a {
  color: var(--color-accent2);
  text-decoration: underline;
}

.review-content strong {
  font-weight: 700;
  color: #fff;
}

.review-content em {
  font-style: italic;
  color: var(--color-text-muted);
}

.review-content blockquote {
  border-left: 3px solid var(--color-accent);
  padding: 12px 20px;
  margin: 20px 0;
  background: rgba(199, 5, 29, 0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--color-text-muted);
  font-style: italic;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.faq-item.open {
  border-color: var(--color-accent);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  cursor: pointer;
  user-select: none;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--color-accent2);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: rgba(199, 5, 29, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--transition),
    transform var(--transition);
}

.faq-icon svg {
  width: 12px;
  height: 12px;
  transition: transform var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--color-accent);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.38s ease,
    padding var(--transition);
}

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

.faq-answer-inner {
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
}

.site-footer {
  background: var(--color-header);
  padding: 48px 0 0;
  margin-top: 80px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 36px;
}

.footer-col {
  flex: 1 1 200px;
}

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

.footer-logo img {
  height: 38px;
}

.footer-desc {
  font-size: 13px;
  color: #b89aa0;
  line-height: 1.65;
}

.footer-heading {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-accent2);
  margin-bottom: 14px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-nav a {
  font-size: 13px;
  color: #b89aa0;
  transition: color var(--transition);
}

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

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.footer-logo-badge {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  color: #c8a8b0;
  white-space: nowrap;
  transition:
    background var(--transition),
    color var(--transition);
}

.footer-logo-badge:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-text);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 20px;
  text-align: center;
}

.footer-legal {
  font-size: 11px;
  color: #8a6870;
  line-height: 1.7;
  max-width: 860px;
  margin: 0 auto;
}

.footer-legal a {
  color: #9a7880;
  text-decoration: underline;
}

.widget-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(90deg, #350810 0%, #450b17 100%);
  border-top: 2px solid var(--color-accent);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
  flex-wrap: wrap;
}

.widget-text {
  flex: 1;
  min-width: 180px;
}

.widget-bonus {
  font-size: 18px;
  font-weight: 900;
  color: var(--color-accent2);
  line-height: 1.2;
}

.widget-sub {
  font-size: 12px;
  color: #d4bec3;
}

.widget-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #8a6870;
  font-size: 18px;
  line-height: 1;
  padding: 4px;
  transition: color var(--transition);
  flex-shrink: 0;
}

.widget-close:hover {
  color: var(--color-text);
}

.n8v3x,
.m2k9p,
.b4r7q {
  display: none;
  visibility: hidden;
}
.wp-block-group {
  display: contents;
}
.has-text-align-center {
  text-align: center;
}

.separator {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 0;
}

@media (max-width: 1024px) {
  .adv-card {
    flex: 1 1 calc(50% - 16px);
  }
  .bonus-card {
    flex: 0 0 calc(50% - 8px);
  }
  .review-block {
    padding: 30px 28px;
  }
}

@media (max-width: 768px) {
  .section-gap {
    padding: 44px 0;
  }
  .section-title {
    font-size: 22px;
  }

  .header-nav {
    display: none;
  }
  .header-online {
    display: none;
  }
  .burger {
    display: flex;
  }

  .hero-title {
    font-size: 30px;
  }
  .hero-content {
    padding: 44px 20px;
  }

  .adv-card {
    flex: 1 1 100%;
  }
  .bonus-card {
    flex: 0 0 80vw;
  }

  .pros-cons-grid {
    flex-direction: column;
  }

  .review-block {
    padding: 22px 18px;
  }
  .review-header {
    gap: 14px;
  }

  .footer-inner {
    gap: 24px;
  }
  .footer-col {
    flex: 1 1 100%;
  }

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

  .info-table td {
    padding: 11px 14px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 26px;
  }
  .btn-xl {
    font-size: 15px;
    padding: 13px 28px;
  }
  .bonus-amount {
    font-size: 28px;
  }
  .widget-bonus {
    font-size: 15px;
  }
}

.wp-content-placeholder {
  display: none;
  width: 0;
  height: 0;
  overflow: hidden;
}
.elementor-widget-container {
  display: contents;
}
