/* spinempirecasino.xyz — site styles */

:root {
  --sx-primary: #2fb380;
  --sx-primary-dark: #1f8a60;
  --sx-accent: #f0b429;
  --sx-bg: #0c1118;
  --sx-bg-alt: #131b25;
  --sx-bg-card: #18222e;
  --sx-text: #f4f7fa;
  --sx-text-muted: #93a2b3;
  --sx-border: #28323f;
  --sx-radius: 10px;
  --sx-radius-lg: 16px;
  --sx-max-width: 1180px;
  --sx-gap: 24px;
  --sx-transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--sx-text);
  background: var(--sx-bg);
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(28px, 5vw, 48px);
}

h2 {
  font-size: clamp(24px, 4vw, 36px);
}

h3 {
  font-size: clamp(20px, 3vw, 24px);
}

p {
  margin-bottom: 16px;
}

a {
  color: var(--sx-primary);
  text-decoration: none;
  transition: color var(--sx-transition);
}

a:hover {
  color: var(--sx-primary-dark);
}

/* Layout */
.sx-wrap {
  max-width: var(--sx-max-width);
  margin: 0 auto;
  padding: 0 16px;
}

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

.sx-section--alt {
  background: var(--sx-bg-alt);
}

/* Header */
.sx-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sx-border);
}

.sx-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 10px;
  max-width: var(--sx-max-width);
  margin: 0 auto;
}

.sx-head__left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sx-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: 1px solid var(--sx-border);
  border-radius: var(--sx-radius);
  cursor: pointer;
}

.sx-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--sx-text);
}

.sx-logo img {
  height: 40px;
  width: auto;
}

.sx-nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

.sx-nav a {
  color: var(--sx-text);
  font-weight: 500;
  position: relative;
}

.sx-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sx-primary);
  transition: width var(--sx-transition);
}

.sx-nav a:hover::after,
.sx-nav a.active::after {
  width: 100%;
}

.sx-head__actions {
  display: flex;
  gap: 12px;
}

/* Buttons */
.sx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--sx-radius);
  transition: all var(--sx-transition);
  cursor: pointer;
  border: none;
}

.sx-btn--primary {
  background: var(--sx-primary);
  color: var(--sx-bg);
}

.sx-btn--primary:hover {
  background: var(--sx-primary-dark);
  color: var(--sx-bg);
}

.sx-btn--ghost {
  background: transparent;
  color: var(--sx-text);
  border: 1px solid var(--sx-border);
}

.sx-btn--ghost:hover {
  border-color: var(--sx-primary);
  color: var(--sx-primary);
}

.sx-btn--large {
  padding: 16px 32px;
  font-size: 16px;
}

/* Mobile Menu */
.sx-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: all var(--sx-transition);
  z-index: 101;
}

.sx-mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.sx-mobile-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: min(300px, 88vw);
  height: 100%;
  background: var(--sx-bg-alt);
  transform: translateX(-100%);
  transition: transform var(--sx-transition);
  z-index: 102;
  padding: 20px;
}

.sx-mobile-panel.active {
  transform: translateX(0);
}

.sx-mobile-panel__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.sx-mobile-panel__close {
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
}

.sx-mobile-panel__close::before,
.sx-mobile-panel__close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--sx-text);
}

.sx-mobile-panel__close::before {
  transform: rotate(45deg);
}

.sx-mobile-panel__close::after {
  transform: rotate(-45deg);
}

.sx-mobile-panel__nav {
  list-style: none;
  margin-bottom: 32px;
}

.sx-mobile-panel__nav li {
  margin-bottom: 16px;
}

.sx-mobile-panel__nav a {
  color: var(--sx-text);
  font-size: 18px;
  font-weight: 500;
}

.sx-mobile-panel__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Hero */
.sx-hero {
  position: relative;
  min-height: 600px;
  max-height: 800px;
  height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.sx-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sx-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.sx-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.sx-hero__wrap {
  position: relative;
  z-index: 2;
  width: 100%;
}

.sx-hero__content {
  max-width: 600px;
}

.sx-hero__content h1 {
  margin-bottom: 24px;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.2;
}

.sx-hero__subtitle {
  font-size: 18px;
  color: var(--sx-text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

.sx-hero__note {
  font-size: 12px;
  color: var(--sx-text-muted);
  margin-top: 16px;
  margin-bottom: 0;
}

/* Compact hero for inner pages */
.sx-hero--compact {
  min-height: 400px;
  max-height: 500px;
  height: 50vh;
}

/* Tables */
.sx-table-wrap {
  overflow-x: auto;
  margin-bottom: 24px;
}

.sx-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.sx-table th,
.sx-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--sx-border);
}

.sx-table th {
  font-weight: 600;
  color: var(--sx-primary);
  background: var(--sx-bg-card);
}

.sx-table tr:hover td {
  background: var(--sx-bg-card);
}

.sx-summary {
  text-align: center;
  font-style: italic;
  color: var(--sx-text-muted);
  margin-top: 24px;
}

/* Bonus Cards */
.sx-bonus-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sx-gap);
  margin-bottom: 32px;
}

.sx-bonus-card {
  background: var(--sx-bg-card);
  border: 1px solid var(--sx-border);
  border-radius: var(--sx-radius-lg);
  overflow: hidden;
  transition: transform var(--sx-transition), box-shadow var(--sx-transition);
  display: flex;
  flex-direction: column;
}

.sx-bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.sx-bonus-card__image {
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.sx-bonus-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--sx-transition);
}

