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

:root {
  --c-header: #222723;
  --c-btn-primary: #02504b;
  --c-btn-accent: #f9c719;
  --c-bg: #0e2f2b;
  --c-bg2: #0a2420;
  --c-bg3: #163530;
  --c-text: #e8ece8;
  --c-text-muted: #9ab09a;
  --c-border: #2a4a44;
  --c-gold: #f9c719;
  --c-green: #02504b;
  --c-green-light: #04786f;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

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

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

body {
  font-family: "Roboto", "Montserrat", Arial, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: var(--c-btn-accent);
  text-decoration: none;
  transition: opacity 0.2s;
}
a:hover {
  opacity: 0.8;
}

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

h1,
h2,
h3,
h4,
h5 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.25;
}

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

.d7f3a2 {
  display: none;
}
.x9k1m {
  visibility: hidden;
  width: 0;
  height: 0;
  overflow: hidden;
}
.wp-caption {
  display: none;
}
.entry-meta {
  display: none;
}
.post-thumbnail {
  display: none;
}
.wp-block-spacer {
  display: none;
}
.elementor-invisible {
  display: none;
}

.sx-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: var(--c-header);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
  border-bottom: 2px solid var(--c-border);
}

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

.sx-logo img {
  height: 46px;
  width: auto;
  border-radius: 6px;
}

.sx-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.sx-nav a {
  color: var(--c-text);
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  transition:
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
}
.sx-nav a:hover {
  background: var(--c-bg3);
  color: var(--c-gold);
  opacity: 1;
}

.sx-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.sx-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--c-text-muted);
  white-space: nowrap;
}
.sx-online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3ddc84;
  animation: blink 1.4s infinite;
  flex-shrink: 0;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.btn-sx {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 13px;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  padding: 9px 20px;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    filter 0.2s;
  white-space: nowrap;
  text-decoration: none !important;
}
.btn-sx:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  opacity: 1;
}
.btn-sx:active {
  transform: translateY(0);
}

.btn-login {
  background: var(--c-btn-primary);
  color: #fff;
}
.btn-login:hover {
  background: var(--c-green-light);
  color: #fff;
}

.btn-signup {
  background: var(--c-btn-accent);
  color: #1a1a1a;
}
.btn-signup:hover {
  filter: brightness(1.08);
  color: #1a1a1a;
}

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

.sx-mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding: 12px 20px 16px;
  gap: 4px;
}
.sx-mobile-nav.open {
  display: flex;
}
.sx-mobile-nav a {
  color: var(--c-text);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.sx-mobile-nav a:hover {
  background: var(--c-bg3);
}

.sx-hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-bg2);
}

.sx-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
}

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

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

.sx-hero-content h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
  margin-bottom: 16px;
  line-height: 1.15;
}

.sx-hero-content p {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 28px;
  line-height: 1.55;
}

.sx-hero-bonus {
  display: inline-flex;
  background: rgba(249, 199, 25, 0.15);
  border: 2px solid var(--c-gold);
  border-radius: var(--radius);
  padding: 14px 20px;
  margin-bottom: 28px;
  align-items: center;
  gap: 12px;
}

.sx-hero-bonus-text {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--c-gold);
  line-height: 1.1;
}
.sx-hero-bonus-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.sx-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sx-section {
  padding: 64px 0;
}
.sx-section-alt {
  background: var(--c-bg2);
}

.sx-section-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  margin-bottom: 32px;
  color: #fff;
  position: relative;
  padding-bottom: 14px;
}
.sx-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52px;
  height: 3px;
  background: var(--c-gold);
  border-radius: 2px;
}

.sx-info-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.sx-info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--c-bg3);
  font-size: 14px;
  min-width: 460px;
}
.sx-info-table th,
.sx-info-table td {
  padding: 13px 18px;
  text-align: left;
  border: 1px solid var(--c-border);
  vertical-align: top;
}
.sx-info-table thead tr {
  background: var(--c-btn-primary);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.sx-info-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.04);
}
.sx-info-table tbody tr:hover {
  background: rgba(249, 199, 25, 0.07);
}
.sx-info-table td:first-child {
  font-weight: 600;
  color: var(--c-gold);
  white-space: nowrap;
  width: 40%;
}

.sx-adv-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.sx-adv-card {
  flex: 1 1 220px;
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.sx-adv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}
.sx-adv-icon {
  font-size: 30px;
  margin-bottom: 12px;
}
.sx-adv-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--c-gold);
}
.sx-adv-text {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.55;
}

