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

:root {
  --sw12-bg: #0e0b18;
  --sw12-surface: #16102a;
  --sw12-surface-2: #1d1638;
  --sw12-border: #2d2050;
  --sw12-text: #f2eeff;
  --sw12-muted: #a090cc;
  --sw12-accent: #8b5cf6;
  --sw12-accent-soft: #1a1040;
  --sw12-gold: #c084fc;
  --sw12-gold-2: #dbb6ff;
  --sw12-radius: 8px;
  --sw12-max: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Mulish, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--sw12-text);
  background: var(--sw12-bg);
}

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

a {
  color: var(--sw12-gold-2);
  text-decoration: underline;
  text-decoration-color: rgba(192, 132, 252, 0.35);
  text-underline-offset: 3px;
}

a:hover {
  text-decoration-color: var(--sw12-gold);
}

.sw12-wrap {
  max-width: var(--sw12-max);
  margin-inline: auto;
  padding-inline: 20px;
}

.sw12-main {
  padding-block: 48px 80px;
}

.sw12-h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 12px;
}

.sw12-h2 {
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 700;
  margin: 60px 0 18px;
  padding-top: 28px;
  border-top: 1px solid var(--sw12-border);
}

.sw12-h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 28px 0 10px;
}

.sw12-lead {
  font-size: 18px;
  color: var(--sw12-text);
  margin: 0 0 24px;
}

.sw12-prose p {
  margin: 0 0 14px;
  color: var(--sw12-text);
}

.sw12-prose ul {
  margin: 0 0 16px;
  padding-left: 1.2rem;
  color: var(--sw12-text);
}

.sw12-prose ol {
  margin: 0 0 16px;
  padding-left: 1.2rem;
  color: var(--sw12-text);
}

.sw12-prose li {
  margin-bottom: 8px;
}

.sw12-table-wrap {
  overflow-x: auto;
  margin: 16px 0 24px;
  border: 1px solid var(--sw12-border);
  border-radius: var(--sw12-radius);
}

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

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

.sw12-table th {
  background: var(--sw12-surface-2);
  color: var(--sw12-text);
  font-weight: 700;
}

.sw12-table td {
  color: var(--sw12-text);
}

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

.sw12-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(14, 11, 24, 0.92);
  border-bottom: 1px solid var(--sw12-border);
  backdrop-filter: blur(8px);
}

.sw12-header__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 20px;
  max-width: var(--sw12-max);
  margin-inline: auto;
}

.sw12-head__left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sw12-logo img {
  height: 36px;
  width: auto;
}

.sw12-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sw12-nav a {
  color: var(--sw12-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  position: relative;
  padding-block: 4px;
}

.sw12-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--sw12-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.sw12-nav a:hover::after,
.sw12-nav a.is-active::after {
  transform: scaleX(1);
}

.sw12-head__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sw12-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  border-radius: 8px;
  border: 1px solid var(--sw12-border);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.sw12-btn--ghost {
  background: transparent;
  color: var(--sw12-text);
}

.sw12-btn--ghost:hover {
  border-color: var(--sw12-text);
  text-decoration: none;
}

.sw12-btn--primary {
  background: var(--sw12-gold);
  border-color: var(--sw12-gold);
  color: #0e0b18;
  text-decoration: none;
}

.sw12-btn--primary:hover {
  background: var(--sw12-gold-2);
  border-color: var(--sw12-gold-2);
  text-decoration: none;
}

.sw12-btn--block {
  width: 100%;
  max-width: 280px;
}

.sw12-burger {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--sw12-border);
  border-radius: 8px;
  background: var(--sw12-surface);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.sw12-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--sw12-text);
}

.sw12-burger:hover {
  border-color: var(--sw12-text);
}

.sw12-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 45;
}

.sw12-mobile-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: min(300px, 88vw);
  height: 100%;
  background: var(--sw12-surface);
  border-right: 1px solid var(--sw12-border);
  transform: translateX(-100%);
  transition: transform 0.28s ease;
  z-index: 50;
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 16px;
}

.sw12-mobile-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.sw12-mobile-panel__logo img {
  height: 32px;
}