.sx-bonus-card:hover .sx-bonus-card__image img {
  transform: scale(1.05);
}

.sx-bonus-card__content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sx-bonus-card__stage {
  display: inline-block;
  background: var(--sx-primary);
  color: var(--sx-bg);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.sx-bonus-card__title {
  font-size: 18px;
  margin-bottom: 12px;
  line-height: 1.4;
}

.sx-bonus-card__desc {
  font-size: 14px;
  color: var(--sx-text-muted);
  margin-bottom: 16px;
  flex: 1;
}

.sx-bonus-card__btn {
  margin-top: auto;
  width: 100%;
}

/* Account Access Guide - Custom */
.sx-access-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 48px;
}

.sx-access-card {
  background: var(--sx-bg-card);
  border: 1px solid var(--sx-border);
  border-radius: var(--sx-radius-lg);
  padding: 32px;
  position: relative;
  transition: border-color var(--sx-transition);
}

.sx-access-card:hover {
  border-color: var(--sx-primary);
}

.sx-access-card--register {
  background: linear-gradient(135deg, var(--sx-bg-card) 0%, rgba(201, 162, 39, 0.05) 100%);
}

.sx-access-card--login {
  background: linear-gradient(135deg, var(--sx-bg-card) 0%, rgba(160, 160, 160, 0.05) 100%);
}

.sx-access-card__icon {
  width: 64px;
  height: 64px;
  background: var(--sx-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--sx-primary);
  border: 2px solid var(--sx-border);
}

.sx-access-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.sx-access-card__lead {
  color: var(--sx-text-muted);
  font-size: 15px;
  margin-bottom: 24px;
}

.sx-access-steps {
  list-style: none;
  margin-bottom: 24px;
}

.sx-access-steps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
}

.sx-step-num {
  width: 28px;
  height: 28px;
  background: var(--sx-primary);
  color: var(--sx-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.sx-access-card__note {
  background: rgba(201, 162, 39, 0.1);
  border-left: 3px solid var(--sx-primary);
  padding: 16px;
  border-radius: 0 var(--sx-radius) var(--sx-radius) 0;
  margin-bottom: 24px;
  font-size: 14px;
}

.sx-access-tips {
  margin-bottom: 24px;
}

.sx-tip-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--sx-border);
  font-size: 14px;
}

.sx-tip-item:last-child {
  border-bottom: none;
}

.sx-btn--full {
  width: 100%;
}

/* Troubleshoot Section */
.sx-troubleshoot {
  background: var(--sx-bg-card);
  border: 1px solid var(--sx-border);
  border-radius: var(--sx-radius-lg);
  padding: 32px;
  margin-bottom: 32px;
}

.sx-troubleshoot__title {
  text-align: center;
  margin-bottom: 24px;
  color: var(--sx-primary);
}

.sx-troubleshoot__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.sx-trouble-item {
  padding: 20px;
  background: var(--sx-bg);
  border-radius: var(--sx-radius);
  border: 1px solid var(--sx-border);
}

.sx-trouble-item strong {
  display: block;
  color: var(--sx-primary);
  margin-bottom: 8px;
  font-size: 15px;
}

.sx-trouble-item p {
  font-size: 14px;
  color: var(--sx-text-muted);
  margin-bottom: 0;
}

/* Security Block */
.sx-security-block {
  background: var(--sx-bg-card);
  border: 1px solid var(--sx-border);
  border-radius: var(--sx-radius-lg);
  padding: 32px;
}

.sx-security-block h3 {
  text-align: center;
  margin-bottom: 32px;
}

.sx-security-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.sx-security-item {
  text-align: center;
  padding: 24px;
  background: var(--sx-bg);
  border-radius: var(--sx-radius);
  border: 1px solid var(--sx-border);
  transition: transform var(--sx-transition);
}

.sx-security-item:hover {
  transform: translateY(-4px);
}

.sx-security-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(47, 179, 128, 0.1);
  color: var(--sx-primary);
  margin-bottom: 14px;
  transition: background 0.2s;
}

.sx-security-item:hover .sx-security-icon {
  background: rgba(47, 179, 128, 0.18);
}

.sx-security-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.sx-security-item p {
  font-size: 14px;
  color: var(--sx-text-muted);
  margin-bottom: 0;
}

/* KYC Block */
.sx-kyc-block {
  background: linear-gradient(135deg, var(--sx-bg-card) 0%, rgba(201, 162, 39, 0.05) 100%);
  border: 2px solid var(--sx-primary);
  border-radius: var(--sx-radius-lg);
  padding: 32px;
  margin-bottom: 32px;
}

.sx-kyc-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--sx-border);
}

.sx-kyc-icon {
  width: 64px;
  height: 64px;
  background: var(--sx-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  border: 2px solid var(--sx-primary);
  flex-shrink: 0;
}

.sx-kyc-subtitle {
  color: var(--sx-text-muted);
  font-size: 15px;
  margin: 8px 0 0;
}

.sx-kyc-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.sx-kyc-step {
  background: var(--sx-bg);
  border-radius: var(--sx-radius);
  padding: 24px;
  position: relative;
  border: 1px solid var(--sx-border);
  transition: transform var(--sx-transition), border-color var(--sx-transition);
}

.sx-kyc-step:hover {
  transform: translateY(-4px);
  border-color: var(--sx-primary);
}

.sx-kyc-step__num {
  position: absolute;
  top: -12px;
  left: 24px;
  width: 24px;
  height: 24px;
  background: var(--sx-primary);
  color: var(--sx-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.sx-kyc-step__icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.sx-kyc-step h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--sx-primary);
}

.sx-kyc-step p {
  font-size: 14px;
  color: var(--sx-text-muted);
  margin-bottom: 0;
}

.sx-kyc-info {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--sx-border);
}