.sx-winners-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sx-winner-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  transition: background 0.2s;
}
.sx-winner-item:hover {
  background: rgba(249, 199, 25, 0.08);
}
.sx-winner-pos {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--c-text-muted);
  width: 28px;
  flex-shrink: 0;
}
.sx-winner-pos.top3 {
  color: var(--c-gold);
}
.sx-winner-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-btn-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}
.sx-winner-name {
  font-weight: 600;
  font-size: 14px;
  flex: 1;
}
.sx-winner-game {
  font-size: 12px;
  color: var(--c-text-muted);
}
.sx-winner-amount {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #3ddc84;
  white-space: nowrap;
}

.sx-video-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.sx-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.sx-wheel-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.sx-wheel-canvas-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#sx-wheel-canvas {
  border-radius: 50%;
  box-shadow:
    0 0 40px rgba(249, 199, 25, 0.3),
    var(--shadow);
  display: block;
}
.sx-wheel-needle {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 28px solid var(--c-gold);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}
.sx-wheel-result {
  background: var(--c-bg3);
  border: 2px solid var(--c-gold);
  border-radius: var(--radius);
  padding: 20px 32px;
  text-align: center;
  display: none;
  animation: fadeIn 0.4s ease;
}
.sx-wheel-result.show {
  display: block;
}
.sx-wheel-result-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--c-gold);
  margin-bottom: 8px;
}
.sx-wheel-result-text {
  font-size: 15px;
  color: var(--c-text-muted);
  margin-bottom: 16px;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sx-review-content {
  line-height: 1.7;
}
.sx-review-content h2 {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  color: #fff;
  margin: 28px 0 14px;
}
.sx-review-content h3 {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  color: var(--c-gold);
  margin: 22px 0 10px;
}
.sx-review-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 18px 0 8px;
  color: var(--c-text);
}
.sx-review-content p {
  margin-bottom: 14px;
  color: var(--c-text-muted);
}
.sx-review-content ul,
.sx-review-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.sx-review-content li {
  margin-bottom: 6px;
  color: var(--c-text-muted);
}
.sx-review-content a {
  color: var(--c-gold);
}
.sx-review-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
  overflow-x: auto;
  display: block;
}
.sx-review-content table th,
.sx-review-content table td {
  padding: 10px 14px;
  border: 1px solid var(--c-border);
  text-align: left;
}
.sx-review-content table thead {
  background: var(--c-btn-primary);
  color: #fff;
}
.sx-review-content table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.04);
}
.sx-review-content strong {
  color: #fff;
  font-weight: 600;
}
.sx-review-content em {
  font-style: italic;
  color: var(--c-text-muted);
}
.sx-review-content blockquote {
  border-left: 4px solid var(--c-gold);
  padding-left: 16px;
  margin: 16px 0;
  color: var(--c-text-muted);
  font-style: italic;
}
.sx-review-content hr {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 24px 0;
}
.sx-review-content img {
  border-radius: var(--radius-sm);
  margin: 16px 0;
}

.sx-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sx-faq-item {
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  background: var(--c-bg3);
  overflow: hidden;
}
.sx-faq-q {
  padding: 16px 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
  color: #fff;
}
.sx-faq-q:hover {
  background: rgba(249, 199, 25, 0.07);
}
.sx-faq-q-icon {
  font-size: 18px;
  color: var(--c-gold);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.sx-faq-item.open .sx-faq-q-icon {
  transform: rotate(45deg);
}
.sx-faq-a {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s;
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.65;
}
.sx-faq-item.open .sx-faq-a {
  max-height: 400px;
  padding: 0 20px 16px;
}

.sx-reviews-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 40px;
}
.sx-review-card {
  flex: 1 1 280px;
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform 0.2s;
}
.sx-review-card:hover {
  transform: translateY(-3px);
}
.sx-review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.sx-review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--c-btn-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}
.sx-review-name {
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}
.sx-review-date {
  font-size: 12px;
  color: var(--c-text-muted);
}
.sx-review-stars {
  color: #f9c719;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.sx-review-text {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.6;
}

.sx-form {
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px;
}
.sx-form-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
  color: #fff;
}
.sx-field {
  margin-bottom: 16px;
}
.sx-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--c-text-muted);
}
.sx-field input,
.sx-field textarea {
  width: 100%;
  background: var(--c-bg2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--c-text);
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  transition: border-color 0.2s;
  outline: none;
}
.sx-field input:focus,
.sx-field textarea:focus {
  border-color: var(--c-gold);
}
.sx-field textarea {
  min-height: 100px;
  resize: vertical;
}
.sx-form-success {
  display: none;
  background: rgba(61, 220, 132, 0.1);
  border: 1px solid #3ddc84;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: #3ddc84;
  font-size: 14px;
  margin-top: 14px;
}
.sx-form-success.show {
  display: block;
  animation: fadeIn 0.4s ease;
}