.sw12-mobile-panel__close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--sw12-border);
  border-radius: 8px;
  background: var(--sw12-surface-2);
  cursor: pointer;
  position: relative;
}

.sw12-mobile-panel__close::before,
.sw12-mobile-panel__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: var(--sw12-text);
}

.sw12-mobile-panel__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.sw12-mobile-panel__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.sw12-mobile-panel__nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sw12-mobile-panel__nav a {
  color: var(--sw12-text);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
}

.sw12-mobile-panel__actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.sw12-menu-open {
  overflow: hidden;
}

body.sw12-menu-open .sw12-mobile-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.sw12-menu-open .sw12-mobile-panel {
  transform: translateX(0);
}

@media (max-width: 980px) {
  .sw12-nav {
    display: none;
  }

  .sw12-burger {
    display: flex;
  }

  .sw12-head__actions .sw12-btn {
    padding: 8px 12px;
    font-size: 12px;
  }
}

.sw12-hero {
  position: relative;
  overflow: hidden;
}

.sw12-hero picture,
.sw12-hero img {
  width: 100%;
  display: block;
}

.sw12-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 40px 0;
  pointer-events: none;
}

.sw12-hero__overlay > * {
  pointer-events: none;
}

.sw12-hero__overlay .sw12-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.sw12-hero__overlay .sw12-wrap > * {
  pointer-events: auto;
}

.sw12-hero__link {
  display: block;
}

.sw12-hero__overlay .sw12-h1 {
  max-width: 520px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.sw12-hero__overlay .sw12-lead {
  max-width: 480px;
  color: var(--sw12-text);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

@media (max-width: 767px) {
  .sw12-hero__overlay {
    justify-content: flex-end;
    padding-bottom: 32px;
  }
}

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

.sw12-section--tight {
  padding: 28px 0;
}

.sw12-reviews-intro {
  margin-top: 0;
  margin-bottom: 16px;
}

.sw12-rating-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 32px;
  margin: 0 0 28px;
  padding: 18px 20px;
  background: var(--sw12-surface);
  border: 1px solid var(--sw12-border);
  border-radius: var(--sw12-radius);
}

.sw12-rating-summary__score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.sw12-rating-summary__score strong {
  font-size: 36px;
  font-weight: 700;
  color: var(--sw12-text);
  line-height: 1;
}

.sw12-rating-summary__stars {
  font-size: 20px;
  color: var(--sw12-gold);
  letter-spacing: 2px;
}

.sw12-rating-summary__label {
  font-size: 12px;
  color: var(--sw12-muted);
}

.sw12-rating-summary__trust {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sw12-rating-summary__trust img {
  height: 24px;
  width: auto;
  opacity: 0.85;
}

.sw12-review-card__stars {
  font-size: 16px;
  color: var(--sw12-gold);
  letter-spacing: 1px;
  margin-bottom: 4px;
  display: block;
}

.sw12-reviews-slider {
  position: relative;
  margin-top: 8px;
}

.sw12-reviews-viewport {
  overflow: hidden;
  width: 100%;
}

.sw12-reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
  will-change: transform;
}

.sw12-review-card {
  flex-shrink: 0;
  box-sizing: border-box;
  background: var(--sw12-surface);
  border: 1px solid var(--sw12-border);
  border-radius: var(--sw12-radius);
  padding: 18px 18px 16px;
}

.sw12-review-card__title {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--sw12-text);
}

.sw12-review-card__meta {
  font-size: 12px;
  color: var(--sw12-muted);
  margin: 0 0 10px;
}

.sw12-review-card__rating {
  font-size: 13px;
  color: var(--sw12-text);
  margin-bottom: 8px;
}

.sw12-review-card p {
  margin: 0;
  font-size: 14px;
  color: var(--sw12-text);
  line-height: 1.5;
}

.sw12-slider-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}

.sw12-slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--sw12-border);
  background: var(--sw12-surface-2);
  color: var(--sw12-text);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.sw12-slider-btn:hover:not(:disabled) {
  border-color: var(--sw12-text);
  background: var(--sw12-surface);
}

.sw12-slider-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.sw12-slider-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.sw12-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--sw12-border);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.sw12-slider-dot.is-active {
  background: var(--sw12-gold);
  transform: scale(1.15);
}