.sx-kyc-info__item {
  font-size: 14px;
  color: var(--sx-text-muted);
}

.sx-kyc-info__item strong {
  color: var(--sx-primary);
}

/* Limits & FAQ Grid */
.sx-limits-faq-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.sx-limits-block {
  background: var(--sx-bg-card);
  border: 1px solid var(--sx-border);
  border-radius: var(--sx-radius-lg);
  padding: 24px;
}

.sx-limits-block h3 {
  margin-bottom: 20px;
  color: var(--sx-primary);
}

.sx-limits-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.sx-limit-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--sx-bg);
  border-radius: var(--sx-radius);
  padding: 16px 20px;
  border: 1px solid var(--sx-border);
  transition: border-color var(--sx-transition);
}

.sx-limit-card:hover {
  border-color: var(--sx-primary);
}

.sx-limit-card__value {
  font-size: 18px;
  font-weight: 700;
  color: var(--sx-text);
}

.sx-limit-card__label {
  font-size: 13px;
  color: var(--sx-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sx-limits-note {
  font-size: 13px;
  color: var(--sx-text-muted);
  font-style: italic;
  margin-bottom: 0;
}

/* FAQ Block */
.sx-faq-block {
  background: var(--sx-bg-card);
  border: 1px solid var(--sx-border);
  border-radius: var(--sx-radius-lg);
  padding: 24px;
}

.sx-faq-block h3 {
  margin-bottom: 20px;
  color: var(--sx-primary);
}

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

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

.sx-faq-item summary {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  color: var(--sx-primary);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--sx-transition);
}

.sx-faq-item summary:hover {
  background: rgba(201, 162, 39, 0.05);
}

.sx-faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: var(--sx-primary);
  transition: transform var(--sx-transition);
}

.sx-faq-item[open] summary::after {
  transform: rotate(45deg);
}

.sx-faq-item p {
  padding: 0 20px 16px;
  font-size: 14px;
  color: var(--sx-text-muted);
  margin-bottom: 0;
  border-top: 1px solid var(--sx-border);
  padding-top: 12px;
  margin-top: 0;
}

@media (max-width: 980px) {
  .sx-limits-faq-grid {
  }
  
  .sx-kyc-header {
    flex-direction: column;
    text-align: center;
  }
  
  .sx-kyc-steps {
  }
}

/* Games Showcase (Casino page) */
.sx-games-showcase {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.sx-game-thumb {
  position: relative;
  border-radius: var(--sx-radius);
  overflow: hidden;
  background: var(--sx-bg-card);
  border: 1px solid var(--sx-border);
  transition: transform var(--sx-transition), border-color var(--sx-transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sx-game-thumb:hover {
  transform: translateY(-4px);
  border-color: var(--sx-primary);
}

.sx-game-thumb__image {
  position: relative;
  width: 233px;
  height: 233px;
  overflow: hidden;
}

.sx-game-thumb img {
  width: 233px;
  height: 233px;
  object-fit: cover;
  display: block;
  transition: transform var(--sx-transition);
}

.sx-game-thumb:hover img {
  transform: scale(1.05);
}

.sx-game-thumb__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 15, 15, 0.8);
  color: var(--sx-primary);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity var(--sx-transition);
}

.sx-game-thumb:hover .sx-game-thumb__play {
  opacity: 1;
}

.sx-game-thumb__play:hover {
  background: rgba(201, 162, 39, 0.9);
  color: var(--sx-bg);
}

.sx-game-thumb__info {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sx-game-thumb__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--sx-text);
  margin-bottom: 8px;
}

.sx-game-thumb__desc {
  font-size: 13px;
  color: var(--sx-text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
  flex: 1;
}

.sx-game-thumb__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  background: var(--sx-primary);
  color: var(--sx-bg);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--sx-radius);
  text-decoration: none;
  transition: background var(--sx-transition);
}

.sx-game-thumb__btn:hover {
  background: var(--sx-primary-dark);
  color: var(--sx-bg);
}

/* Live Casino Showcase */
.sx-live-showcase {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.sx-live-card {
  background: var(--sx-bg-card);
  border: 1px solid var(--sx-border);
  border-radius: var(--sx-radius-lg);
  overflow: hidden;
  transition: transform var(--sx-transition), border-color var(--sx-transition);
}

.sx-live-card:hover {
  transform: translateY(-4px);
  border-color: var(--sx-primary);
}

.sx-live-card__image {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sx-live-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--sx-transition);
}

.sx-live-card:hover .sx-live-card__image img {
  transform: scale(1.05);
}

.sx-live-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ff4444;
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.sx-live-card__content {
  padding: 16px;
}

.sx-live-card__content h4 {
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--sx-primary);
}

.sx-live-card__content p {
  font-size: 13px;
  color: var(--sx-text-muted);
  margin-bottom: 12px;
  line-height: 1.4;
}

.sx-live-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  background: var(--sx-primary);
  color: var(--sx-bg);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--sx-radius);
  text-decoration: none;
  width: 100%;
  transition: background var(--sx-transition);
}

.sx-live-card__btn:hover {
  background: var(--sx-primary-dark);
  color: var(--sx-bg);
}

@media (max-width: 768px) {
  .sx-games-showcase {
    gap: 16px;
  }
  
  .sx-game-thumb__image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
  
  .sx-game-thumb img {
    width: 100%;
    height: 100%;
  }
  
  .sx-live-showcase {
  }
}