.sx-footer {
  background: var(--c-header);
  border-top: 2px solid var(--c-border);
  padding: 48px 0 24px;
}
.sx-footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 36px;
  align-items: flex-start;
}
.sx-footer-logo img {
  height: 40px;
  border-radius: 6px;
}
.sx-footer-nav {
  flex: 1;
}
.sx-footer-nav-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--c-text-muted);
  margin-bottom: 10px;
}
.sx-footer-nav a {
  display: block;
  color: var(--c-text-muted);
  font-size: 13px;
  padding: 4px 0;
  transition: color 0.2s;
}
.sx-footer-nav a:hover {
  color: var(--c-gold);
}
.sx-footer-payments {
  margin-bottom: 20px;
}
.sx-footer-payments-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--c-text-muted);
  margin-bottom: 10px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}
.sx-payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.sx-payment-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 7px 13px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--c-text);
  white-space: nowrap;
  transition: background 0.2s;
}
.sx-payment-badge:hover {
  background: rgba(255, 255, 255, 0.15);
}
.sx-provider-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.sx-provider-badge {
  background: rgba(2, 80, 75, 0.25);
  border: 1px solid var(--c-btn-primary);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  color: var(--c-text-muted);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.sx-footer-bottom {
  border-top: 1px solid var(--c-border);
  padding-top: 20px;
  text-align: center;
}
.sx-footer-legal {
  font-size: 12px;
  color: var(--c-text-muted);
  line-height: 1.7;
  max-width: 860px;
  margin: 0 auto 10px;
}
.sx-copyright {
  font-size: 13px;
  color: var(--c-text-muted);
}

.sx-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  background: var(--c-header);
  border-top: 2px solid var(--c-gold);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
}
.sx-widget-text {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
}
.sx-widget-text span {
  color: var(--c-gold);
  display: block;
  font-size: 16px;
}
.sx-widget-close {
  background: none;
  border: none;
  color: var(--c-text-muted);
  font-size: 20px;
  cursor: pointer;
  flex-shrink: 0;
  transition: color 0.2s;
  line-height: 1;
}
.sx-widget-close:hover {
  color: #fff;
}

.sx-breadcrumb {
  padding: 14px 0;
  font-size: 13px;
  color: var(--c-text-muted);
  display: flex;
  gap: 8px;
  align-items: center;
}
.sx-breadcrumb a {
  color: var(--c-text-muted);
}
.sx-breadcrumb a:hover {
  color: var(--c-gold);
}
.sx-breadcrumb-sep {
  color: var(--c-border);
}

.sx-author-box {
  background: var(--c-bg3);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.sx-author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--c-btn-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--c-gold);
  flex-shrink: 0;
}
.sx-author-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  margin-bottom: 4px;
}
.sx-author-role {
  font-size: 13px;
  color: var(--c-text-muted);
  margin-bottom: 8px;
}
.sx-author-bio {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.6;
}
.sx-author-links {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.sx-author-links a {
  font-size: 12px;
  color: var(--c-gold);
}

@media (max-width: 768px) {
  .sx-nav {
    display: none;
  }
  .sx-burger {
    display: flex;
  }

  .sx-hero {
    min-height: 420px;
  }
  .sx-hero-content {
    padding: 40px 20px;
  }

  .sx-section {
    padding: 40px 0;
  }

  .sx-adv-card {
    flex: 1 1 160px;
  }
  .sx-review-card {
    flex: 1 1 100%;
  }

  .sx-widget {
    flex-wrap: wrap;
  }
  .sx-widget-text {
    font-size: 13px;
  }

  .sx-footer-top {
    gap: 24px;
  }

  .sx-author-box {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .sx-header-inner {
    padding: 8px 14px;
  }
  .sx-logo img {
    height: 38px;
  }
  .btn-sx {
    font-size: 12px;
    padding: 8px 14px;
  }
  .sx-hero-btns {
    flex-direction: column;
    gap: 10px;
  }
  .sx-hero-btns .btn-sx {
    width: 100%;
  }
}

.woocommerce-product-gallery {
  display: none;
}
.x3k9r1 {
  display: none;
  font-size: 0;
}
.m4n7v {
  opacity: 0;
  position: absolute;
  pointer-events: none;
}