.sw12-split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.sw12-split__media {
  flex: 1 1 280px;
  max-width: 100%;
}

.sw12-split__text {
  flex: 1 1 320px;
}

.sw12-split__media img {
  width: 233px;
  height: 233px;
  display: block;
  border-radius: var(--sw12-radius);
  border: 1px solid var(--sw12-border);
}

.sw12-split--full .sw12-split__media img {
  width: 100%;
  height: auto;
  border-radius: var(--sw12-radius);
  border: 1px solid var(--sw12-border);
}

.sw12-split--rev {
  flex-direction: row-reverse;
}

.sw12-live-grid {
  display: flex;
  gap: 16px;
  margin: 20px 0 0;
}

.sw12-live-grid__item {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  border-radius: var(--sw12-radius);
  overflow: hidden;
  border: 1px solid var(--sw12-border);
}

.sw12-live-grid__item img {
  width: 100%;
  height: auto;
  display: block;
}

.sw12-live-grid__item figcaption {
  padding: 8px 12px;
  font-size: 12px;
  color: var(--sw12-muted);
  background: var(--sw12-surface-2);
}

@media (max-width: 600px) {
  .sw12-live-grid { flex-direction: column; }
}

.sw12-game-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 0;
}

.sw12-game-thumb {
  flex: 1 1 120px;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--sw12-border);
  background: var(--sw12-surface);
}

.sw12-game-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.sw12-game-thumb figcaption {
  padding: 5px 8px;
  font-size: 11px;
  color: var(--sw12-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sw12-cat-section {
  margin: 36px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--sw12-border);
}

.sw12-game-grid__single {
  margin: 0 auto;
  max-width: 100%;
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.sw12-game-shot {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.sw12-game-grid__single figcaption {
  text-align: center;
}

.sw12-game-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: stretch;
  justify-content: center;
}

.sw12-game-grid figure {
  margin: 0;
  flex: 1 1 260px;
  border-radius: var(--sw12-radius);
  overflow: hidden;
  border: 1px solid var(--sw12-border);
  background: var(--sw12-surface);
}

.sw12-game-grid figcaption {
  padding: 10px 12px;
  font-size: 13px;
  color: var(--sw12-text);
}

.sw12-game-table-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  margin: 16px 0 24px;
}

.sw12-game-table-row__visual {
  flex: 0 0 auto;
}

.sw12-game-table-row__visual .sw12-game-grid {
  justify-content: flex-start;
  margin: 0;
}

.sw12-game-table-row__visual .sw12-game-grid__single {
  margin: 0;
}

.sw12-game-table-row__facts {
  flex: 1 1 280px;
  min-width: 0;
}

.sw12-game-table-row__facts .sw12-table-wrap {
  margin: 0;
}

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

.sw12-faq__item + .sw12-faq__item {
  border-top: 1px solid var(--sw12-border);
}

.sw12-faq__q {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: var(--sw12-text);
  background: var(--sw12-surface);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sw12-faq__q:hover {
  background: var(--sw12-surface-2);
}

.sw12-faq__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--sw12-border);
  position: relative;
}

.sw12-faq__icon::before,
.sw12-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--sw12-gold);
  transition: transform 0.2s ease;
}

.sw12-faq__icon::before {
  width: 10px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.sw12-faq__icon::after {
  width: 2px;
  height: 10px;
  transform: translate(-50%, -50%);
}

.sw12-faq__item.is-open .sw12-faq__icon::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.sw12-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: var(--sw12-bg);
}

.sw12-faq__a-inner {
  padding: 0 16px 14px;
  font-size: 14px;
  color: var(--sw12-text);
}

.sw12-footer {
  border-top: 1px solid var(--sw12-border);
  padding: 40px 0 48px;
  margin-top: 32px;
  background: #0d1317;
}

.sw12-footer__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}

.sw12-footer__brand img {
  height: 32px;
  margin-bottom: 10px;
}

.sw12-footer__brand p {
  margin: 0;
  font-size: 13px;
  color: var(--sw12-text);
  max-width: 360px;
}

.sw12-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.sw12-footer__links a {
  font-size: 13px;
  font-weight: 700;
  color: var(--sw12-text);
  text-decoration: none;
}