.sx-total {
  text-align: center;
  padding: 24px;
  background: var(--sx-bg-card);
  border-radius: var(--sx-radius-lg);
  border: 2px solid var(--sx-primary);
}

.sx-total__label {
  display: block;
  font-size: 14px;
  color: var(--sx-text-muted);
  margin-bottom: 8px;
}

.sx-total__value {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--sx-primary);
}

/* Section CTA block */
.sx-section-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.sx-section-cta__note {
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: var(--sx-text-muted);
  margin-top: 4px;
}

/* Steps */
.sx-steps {
  list-style: none;
  counter-reset: step;
}

.sx-steps li {
  position: relative;
  padding-left: 48px;
  margin-bottom: 20px;
}

.sx-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  background: var(--sx-primary);
  color: var(--sx-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.sx-steps strong {
  color: var(--sx-primary);
  display: block;
  margin-bottom: 4px;
}

/* Grid layouts */
.sx-grid-2 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sx-gap);
  margin-bottom: 32px;
}

.sx-grid-3 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sx-gap);
}

.sx-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sx-gap);
  margin-bottom: 32px;
}

.sx-blocks > .sx-block {
  flex: 1 1 440px;
}

/* Blocks */
.sx-block {
  background: var(--sx-bg-card);
  border: 1px solid var(--sx-border);
  border-radius: var(--sx-radius-lg);
  padding: 24px;
}

.sx-block--accent {
  border-color: var(--sx-primary);
}

.sx-block--icon .sx-block__svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(47, 179, 128, 0.1);
  color: var(--sx-primary);
  margin-bottom: 16px;
  transition: background 0.2s;
}

.sx-block--icon:hover .sx-block__svg {
  background: rgba(47, 179, 128, 0.18);
}

.sx-block--pro {
  background: linear-gradient(135deg, var(--sx-bg-card) 0%, rgba(201, 162, 39, 0.1) 100%);
  border-color: var(--sx-primary);
}

.sx-block h3 {
  margin-bottom: 16px;
  font-size: 20px;
}

.sx-block h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

.sx-block ul {
  list-style: none;
  margin-bottom: 16px;
}

.sx-block ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}

.sx-block ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--sx-primary);
}

.sx-note {
  font-size: 14px;
  color: var(--sx-text-muted);
  font-style: italic;
  margin-bottom: 0;
}

/* Step items detailed */
.sx-steps-detailed {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.sx-step-item {
  display: flex;
  gap: 20px;
}

.sx-step-item__num {
  width: 48px;
  height: 48px;
  background: var(--sx-primary);
  color: var(--sx-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.sx-step-item__content h4 {
  margin-bottom: 8px;
  color: var(--sx-primary);
}

.sx-step-item__content p {
  font-size: 15px;
  color: var(--sx-text-muted);
  margin-bottom: 0;
}

/* Game Cards */
.sx-games-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}

.sx-game-card {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  background: var(--sx-bg-card);
  border: 1px solid var(--sx-border);
  border-radius: var(--sx-radius-lg);
  padding: 24px;
  transition: border-color var(--sx-transition);
}

.sx-game-card:hover {
  border-color: var(--sx-primary);
}

/* Card without image */
.sx-game-card--no-image {
}

.sx-game-card--no-image .sx-game-card__content {
  display: flex;
  flex-direction: column;
}

.sx-game-card--no-image .sx-btn {
  margin-top: 16px;
  align-self: flex-start;
}

.sx-game-card__image {
  position: relative;
  width: 233px;
  height: 233px;
  border-radius: var(--sx-radius);
  overflow: hidden;
  flex-shrink: 0;
}

.sx-game-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--sx-transition);
}

.sx-game-card:hover .sx-game-card__image img {
  transform: scale(1.05);
}

.sx-game-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 15, 15, 0.7);
  color: var(--sx-primary);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity var(--sx-transition);
  border-radius: var(--sx-radius);
}

.sx-game-card:hover .sx-game-card__play {
  opacity: 1;
}

.sx-game-card__play:hover {
  background: rgba(201, 162, 39, 0.9);
  color: var(--sx-bg);
}

.sx-game-card__content {
  display: flex;
  flex-direction: column;
}

.sx-game-card__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.sx-game-card__header h3 {
  margin-bottom: 0;
  color: var(--sx-primary);
}

.sx-game-card__meta {
  font-size: 14px;
  color: var(--sx-text-muted);
}

.sx-game-card__features {
  background: var(--sx-bg);
  border-radius: var(--sx-radius);
  padding: 16px;
  margin: 16px 0;
}

.sx-game-card__features ul {
  list-style: none;
  margin: 8px 0 0;
}

.sx-game-card__features li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
  font-size: 14px;
}

.sx-game-card__features li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--sx-primary);
}

.sx-game-card__why {
  font-size: 14px;
  font-style: italic;
  color: var(--sx-text-muted);
}

.sx-game-card__warning {
  font-size: 14px;
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.1);
  padding: 12px;
  border-radius: var(--sx-radius);
  margin-top: 12px;
}

.sx-game-card__note {
  font-size: 14px;
  color: var(--sx-text-muted);
  margin-top: 12px;
}

.sx-game-card__tip {
  font-size: 14px;
  background: rgba(201, 162, 39, 0.1);
  padding: 12px;
  border-radius: var(--sx-radius);
  margin-top: 12px;
}

@media (max-width: 768px) {
  .sx-game-card {
  }
  
  .sx-game-card__image {
    height: 180px;
  }
}

