* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f5f7fb;
  color: #172033;
  line-height: 1.65;
  font-size: 16px;
}
header {
  background: #071227;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 20;
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  height: 58px;
  width: 170px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}
.logo img {
  height: 58px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.button,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 10px;
  border: 0;
  background: #ffcc33;
  color: #101522;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}
.header-actions .button:first-child {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.section {
  max-width: 1180px;
  margin: 24px auto;
  padding: 28px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(16, 29, 55, 0.08);
}
h1 {
  margin: 0 0 18px;
  font-size: 42px;
  line-height: 1.15;
  color: #071227;
}
h2 {
  margin: 0 0 16px;
  font-size: 30px;
  line-height: 1.25;
  color: #071227;
}
h3 {
  margin: 24px 0 12px;
  font-size: 22px;
  color: #111b31;
}
p {
  margin: 0 0 14px;
}
ul,
ol {
  margin: 12px 0 18px 24px;
  padding: 0;
}
li {
  margin: 6px 0;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  overflow: hidden;
  border-radius: 14px;
  background: #ffffff;
}
tr:first-child td {
  background: #071227;
  color: #ffffff;
  font-weight: 700;
}
td {
  padding: 13px 14px;
  border: 1px solid #dfe5ef;
  vertical-align: top;
}
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}
.pros-cons > div {
  padding: 20px;
  border-radius: 16px;
  background: #f5f7fb;
  border: 1px solid #e1e7f0;
}
.expert-note {
  margin: 18px 0;
  padding: 18px;
  border-left: 4px solid #ffcc33;
  border-radius: 12px;
  background: #fff7d6;
}
.comparison-table {
  overflow-x: auto;
}
.author-block {
  max-width: 1180px;
  margin: 24px auto;
  padding: 22px;
  border-radius: 18px;
  background: #eef3ff;
  border: 1px solid #d8e2f8;
}
.faq-container {
  display: grid;
  gap: 12px;
}
.faq-item {
  position: relative;
  padding: 18px 52px 18px 18px;
  border-radius: 14px;
  border: 1px solid #dfe5ef;
  background: #f8fafc;
}
.toggle {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.faq-question {
  margin: 0;
  font-size: 19px;
}
.icon {
  position: absolute;
  right: 18px;
  top: 21px;
  width: 18px;
  height: 18px;
}
.icon::before,
.icon::after {
  content: "";
  position: absolute;
  background: #071227;
  border-radius: 2px;
}
.icon::before {
  width: 18px;
  height: 2px;
  top: 8px;
  left: 0;
}
.icon::after {
  width: 2px;
  height: 18px;
  top: 0;
  left: 8px;
}
.faq-answer {
  display: none;
  margin-top: 12px;
}
.toggle:checked ~ .faq-answer {
  display: block;
}
.toggle:checked ~ .icon::after {
  display: none;
}
footer {
  margin-top: 36px;
  background: #071227;
  color: #ffffff;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 20px;
}
.footer-brand {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 18px;
}
.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* NV dark casino styling */
:root {
  --nv-black: #010104;
  --nv-surface: #10102d;
  --nv-surface-2: #191936;
  --nv-surface-3: #25254a;
  --nv-pink: #c30054;
  --nv-pink-light: #ef1f78;
  --nv-text: #ffffff;
  --nv-muted: #a7a7bf;
  --nv-border: rgba(255, 255, 255, 0.09);
}
body {
  background: radial-gradient(
    circle at top,
    #281047 0,
    var(--nv-black) 420px,
    var(--nv-black) 100%
  );
  color: var(--nv-text);
}
header {
  background: rgba(1, 1, 4, 0.88);
  backdrop-filter: blur(14px);
}
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--nv-surface-2), var(--nv-surface));
  border: 1px solid var(--nv-border);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.logo::before {
  content: "NV CASINO";
}
.logo img[src=""] {
  display: none;
}
.button,
.button-link {
  background: var(--nv-pink);
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(195, 0, 84, 0.28);
}
.button:hover,
.button-link:hover {
  background: var(--nv-pink-light);
}
.section {
  background: linear-gradient(
    180deg,
    rgba(25, 25, 54, 0.96),
    rgba(16, 16, 45, 0.96)
  );
  border: 1px solid var(--nv-border);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
}
h1,
h2,
h3 {
  color: #fff;
}
p,
li {
  color: #e8e8f2;
}
table {
  background: var(--nv-surface);
}
tr:first-child td {
  background: var(--nv-pink);
}
td {
  border-color: var(--nv-border);
  color: #f3f3fb;
}
.pros-cons > div,
.faq-item,
.author-block {
  background: var(--nv-surface-2);
  border-color: var(--nv-border);
}
.expert-note {
  background: rgba(195, 0, 84, 0.12);
  border-left-color: var(--nv-pink);
}
.step-list {
  list-style: none;
  margin: 18px 0 22px;
  padding: 0;
  display: grid;
  gap: 12px;
  counter-reset: step;
}
.step-list li {
  counter-increment: step;
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 16px 18px 16px 72px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(195, 0, 84, 0.18),
    rgba(37, 37, 74, 0.95)
  );
  border: 1px solid var(--nv-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.step-list li::before {
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--nv-pink);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(195, 0, 84, 0.34);
}
.app-download-title {
  margin: 22px 0 14px;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
}
.app-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 14px;
}
.app-card,
.live-card,
.provider-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(160deg, var(--nv-surface-2), var(--nv-surface));
  border: 1px solid var(--nv-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.app-card::before,
.live-card::before,
.provider-card::before {
  content: "";
  position: absolute;
  inset: -50px auto auto -50px;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(195, 0, 84, 0.42), transparent 68%);
}
.card-title {
  position: relative;
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 900;
  color: #fff;
}
.app-card .step-list li {
  min-height: auto;
  padding: 12px 14px 12px 58px;
}
.app-card .step-list li::before {
  left: 14px;
  width: 30px;
  height: 30px;
  border-radius: 10px;
}
.live-grid,
.provider-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 18px 0;
}
.provider-grid {
  grid-template-columns: repeat(4, 1fr);
}
.live-card,
.provider-card {
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}
.live-card:hover,
.provider-card:hover {
  transform: translateY(-3px);
  border-color: rgba(195, 0, 84, 0.75);
  background: linear-gradient(160deg, #2a1744, var(--nv-surface));
}
.live-card ul,
.provider-card ul {
  position: relative;
  margin: 0;
  padding-left: 18px;
}
.live-card li,
.provider-card li {
  color: #f1f1f8;
}
.provider-card .provider-count {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(195, 0, 84, 0.18);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
footer {
  background: #010104;
  border-top: 1px solid var(--nv-border);
}
.footer-inner {
  padding: 32px 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.footer-column h4 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 16px;
}
.footer-column a,
.footer-column p {
  display: block;
  margin: 0 0 8px;
  color: var(--nv-muted);
  text-decoration: none;
  font-size: 14px;
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.footer-badge {
  padding: 8px 10px;
  border-radius: 10px;
  background: var(--nv-surface-2);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.footer-bottom {
  max-width: 1180px;
  margin: 22px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--nv-border);
  color: var(--nv-muted);
  font-size: 13px;
}
@media (max-width: 768px) {
  .app-columns,
  .live-grid,
  .provider-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .live-grid,
  .provider-grid {
    gap: 12px;
  }
  .footer-inner {
    padding: 24px 16px;
  }
  .header-inner,
  .header-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .logo {
    width: 100%;
  }
  .section {
    margin: 16px 12px;
    padding: 20px;
  }
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 25px;
  }
  .pros-cons {
    grid-template-columns: 1fr;
  }
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* VISUAL REVISION: stronger NV-style blocks */
body {
  background:
    radial-gradient(circle at 20% 0, rgba(195, 0, 84, 0.34), transparent 340px),
    radial-gradient(
      circle at 82% 12%,
      rgba(100, 55, 190, 0.24),
      transparent 420px
    ),
    #010104;
}
.section {
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(18, 18, 48, 0.98),
    rgba(9, 9, 27, 0.98)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.step-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin: 20px 0 24px;
}
.step-list li {
  display: block;
  min-height: 138px;
  padding: 62px 16px 16px;
  border-radius: 20px;
  background:
    radial-gradient(
      circle at 30px 30px,
      rgba(255, 255, 255, 0.12),
      transparent 36px
    ),
    linear-gradient(160deg, rgba(195, 0, 84, 0.25), rgba(24, 24, 58, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  font-weight: 700;
}
.step-list li::before {
  left: 16px;
  top: 16px;
  transform: none;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff2f87, #c30054);
  box-shadow: 0 10px 22px rgba(195, 0, 84, 0.45);
}
.app-download-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(195, 0, 84, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 18px;
}
.app-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.app-card {
  padding: 24px;
  border-radius: 24px;
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(195, 0, 84, 0.35),
      transparent 170px
    ),
    linear-gradient(160deg, #1a1a3e, #0d0d25);
}
.app-card .card-title {
  font-size: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.app-card .step-list {
  grid-template-columns: 1fr;
  gap: 10px;
}
.app-card .step-list li {
  min-height: 58px;
  padding: 14px 14px 14px 62px;
  display: flex;
  align-items: center;
  border-radius: 16px;
}
.app-card .step-list li::before {
  top: 50%;
  transform: translateY(-50%);
}
.live-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.live-card {
  min-height: 190px;
  padding: 22px;
  border-radius: 24px;
  cursor: pointer;
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(255, 47, 135, 0.28),
      transparent 110px
    ),
    linear-gradient(160deg, #191936, #10102d);
}
.live-card .card-title::before {
  content: "●";
  margin-right: 8px;
  color: #ff2f87;
}
.live-card ul,
.provider-card ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.live-card li,
.provider-card li {
  margin: 0;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
}
.provider-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.provider-card {
  min-height: 240px;
  padding: 22px;
  border-radius: 24px;
  background:
    radial-gradient(
      circle at 20% 0,
      rgba(102, 62, 210, 0.28),
      transparent 120px
    ),
    linear-gradient(160deg, #191936, #10102d);
}
.provider-card .card-title {
  min-height: 48px;
  display: flex;
  align-items: center;
}
footer {
  margin-top: 50px;
  background: #010104;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 20px 42px;
}
.footer-app-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 28px;
  padding: 28px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 10% 0, rgba(195, 0, 84, 0.35), transparent 260px),
    linear-gradient(160deg, #191936, #10102d);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-app-banner strong {
  display: block;
  font-size: 28px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 6px;
}
.footer-app-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-app-actions span {
  padding: 12px 16px;
  border-radius: 14px;
  background: #c30054;
  color: #fff;
  font-weight: 800;
}
.footer-grid {
  padding: 22px;
  border-radius: 22px;
  background: #10102d;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-safe-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  padding: 16px;
  border-radius: 18px;
  background: #10102d;
}
.footer-safe-row span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #d6d6e8;
  font-size: 13px;
}
@media (max-width: 920px) {
  .step-list {
    grid-template-columns: 1fr;
  }
  .step-list li {
    min-height: 72px;
    padding: 18px 18px 18px 72px;
    display: flex;
    align-items: center;
  }
  .step-list li::before {
    top: 50%;
    transform: translateY(-50%);
  }
  .app-columns,
  .live-grid,
  .provider-grid,
  .footer-app-banner,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* FINAL USER FIXES */
.bonus-deposit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 22px 0 26px;
}
.deposit-card {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  padding: 22px;
  border-radius: 24px;
  background:
    radial-gradient(
      circle at 20% 10%,
      rgba(255, 47, 135, 0.38),
      transparent 90px
    ),
    linear-gradient(160deg, rgba(195, 0, 84, 0.2), rgba(16, 16, 45, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.deposit-card::after {
  content: "🎁";
  position: absolute;
  right: 18px;
  top: 14px;
  font-size: 46px;
  opacity: 0.72;
}
.deposit-label {
  display: block;
  position: relative;
  z-index: 1;
  color: #fff;
  font-weight: 900;
  margin-bottom: 8px;
}
.deposit-card strong {
  display: block;
  position: relative;
  z-index: 1;
  font-size: 42px;
  line-height: 1;
  color: #ff2f87;
  margin-bottom: 6px;
}
.deposit-card span:not(.deposit-label),
.deposit-card b {
  display: block;
  position: relative;
  z-index: 1;
  color: #f7f7ff;
  font-size: 18px;
}
.deposit-card b {
  color: #ff68ad;
}
/* registration/login steps as horizontal rows, one below another */
.step-list.steps-vertical {
  grid-template-columns: 1fr !important;
  gap: 12px;
  max-width: 920px;
}
.step-list.steps-vertical li {
  display: flex !important;
  align-items: center;
  min-height: 76px !important;
  padding: 18px 22px 18px 82px !important;
  border-radius: 18px;
  font-size: 18px;
}
.step-list.steps-vertical li::before {
  top: 50% !important;
  left: 22px !important;
  transform: translateY(-50%) !important;
}
/* app title removed, keep cards clean */
.app-download-title {
  display: none !important;
}
/* live cards: equal title placement and centered headings */
.live-grid {
  align-items: stretch;
}
.live-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 205px;
}
.live-card .card-title {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 18px;
}
.live-card .card-title::before {
  position: static;
  flex: 0 0 auto;
}
.live-card ul {
  justify-content: center;
}
.live-card li {
  min-width: 145px;
  text-align: center;
}
/* providers: centered section title, equal card structure, same list style */
.provider-grid {
  align-items: stretch;
}
.provider-grid + p {
  margin-top: 18px;
}
h3:has(+ p + .provider-grid) {
  text-align: center;
}
.provider-card {
  display: flex;
  flex-direction: column;
  min-height: 315px;
}
.provider-card .card-title {
  min-height: 44px !important;
  justify-content: center;
  text-align: center;
  margin-bottom: 10px;
}
.provider-card .provider-count {
  align-self: center;
  margin: 0 0 16px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 47, 135, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}
.provider-card ul {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 0;
}
.provider-card li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  width: 100%;
  border-radius: 14px;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
}
@media (max-width: 920px) {
  .bonus-deposit-grid {
    grid-template-columns: 1fr;
  }
  .deposit-card {
    min-height: 130px;
  }
}

/* USER FIXES V4 */
.bonus-deposit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
}
.deposit-card {
  min-height: 190px !important;
  padding: 28px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  background:
    radial-gradient(
      circle at 16% 0%,
      rgba(255, 47, 135, 0.42),
      transparent 120px
    ),
    linear-gradient(155deg, rgba(133, 25, 89, 0.4), rgba(15, 16, 45, 0.98)) !important;
}
.deposit-card::after {
  content: none !important;
  display: none !important;
}
.deposit-label {
  font-size: 20px !important;
  margin-bottom: 14px !important;
}
.deposit-card strong {
  font-size: clamp(46px, 5vw, 74px) !important;
  margin-bottom: 14px !important;
}
.deposit-card span:not(.deposit-label),
.deposit-card b {
  font-size: 20px !important;
}
.deposit-card b {
  margin-top: 8px !important;
}
.step-list.steps-vertical {
  width: 100% !important;
  max-width: none !important;
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) !important;
  gap: 18px !important;
  margin-left: 0 !important;
}
.step-list.steps-vertical li {
  min-height: 180px !important;
  padding: 72px 22px 22px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  font-size: 18px !important;
  font-weight: 800 !important;
}
.step-list.steps-vertical li::before {
  top: 22px !important;
  left: 22px !important;
  transform: none !important;
}
.live-card .card-title {
  width: 100% !important;
  min-height: 44px !important;
  justify-content: center !important;
  text-align: center !important;
  margin: 0 auto 18px !important;
}
.live-card ul {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr)) !important;
  gap: 14px !important;
  width: 100% !important;
}
.live-card li {
  width: 100% !important;
  min-width: 0 !important;
  justify-content: center !important;
}
.provider-card .card-title {
  width: 100% !important;
  justify-content: center !important;
  text-align: center !important;
}
.provider-card ul {
  width: 100% !important;
}
.provider-card li {
  justify-content: center !important;
  text-align: center !important;
  min-height: 42px !important;
  padding: 10px 12px !important;
}
.provider-card .provider-count {
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
}
.footer-app-banner {
  display: none !important;
}
.footer-main-grid {
  background: #141432 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 26px !important;
  padding: 28px !important;
}
.footer-column h4 {
  color: #fff !important;
}
.footer-column a,
.footer-column p {
  color: #c6c4d6 !important;
}
.footer-badge,
.footer-badge:visited {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 10px 14px !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.07) !important;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 900 !important;
}
.footer-link-row {
  justify-content: center !important;
  padding: 18px !important;
}
.footer-link-row a {
  padding: 10px 16px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: #d6d6e8 !important;
  text-decoration: none !important;
  font-weight: 800 !important;
}
.footer-link-row a:hover,
.footer-column a:hover {
  color: #ff2f87 !important;
}
@media (max-width: 920px) {
  .bonus-deposit-grid {
    grid-template-columns: 1fr !important;
  }
  .deposit-card {
    min-height: 170px !important;
  }
  .step-list.steps-vertical {
    grid-template-columns: 1fr !important;
  }
}

html {
  scroll-behavior: smooth;
}
[id] {
  scroll-margin-top: 96px;
}