.sw12-footer__links a:hover {
  color: var(--sw12-text);
  text-decoration: underline;
}

.sw12-footer__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.sw12-footer__trust img {
  height: 28px;
  width: auto;
  opacity: 0.9;
}

.sw12-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.sw12-footer__social a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--sw12-border);
  border-radius: 8px;
  background: var(--sw12-surface);
}

.sw12-footer__social img {
  width: 20px;
  height: 20px;
}

.sw12-footer__legal {
  margin-top: 20px;
  font-size: 12px;
  color: var(--sw12-muted);
}

.sw12-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.sw12-provider-split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin: 12px 0 28px;
}

.sw12-provider-split__logos {
  flex: 0 0 auto;
}

.sw12-provider-split__logos .sw12-providers {
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  gap: 14px;
}

.sw12-provider-split__logos .sw12-providers img {
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.sw12-provider-split__text {
  flex: 1 1 280px;
  min-width: 0;
}

.sw12-provider-split__text p:first-child {
  margin-top: 0;
}

.sw12-providers img {
  height: 36px;
  width: auto;
  filter: grayscale(0.15);
  opacity: 0.92;
}

.sw12-bonus-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 18px 0 24px;
}

.sw12-bonus-gallery__item {
  margin: 0;
  flex: 1 1 220px;
  max-width: 100%;
  border-radius: var(--sw12-radius);
  overflow: hidden;
  border: 1px solid var(--sw12-border);
  background: var(--sw12-surface);
}

.sw12-bonus-gallery__item img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.sw12-bonus-gallery__item figcaption {
  padding: 8px 10px;
  font-size: 12px;
  color: var(--sw12-text);
}

/* Registration / Login two-column cards */
.sw12-reg-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 20px 0 28px;
}

.sw12-reg-card {
  flex: 1 1 280px;
  background: var(--sw12-surface);
  border: 1px solid var(--sw12-border);
  border-radius: var(--sw12-radius);
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
}

.sw12-reg-card__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sw12-muted);
  margin: 0 0 6px;
}

.sw12-reg-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--sw12-text);
  margin: 0 0 16px;
}

.sw12-reg-card__steps {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.sw12-reg-card__steps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--sw12-muted);
  line-height: 1.45;
}

.sw12-reg-card__steps li::before {
  content: attr(data-n);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--sw12-border);
  background: var(--sw12-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--sw12-text);
  line-height: 1;
}

/* KYC block */
.sw12-kyc {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 28px;
}

.sw12-kyc__item {
  flex: 1 1 200px;
  background: var(--sw12-surface);
  border: 1px solid var(--sw12-border);
  border-radius: var(--sw12-radius);
  padding: 14px 16px;
}

.sw12-kyc__item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--sw12-text);
  margin-bottom: 4px;
}

.sw12-kyc__item span {
  font-size: 12px;
  color: var(--sw12-muted);
  line-height: 1.45;
}

/* Deposit / Withdrawal layout */
.sw12-cash-section {
  background: var(--sw12-surface);
  border: 1px solid var(--sw12-border);
  border-radius: var(--sw12-radius);
  padding: 28px 28px 24px;
  margin: 20px 0 8px;
}

.sw12-cash-cols {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  margin: 0;
}

.sw12-cash-cols > div:not(.sw12-cash-divider) {
  flex: 1 1 0;
  min-width: 0;
}

.sw12-cash-divider {
  width: 1px;
  background: var(--sw12-border);
  flex-shrink: 0;
  margin: 0 28px;
  align-self: stretch;
}

@media (max-width: 700px) {
  .sw12-cash-cols { flex-wrap: wrap; }
  .sw12-cash-cols > div:not(.sw12-cash-divider) { flex: 1 1 100%; }
  .sw12-cash-divider { display: none; }
}

.sw12-pay-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 20px;
}

.sw12-pay-card {
  flex: 1 1 calc(50% - 5px);
  background: var(--sw12-surface-2);
  border: 1px solid var(--sw12-border);
  border-radius: 8px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.2s;
}

.sw12-pay-card:hover {
  border-color: var(--sw12-gold);
}