/* FAQ mini */
.sx-faq-mini {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sx-faq-mini__item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--sx-primary);
}

.sx-faq-mini__item p {
  font-size: 14px;
  color: var(--sx-text-muted);
  margin-bottom: 0;
}

/* Features grid */
.sx-features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sx-gap);
}

.sx-feature-item {
  background: var(--sx-bg-card);
  border: 1px solid var(--sx-border);
  border-radius: var(--sx-radius-lg);
  padding: 24px;
}

.sx-feature-item h3 {
  color: var(--sx-primary);
  margin-bottom: 12px;
}

.sx-feature-item p {
  font-size: 15px;
  color: var(--sx-text-muted);
  margin-bottom: 0;
}

/* Reviews */
/* Reviews Slider */
/* Reviews Slider */
.sx-reviews-slider {
  margin-bottom: 8px;
}

.sx-reviews-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sx-reviews-clip {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

.sx-reviews-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.sx-reviews-slider .sx-review-card {
  background: var(--sx-bg-card);
  border: 1px solid var(--sx-border);
  border-left: 3px solid var(--sx-primary);
  border-radius: var(--sx-radius-lg);
  padding: 14px 14px 14px 16px;
  flex-shrink: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
  /* width set explicitly by JS */
}

.sx-reviews-slider .sx-review-card:hover {
  border-color: var(--sx-primary);
  box-shadow: 0 4px 20px rgba(47, 179, 128, 0.12);
}

/* Card top row: avatar + info + rating */
.sx-review-card__top {
  display: flex;
  align-items: center;
  gap: 9px;
}

.sx-review-card__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sx-primary) 0%, #1b7a50 100%);
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sx-review-card__info {
  flex: 1;
  min-width: 0;
}

.sx-review-card__author {
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sx-review-card__location {
  font-size: 11px;
  color: var(--sx-text-muted);
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sx-review-card__rating {
  color: #f5b81c;
  font-size: 11px;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.sx-reviews-slider .sx-review-card p {
  font-size: 13px;
  font-style: italic;
  line-height: 1.55;
  color: var(--sx-text-muted);
  margin: 0;
}

/* Controls row: prev | dots | next */
.sx-reviews-slider .sx-slider-dots {
  justify-content: center;
  margin-top: 16px;
  margin-bottom: 32px;
}

.sx-slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--sx-border);
  background: var(--sx-bg-card);
  color: var(--sx-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
  padding: 0;
}
.sx-slider-btn:hover {
  background: var(--sx-primary);
  border-color: var(--sx-primary);
  color: #000;
  box-shadow: 0 4px 14px rgba(47, 179, 128, 0.3);
}
.sx-slider-btn:disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

/* Dots — pill style */
.sx-slider-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}
.sx-slider-dot {
  height: 8px;
  width: 8px;
  border-radius: 8px;
  border: none;
  background: var(--sx-border);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, width 0.25s;
}
.sx-slider-dot.active {
  background: var(--sx-primary);
  width: 24px;
}

/* Stats */
.sx-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px;
  padding: 32px;
  background: var(--sx-bg-card);
  border-radius: var(--sx-radius-lg);
}

.sx-stat {
  text-align: center;
}

.sx-stat__value {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--sx-primary);
  line-height: 1;
}

.sx-stat__label {
  display: block;
  font-size: 14px;
  color: var(--sx-text-muted);
  margin-top: 8px;
}

/* FAQ Accordion */
.sx-faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sx-faq__item {
  background: var(--sx-bg-card);
  border: 1px solid var(--sx-border);
  border-radius: var(--sx-radius);
  overflow: hidden;
}

.sx-faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--sx-text);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background var(--sx-transition);
}

.sx-faq__question:hover {
  background: var(--sx-bg-alt);
}

.sx-faq__icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}

.sx-faq__icon::before,
.sx-faq__icon::after {
  content: '';
  position: absolute;
  background: var(--sx-primary);
  transition: transform var(--sx-transition);
}

.sx-faq__icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.sx-faq__icon::after {
  width: 2px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.sx-faq__question[aria-expanded="true"] .sx-faq__icon::after {
  transform: translateX(-50%) rotate(90deg);
}

.sx-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--sx-transition);
}

.sx-faq__answer p {
  padding: 0 24px 20px;
  margin-bottom: 0;
  color: var(--sx-text-muted);
}

/* Footer */
.sx-footer {
  background: var(--sx-bg-alt);
  border-top: 1px solid var(--sx-border);
  padding: 48px 0 24px;
}

.sx-footer__main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
}

.sx-footer__logo img {
  height: 40px;
}

.sx-footer__nav {
  display: flex;
  gap: 32px;
}

.sx-footer__nav a {
  color: var(--sx-text);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--sx-transition);
}

.sx-footer__nav a:hover {
  color: var(--sx-primary);
}

.sx-footer__social {
  display: flex;
  gap: 16px;
}

.sx-footer__social img {
  width: 24px;
  height: 24px;
  opacity: 0.7;
  transition: opacity var(--sx-transition);
}

.sx-footer__social a:hover img {
  opacity: 1;
}

.sx-footer__payments {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--sx-border);
  border-bottom: 1px solid var(--sx-border);
  margin-bottom: 24px;
}

.sx-footer__payments img {
  height: 28px;
  opacity: 0.7;
}

.sx-footer__legal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.sx-footer__legal a {
  color: var(--sx-text-muted);
  font-size: 13px;
}

.sx-footer__legal a:hover {
  color: var(--sx-primary);
}

.sx-footer__divider {
  color: var(--sx-border);
}

.sx-footer__copyright {
  text-align: center;
  font-size: 12px;
  color: var(--sx-text-muted);
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 980px) {
  .sx-nav {
    display: none;
  }
  
  .sx-burger {
    display: flex;
  }
  
  .sx-head__actions {
    gap: 8px;
  }
  
  .sx-head__actions .sx-btn {
    padding: 8px 12px;
    font-size: 13px;
  }
  
  .sx-hero {
    min-height: 500px;
    height: auto;
    padding: 100px 0;
  }
  
  
  .sx-hero__content {
    max-width: 100%;
    text-align: center;
  }
  
  .sx-stats {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .sx-section {
    padding: 40px 0;
  }

  .sx-bonus-grid,
  .sx-grid-2,
  .sx-grid-3,
  .sx-access-grid,
  .sx-troubleshoot__grid,
  .sx-security-grid {
  }

  .sx-step-item {
    flex-direction: column;
    gap: 12px;
  }
  
  .sx-step-item__num {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .sx-access-card {
    padding: 24px;
  }
  
  .sx-security-item {
    padding: 20px;
  }
  
  .sx-footer__main {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  
  .sx-footer__nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .sx-footer__payments {
    flex-wrap: wrap;
  }
  
  .sx-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
  }
}

/* Review Page Custom Styles */

.sx-review-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.sx-review-card {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #2a2a2a;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sx-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.sx-review-card__image {
  width: 100%;
  height: 140px;
  overflow: hidden;
}

.sx-review-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.sx-review-card:hover .sx-review-card__image img {
  transform: scale(1.05);
}

.sx-review-card__content {
  padding: 24px;
}

.sx-review-card__content h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--sx-text);
}

.sx-review-card__content p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--sx-text-muted);
  margin-bottom: 12px;
}

.sx-review-pros-cons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.sx-review-pros,
.sx-review-cons {
  padding: 12px;
  background: #222;
  border-radius: 8px;
  font-size: 13px;
}

.sx-review-pros strong {
  color: #22c55e;
  display: block;
  margin-bottom: 8px;
}

.sx-review-cons strong {
  color: #ef4444;
  display: block;
  margin-bottom: 8px;
}

.sx-review-pros ul,
.sx-review-cons ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sx-review-pros li,
.sx-review-cons li {
  padding: 2px 0;
  color: var(--sx-text-muted);
}

.sx-review-highlight {
  background: rgba(212, 175, 55, 0.1);
  border-left: 3px solid var(--sx-primary);
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
  color: var(--sx-text) !important;
  font-weight: 500;
}

.sx-block--who {
  text-align: center;
  padding: 40px 32px;
}

.sx-block__icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.sx-who-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0;
  text-align: left;
}

.sx-who-item {
  background: #222;
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--sx-text);
}

.sx-review-note {
  color: var(--sx-text-muted);
  font-style: italic;
  margin-top: 16px;
}

/* Player Reviews Section */
.sx-reviews-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.sx-review-player {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #2a2a2a;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sx-review-player:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.sx-review-player__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.sx-review-player__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sx-primary), #b8950c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #111;
  font-size: 14px;
}

.sx-review-player__name {
  font-weight: 600;
  color: var(--sx-text);
  font-size: 15px;
}

.sx-review-player__meta {
  font-size: 12px;
  color: var(--sx-text-muted);
  margin-top: 2px;
}

.sx-review-player__rating {
  margin-left: auto;
  color: var(--sx-primary);
  font-size: 18px;
  letter-spacing: 2px;
}

.sx-review-player p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--sx-text-muted);
}

.sx-review-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 32px;
  background: linear-gradient(135deg, #1a1a1a, #222);
  border-radius: 16px;
  border: 1px solid #2a2a2a;
}

.sx-review-stat {
  text-align: center;
}

.sx-review-stat__value {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--sx-primary);
  margin-bottom: 8px;
}

.sx-review-stat__label {
  font-size: 14px;
  color: var(--sx-text-muted);
}

/* Contact Page Styles */

.sx-contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.sx-contact-card {
  position: relative;
  background: #1a1a1a;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #2a2a2a;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.sx-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  border-color: #3a3a3a;
}

.sx-contact-card--featured {
  border: 2px solid var(--sx-primary);
  background: linear-gradient(180deg, #1a1a1a 0%, #1f1f1a 100%);
}

.sx-contact-card--vip {
  background: linear-gradient(135deg, #1a1a1a 0%, #251a0f 100%);
  border-color: #3a2a1a;
}

.sx-contact-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
}

.sx-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.sx-badge--live {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

.sx-badge--vip {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(184, 149, 12, 0.2));
  color: var(--sx-primary);
}

.sx-contact-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #252525;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--sx-primary);
}

.sx-contact-card--featured .sx-contact-card__icon {
  background: rgba(212, 175, 55, 0.15);
}

.sx-contact-card--vip .sx-contact-card__icon {
  background: rgba(212, 175, 55, 0.15);
}

.sx-contact-card__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--sx-text);
}

.sx-contact-card__subtitle {
  font-size: 14px;
  color: var(--sx-text-muted);
  margin-bottom: 20px;
}

.sx-contact-details {
  margin-bottom: 16px;
}

.sx-contact-detail {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #2a2a2a;
  font-size: 14px;
}

.sx-contact-detail:last-child {
  border-bottom: none;
}

.sx-contact-detail__label {
  color: var(--sx-text-muted);
}

.sx-contact-detail__value {
  color: var(--sx-text);
  font-weight: 500;
}