.sw12-pay-card__icon {
  font-size: 26px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(192, 132, 252, 0.12);
  border-radius: 10px;
  margin-bottom: 4px;
}

.sw12-pay-card__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--sw12-text);
  margin: 0;
  display: block;
}

.sw12-pay-card__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  background: rgba(192, 132, 252, 0.18);
  color: var(--sw12-gold-2);
  letter-spacing: 0.04em;
  width: fit-content;
}

.sw12-pay-card__desc {
  font-size: 12px;
  color: var(--sw12-muted);
  margin: 0;
  line-height: 1.4;
}

.sw12-withdraw-steps {
  list-style: none;
  padding: 0;
  margin: 16px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sw12-withdraw-steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--sw12-border);
  font-size: 14px;
  color: var(--sw12-muted);
  line-height: 1.45;
}

.sw12-withdraw-steps li:last-child {
  border-bottom: none;
}

.sw12-withdraw-steps li .sw12-step-num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--sw12-gold);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #0e0b18;
}

.sw12-time-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 20px;
  font-size: 14px;
  border: 1px solid var(--sw12-border);
  border-radius: var(--sw12-radius);
  overflow: hidden;
}

.sw12-time-table th {
  background: var(--sw12-surface-2);
  color: var(--sw12-text);
  font-weight: 700;
  padding: 10px 14px;
  text-align: left;
}

.sw12-time-table td {
  padding: 10px 14px;
  background: var(--sw12-surface);
  border-top: 1px solid var(--sw12-border);
  color: var(--sw12-muted);
}

.sw12-badge-green {
  display: inline-block;
  background: rgba(34, 197, 94, 0.15);
  color: var(--sw12-gold);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

/* Features highlight bar */
.sw12-feat-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 28px 0 36px;
}

.sw12-feat-bar__item {
  flex: 1 1 200px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--sw12-surface);
  border: 1px solid var(--sw12-border);
  border-radius: var(--sw12-radius);
  padding: 16px;
}

.sw12-feat-bar__item img,
.sw12-feat-bar__item > svg {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.sw12-feat-bar__item-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--sw12-text);
}

.sw12-feat-bar__item-text span {
  font-size: 12px;
  color: var(--sw12-muted);
  line-height: 1.4;
}

/* Bonus step cards */
.sw12-bonus-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 20px 0 28px;
}

.sw12-bonus-step {
  flex: 1 1 220px;
  background: var(--sw12-surface);
  border: 1px solid var(--sw12-border);
  border-radius: var(--sw12-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.sw12-bonus-step img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.sw12-bonus-step__body {
  padding: 12px 14px 14px;
  flex: 1;
}

.sw12-bonus-step__body strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--sw12-text);
  margin-bottom: 4px;
}

.sw12-bonus-step__body p {
  font-size: 14px;
  font-weight: 700;
  color: var(--sw12-text);
  margin: 0 0 6px;
}

.sw12-bonus-step__body span {
  font-size: 11px;
  color: var(--sw12-muted);
  line-height: 1.4;
}

.sw12-bonus-step__btn {
  display: block;
  margin-top: 12px;
  width: 100%;
  text-align: center;
  font-size: 13px;
}

/* Game stat bar */
/* King section */
.sw12-king-section {
  background: var(--sw12-surface);
  border: 1px solid var(--sw12-border);
  border-radius: var(--sw12-radius);
  overflow: hidden;
  margin: 24px 0;
}

.sw12-king-banner {
  position: relative;
  width: 100%;
  max-height: 340px;
  overflow: hidden;
}

.sw12-king-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.sw12-king-banner__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
}

.sw12-king-body {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 24px;
  align-items: flex-start;
}

.sw12-king-desc {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sw12-king-desc p {
  margin: 0;
  color: var(--sw12-muted);
  line-height: 1.6;
}

.sw12-game-stats {
  flex: 1 1 280px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

.sw12-game-stat {
  background: var(--sw12-surface-2);
  border: 1px solid var(--sw12-border);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  flex: 1 1 calc(33% - 6px);
  gap: 2px;
  flex: 1 1 100px;
  min-width: 90px;
}

.sw12-game-stat__label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--sw12-muted);
}