.sx-contact-detail__value--fast {
  color: #22c55e;
  font-weight: 600;
}

.sx-contact-detail__value--email {
  color: var(--sx-primary);
}

.sx-contact-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--sx-text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

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

/* Contact Info Banner */
.sx-contact-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 24px 32px;
  background: linear-gradient(135deg, #1a1a1a, #222);
  border-radius: 16px;
  border: 1px solid #2a2a2a;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.sx-contact-info__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--sx-text);
}

.sx-contact-info__icon {
  font-size: 24px;
}

.sx-contact-info__divider {
  width: 1px;
  height: 32px;
  background: #3a3a3a;
}

/* Checklist Block */
.sx-block--checklist {
  padding: 40px;
  margin-bottom: 32px;
}

.sx-block__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.sx-block__header-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sx-primary), #b8950c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #111;
  font-weight: 700;
}

.sx-block__intro {
  color: var(--sx-text-muted);
  margin-bottom: 24px;
}

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

.sx-checklist-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 16px;
  background: #222;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.sx-checklist-item:hover {
  transform: translateY(-4px);
  background: #2a2a2a;
}

.sx-checklist-item__icon {
  font-size: 32px;
}

.sx-checklist-item__text {
  font-size: 14px;
  font-weight: 500;
  color: var(--sx-text);
}

/* Response Times */
.sx-response-times {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 32px 40px;
  border: 1px solid #2a2a2a;
}

.sx-response-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.sx-response-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.sx-response-item__time {
  font-size: 18px;
  font-weight: 700;
  color: var(--sx-primary);
}

.sx-response-item__channel {
  font-size: 15px;
  color: var(--sx-text);
  font-weight: 500;
}

.sx-response-item__bar {
  height: 8px;
  background: #2a2a2a;
  border-radius: 4px;
  overflow: hidden;
}

.sx-response-item__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--sx-primary), #b8950c);
  border-radius: 4px;
}

/* Responsive for Contact Page */
@media (max-width: 1024px) {
  .sx-contact-grid {
  }
  
  .sx-checklist-grid {
  }
  
  .sx-response-item {
  }
}

@media (max-width: 768px) {
  .sx-contact-info__divider {
    display: none;
  }
  
  .sx-contact-info {
    flex-direction: column;
    gap: 16px;
  }
  
  .sx-checklist-grid {
  }
  
  .sx-response-item {
    gap: 8px;
  }
  
  .sx-block--checklist {
    padding: 24px;
  }
}

/* Responsive for Review Page */
@media (max-width: 1024px) {
  .sx-review-grid,
  .sx-who-grid {
  }
  
  .sx-reviews-grid {
  }
  
  .sx-review-stats {
    flex-wrap: wrap;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .sx-reviews-grid {
  }
  
  .sx-review-stats {
    flex-direction: column;
    gap: 24px;
  }
  
  .sx-review-pros-cons {
  }
  
  .sx-block--who {
    padding: 32px 20px;
  }
}

/* Utility classes */
.sx-h2 {
  text-align: center;
  margin-bottom: 16px;
}

.sx-h3 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.sx-intro {
  text-align: center;
  color: var(--sx-text-muted);
  max-width: 800px;
  margin: 0 auto 32px;
}

.sx-list-check {
  list-style: none;
}

.sx-list-check li {
  position: relative;
  padding-left: 28px;
}

.sx-list-check li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sx-primary);
  font-weight: 700;
}
/* Providers strip */
/* Provider cards grid */
.sx-provider-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 8px;
}

.sx-provider-card {
  flex: 1 1 240px;
  background: var(--sx-bg-card);
  border: 1px solid var(--sx-border);
  border-radius: var(--sx-radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.sx-provider-card:hover {
  border-color: var(--sx-primary);
  box-shadow: 0 4px 20px rgba(47, 179, 128, 0.1);
}

.sx-provider-card__logo {
  background: #0e1822;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--sx-border);
}

.sx-provider-card__logo img {
  max-height: 44px;
  max-width: 150px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.75;
  transition: opacity 0.2s;
}

.sx-provider-card:hover .sx-provider-card__logo img {
  opacity: 1;
}

.sx-provider-card__logo--mono {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--sx-primary);
  opacity: 0.55;
}

.sx-provider-card__body {
  padding: 16px 20px 20px;
}

.sx-provider-card__body h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.sx-provider-card__body p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--sx-text-muted);
  margin: 0;
}

/* Footer aggregator review logos */
.sx-footer__reviews {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin: 28px 0;
  padding: 24px 0;
  border-top: 1px solid var(--sx-border);
  border-bottom: 1px solid var(--sx-border);
}
.sx-footer__reviews a { display: inline-flex; }
.sx-footer__reviews img {
  height: 26px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity var(--sx-transition);
}
.sx-footer__reviews a:hover img { opacity: 1; }