.sw12-game-stat__value {
  font-size: 14px;
  font-weight: 700;
  color: var(--sw12-text);
}

.sw12-game-stat--accent {
  border-color: rgba(85,214,194,0.4);
  background: rgba(85,214,194,0.08);
}

.sw12-game-stat--accent .sw12-game-stat__value {
  color: var(--sw12-gold-2);
}

/* Feature cards row */
.sw12-feature-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--sw12-border);
}

.sw12-feature-card {
  flex: 1 1 200px;
  background: var(--sw12-surface);
  border-right: 1px solid var(--sw12-border);
  padding: 20px 18px;
}

.sw12-feature-card:last-child {
  border-right: none;
}

.sw12-feature-card--red {
  border-top: 3px solid var(--sw12-gold);
}

@media (max-width: 700px) {
  .sw12-feature-card { border-right: none; border-bottom: 1px solid var(--sw12-border); }
  .sw12-feature-card:last-child { border-bottom: none; }
  .sw12-king-banner { max-height: 220px; }
}

.sw12-feature-card__icon {
  font-size: 22px;
  line-height: 1;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(85,214,194,0.12);
  border-radius: 10px;
}

.sw12-feature-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--sw12-text);
  margin: 0 0 8px;
}

.sw12-feature-card__text {
  font-size: 13px;
  color: var(--sw12-muted);
  line-height: 1.5;
  margin: 0;
}

/* Warning list */
.sw12-warn-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0 20px;
  padding: 0;
  list-style: none;
}

.sw12-warn-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--sw12-surface);
  border: 1px solid var(--sw12-border);
  border-left: 3px solid rgba(255,80,80,0.55);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 13px;
  color: var(--sw12-muted);
  line-height: 1.45;
}

.sw12-warn-list li::before {
  content: "✕";
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,80,80,0.8);
  flex-shrink: 0;
  margin-top: 1px;
}

/* Individual provider card: logo left (white) + text right */
.sw12-provider-row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  align-items: stretch;
  margin: 12px 0 16px;
  border: 1px solid var(--sw12-border);
  border-radius: var(--sw12-radius);
  overflow: hidden;
}

.sw12-provider-row__logo {
  flex: 0 0 140px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
}

.sw12-provider-row__logo img {
  max-width: 100px;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.sw12-provider-row__text {
  flex: 1 1 240px;
  padding: 16px 20px;
  background: var(--sw12-surface);
}

.sw12-provider-row__text .sw12-h3 {
  margin-top: 0;
}

@media (max-width: 480px) {
  .sw12-provider-row__logo {
    flex: 0 0 100%;
    padding: 16px;
    border-bottom: 1px solid var(--sw12-border);
  }
}

/* Providers row */
.sw12-prov-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 28px;
  margin: 16px 0 32px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--sw12-border);
  border-radius: var(--sw12-radius);
}

.sw12-prov-row img {
  height: 32px;
  width: auto;
  opacity: 1;
  filter: none;
  object-fit: contain;
}

/* Popular games grid */
.sw12-games-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 16px 0 32px;
}

.sw12-game-card {
  flex: 0 0 233px;
  margin: 0;
  background: var(--sw12-surface);
  border: 1px solid var(--sw12-border);
  border-radius: var(--sw12-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.sw12-game-card img {
  width: 233px;
  height: 233px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.sw12-game-card__body {
  padding: 10px 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.sw12-game-card__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--sw12-text);
  margin: 0;
}

.sw12-game-card__meta {
  font-size: 11px;
  color: var(--sw12-muted);
  margin: 0;
}

.sw12-game-card__rtp {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--sw12-text);
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 2px 7px;
  width: fit-content;
}

.sw12-game-card__desc {
  font-size: 12px;
  color: var(--sw12-muted);
  margin: 4px 0 0;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .sw12-game-card {
    flex: 0 0 calc(50% - 7px);
  }

  .sw12-game-card img {
    width: 100%;
    height: 160px;
  }
}

@media (max-width: 600px) {
  .sw12-feat-bar__item {
    flex-basis: calc(50% - 8px);
  }

  .sw12-bonus-step {
    flex-basis: calc(50% - 7px);
  }

  .sw12-game-card {
    flex-basis: calc(50% - 7px);
  }
}

/* Bonus cards (widget-enabled) */
.sw12-bonus-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 24px 0 8px;
}