/* === Flex sizing for converted grid containers === */
.sx-bonus-grid > .sx-bonus-card { flex: 1 1 260px; }
.sx-access-grid > * { flex: 1 1 320px; }
.sx-troubleshoot__grid > * { flex: 1 1 250px; }
.sx-security-grid > * { flex: 1 1 200px; }
.sx-kyc-steps > * { flex: 1 1 250px; }
.sx-games-showcase > * { flex: 1 1 233px; }
.sx-live-showcase > * { flex: 1 1 280px; }
.sx-grid-2 > * { flex: 1 1 300px; }
.sx-grid-3 > * { flex: 1 1 250px; }
.sx-features-grid > * { flex: 1 1 280px; }
.sx-reviews-grid > * { flex: 1 1 300px; }
.sx-who-grid > * { flex: 1 1 calc(33.333% - 16px); }
.sx-review-grid > * { flex: 1 1 calc(50% - 12px); }
.sx-review-pros-cons > * { flex: 1 1 calc(50% - 8px); }
.sx-contact-grid > * { flex: 1 1 calc(50% - 12px); }
.sx-checklist-grid > * { flex: 1 1 calc(20% - 16px); }
.sx-limits-faq-grid > *:nth-child(1) { flex: 1 1 34%; }
.sx-limits-faq-grid > *:nth-child(2) { flex: 1 1 56%; }
.sx-game-card > *:nth-child(1) { flex: 0 0 280px; }
.sx-game-card > *:nth-child(2) { flex: 1 1 320px; }
.sx-response-grid > *:nth-child(1) { flex: 0 0 100px; }
.sx-response-grid > *:nth-child(2) { flex: 0 0 140px; }
.sx-response-grid > *:nth-child(3) { flex: 1 1 200px; }
.sx-stats > * { flex: 1 1 160px; }

@media (max-width: 768px) {
  .sx-game-card > *:nth-child(1),
  .sx-game-card > *:nth-child(2),
  .sx-checklist-grid > *,
  .sx-who-grid > *,
  .sx-review-grid > *,
  .sx-contact-grid > * { flex: 1 1 100%; }
}

@media (max-width: 480px) {
  .sx-slider-btn {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }
}

/* ==========================================
   MAIN PAGE — MOBILE RESPONSIVE
   ========================================== */

@media (max-width: 768px) {
  /* Hero */
  .sx-hero__subtitle {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .sx-btn--large {
    padding: 13px 22px;
    font-size: 15px;
  }

  /* Section CTA — stack buttons on mobile */
  .sx-section-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .sx-section-cta .sx-btn {
    text-align: center;
    justify-content: center;
  }

  /* Provider cards — 2 per row */
  .sx-provider-card {
    flex: 1 1 calc(50% - 10px);
  }

  .sx-provider-card__logo {
    height: 70px;
  }

  /* Game cards — image full width */
  .sx-game-card__image {
    width: 100%;
    height: 200px;
    flex-shrink: 1;
  }

  /* Games showcase — 2 per row */
  .sx-games-showcase > * {
    flex: 1 1 calc(50% - 12px);
  }

  /* KYC header — stack on mobile */
  .sx-kyc-header {
    flex-direction: column;
    text-align: center;
  }

  /* Limits-FAQ grid — single column */
  .sx-limits-faq-grid > * {
    flex: 1 1 100%;
  }

  /* Compact table on mobile */
  .sx-table--compact {
    font-size: 12px;
  }

  .sx-table--compact th,
  .sx-table--compact td {
    padding: 8px;
  }

  /* Access cards */
  .sx-access-card {
    padding: 20px;
  }

  /* Block padding */
  .sx-block {
    padding: 20px;
  }

  /* Steps detailed */
  .sx-steps-detailed {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  /* Sections */
  .sx-section {
    padding: 32px 0;
  }

  /* Stats — 2 per row */
  .sx-stats > * {
    flex: 1 1 calc(50% - 12px);
  }

  /* Bonus cards — single column */
  .sx-bonus-grid > .sx-bonus-card {
    flex: 1 1 100%;
  }

  /* Provider cards — single column */
  .sx-provider-card {
    flex: 1 1 100%;
  }

  /* Games showcase — single column */
  .sx-games-showcase > * {
    flex: 1 1 100%;
  }

  /* Header — hide ghost login btn to save space */
  .sx-head__actions .sx-btn--ghost {
    display: none;
  }

  /* Hero compact height */
  .sx-hero {
    min-height: 420px;
    padding: 80px 0;
  }
}

/* ==========================================
   PAYMENTS TABLES — CARD LAYOUT ON MOBILE
   ========================================== */

@media (max-width: 580px) {
  .sx-table--payments {
    display: block;
    border: none;
  }

  .sx-table--payments thead {
    display: none;
  }

  .sx-table--payments tbody {
    display: block;
  }

  .sx-table--payments tr {
    display: block;
    background: var(--sx-bg);
    border: 1px solid var(--sx-border);
    border-radius: var(--sx-radius);
    padding: 12px 14px;
    margin-bottom: 8px;
  }

  .sx-table--payments tr:hover td {
    background: transparent;
  }

  .sx-table--payments td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 0;
    font-size: 13px;
    border: none;
    background: transparent !important;
  }

  /* Method name as card title */
  .sx-table--payments td:first-child {
    font-weight: 700;
    font-size: 14px;
    color: var(--sx-primary);
    padding-bottom: 8px;
    margin-bottom: 4px;
    border-bottom: 1px solid var(--sx-border);
    justify-content: flex-start;
  }

  /* Auto-labels via CSS nth-child */
  .sx-table--payments td:nth-child(2)::before { content: 'Min:'; color: var(--sx-text-muted); font-size: 12px; font-weight: 500; }
  .sx-table--payments td:nth-child(3)::before { content: 'Max:'; color: var(--sx-text-muted); font-size: 12px; font-weight: 500; }
  .sx-table--payments td:nth-child(4)::before { content: 'Speed:'; color: var(--sx-text-muted); font-size: 12px; font-weight: 500; }
  .sx-table--payments td:nth-child(5)::before { content: 'Fee:'; color: var(--sx-text-muted); font-size: 12px; font-weight: 500; }
}