.sw12-bonus-card {
  flex: 1 1 260px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  background: var(--sw12-surface);
  border: 1px solid var(--sw12-border);
  border-radius: var(--sw12-radius);
  overflow: hidden;
}

.sw12-bonus-card__image img {
  display: block;
  width: 100%;
  height: auto;
}

.sw12-bonus-card__content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 16px;
}

.sw12-bonus-card__stage {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sw12-muted);
  margin: 0 0 6px;
}

.sw12-bonus-card__title {
  font-size: 17px;
  line-height: 1.3;
  margin: 0 0 10px;
}

.sw12-bonus-card__desc {
  font-size: 13px;
  color: var(--sw12-muted);
  margin: 0 0 14px;
}

.sw12-bonus-stats {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  border: 1px solid var(--sw12-border);
  border-radius: var(--sw12-radius);
  overflow: hidden;
}

.sw12-bonus-stats li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  font-size: 13px;
  border-bottom: 1px solid var(--sw12-border);
}

.sw12-bonus-stats li:last-child { border-bottom: none; }
.sw12-bonus-stats li:nth-child(odd) { background: rgba(255, 255, 255, 0.02); }
.sw12-bonus-stats li span:first-child { color: var(--sw12-muted); font-weight: 500; }
.sw12-bonus-stats li span:last-child { font-weight: 700; text-align: right; }

.sw12-bonus-card__terms {
  font-size: 11px;
  color: var(--sw12-muted);
  margin: 0 0 14px;
  line-height: 1.5;
}

.sw12-bonus-card__content .sw12-btn { margin-top: auto; text-align: center; }

/* FS delivery table reuse of sw12-table */

/* Footer: aggregator logos */
.sw12-footer__reviews {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 26px;
  padding: 18px 0;
  margin-top: 18px;
  border-top: 1px solid var(--sw12-border);
}

.sw12-footer__reviews a {
  display: flex;
  align-items: center;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.sw12-footer__reviews a:hover { opacity: 1; }

.sw12-footer__reviews img {
  height: 26px;
  width: auto;
  display: block;
}

/* Inline icon rows */
.sw12-icon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 20px 0;
}

.sw12-icon-list__item {
  flex: 1 1 220px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--sw12-surface);
  border: 1px solid var(--sw12-border);
  border-radius: var(--sw12-radius);
  padding: 16px;
}

.sw12-icon-list__item svg { flex: 0 0 auto; margin-top: 2px; }

.sw12-icon-list__item strong { display: block; margin-bottom: 4px; }

.sw12-icon-list__item span { font-size: 13px; color: var(--sw12-muted); }

/* Plus / Minus section */
.sw12-pm {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 24px 0;
}

.sw12-pm__col {
  flex: 1 1 320px;
  background: var(--sw12-surface);
  border: 1px solid var(--sw12-border);
  border-radius: var(--sw12-radius);
  padding: 20px;
}

.sw12-pm__col--plus { border-top: 3px solid var(--sw12-gold); }
.sw12-pm__col--minus { border-top: 3px solid var(--sw12-muted); }

.sw12-pm__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 700;
}

.sw12-pm__col--plus .sw12-pm__head svg { color: var(--sw12-gold); }
.sw12-pm__col--minus .sw12-pm__head svg { color: var(--sw12-muted); }

.sw12-pm__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sw12-pm__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--sw12-muted);
  border-bottom: 1px solid var(--sw12-border);
}

.sw12-pm__list li:last-child { border-bottom: none; }

.sw12-pm__list svg {
  flex: 0 0 auto;
  margin-top: 3px;
}

.sw12-pm__col--plus .sw12-pm__list svg { color: var(--sw12-gold); }
.sw12-pm__col--minus .sw12-pm__list svg { color: var(--sw12-muted); }

.sw12-cta {
  text-align: center;
  margin: 32px 0;
}

.sw12-pm__verdict {
  background: var(--sw12-surface-2);
  border: 1px solid var(--sw12-border);
  border-left: 3px solid var(--sw12-gold);
  border-radius: var(--sw12-radius);
  padding: 16px 20px;
  margin: 0 0 24px;
}

/* Payment methods row */
.sw12-pay-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
}

.sw12-pay-row__item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--sw12-surface);
  border: 1px solid var(--sw12-border);
  border-radius: var(--sw12-radius);
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
}

.sw12-pay-row__item img,
.sw12-pay-row__item svg {
  height: 24px;
  width: auto;
  display: block;
  flex: 0 0 auto;
}

/* Games grid */
.sw12-games {
  margin: 28px 0 32px;
}

.sw12-games__label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sw12-gold);
  margin: 0 0 16px;
}

.sw12-games__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sw12-game-card {
  display: flex;
  flex-direction: column;
  width: calc(16.666% - 10px);
  min-width: 140px;
  flex: 1 1 140px;
  max-width: 200px;
  background: var(--sw12-surface);
  border: 1px solid var(--sw12-border);
  border-radius: var(--sw12-radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--sw12-text);
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.sw12-game-card:hover {
  border-color: var(--sw12-gold);
  transform: translateY(-2px);
  text-decoration: none;
}

.sw12-game-card__img {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.sw12-game-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}

.sw12-game-card:hover .sw12-game-card__img img {
  transform: scale(1.04);
}

.sw12-game-card__rtp {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: rgba(14, 11, 24, 0.85);
  color: var(--sw12-gold);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  white-space: nowrap;
}

.sw12-game-card__info {
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.sw12-game-card__info strong {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.sw12-game-card__info span {
  font-size: 11px;
  color: var(--sw12-muted);
}

@media (max-width: 600px) {
  .sw12-game-card {
    width: calc(50% - 6px);
    flex: 0 1 calc(50% - 6px);
    max-width: none;
  }
}

/* Slot review pages */
.sw12-breadcrumb {
  font-size: 13px;
  color: var(--sw12-muted);
  margin-bottom: 24px;
}
.sw12-breadcrumb a { color: var(--sw12-muted); text-decoration: none; }
.sw12-breadcrumb a:hover { color: var(--sw12-gold); }
.sw12-breadcrumb span { margin: 0 6px; }

.sw12-game-hero {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.sw12-game-hero__img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: var(--sw12-radius);
  border: 1px solid var(--sw12-border);
  flex: 0 0 220px;
}
.sw12-game-stats {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sw12-stats-list {
  margin: 0;
  padding: 0;
  border: 1px solid var(--sw12-border);
  border-radius: var(--sw12-radius);
  overflow: hidden;
}
.sw12-stats-list div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid var(--sw12-border);
  font-size: 14px;
}
.sw12-stats-list div:last-child { border-bottom: none; }
.sw12-stats-list div:nth-child(odd) { background: rgba(255,255,255,0.02); }
.sw12-stats-list dt { color: var(--sw12-muted); font-weight: 500; }
.sw12-stats-list dd { margin: 0; font-weight: 700; color: var(--sw12-gold); }

.sw12-cta-box {
  background: var(--sw12-surface);
  border: 1px solid var(--sw12-border);
  border-radius: var(--sw12-radius);
  padding: 24px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.sw12-cta-box p { margin: 0; font-weight: 700; }

/* Game demo frame */
.sw12-game-frame {
  margin: 24px 0 40px;
  border: 1px solid var(--sw12-border);
  border-radius: var(--sw12-radius);
  overflow: hidden;
  background: var(--sw12-surface-2);
}
.sw12-game-frame__cover {
  position: relative;
  aspect-ratio: 16 / 9;
}
.sw12-game-frame__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sw12-game-frame__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 16px;
  background: rgba(14, 11, 24, 0.55);
  backdrop-filter: blur(2px);
}
.sw12-game-frame__iframe-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
}
.sw12-game-frame__iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.sw12-btn--lg {
  padding: 12px 24px;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 600px) {
  .sw12-game-hero { flex-direction: column; }
  .sw12-game-hero__img { width: 100%; height: auto; flex: none; }
  .sw12-cta-box { flex-direction: column; text-align: center; }
  .sw12-game-frame__overlay { flex-direction: column; }
  .sw12-btn--lg { width: 100%; max-width: 260px; justify-content: center; }
}
