.content-columns {
  display: flex;
  flex-wrap: nowrap;
  gap: 2em;
  margin-bottom: 1.75em;
}

.content-column {
  flex-basis: 0;
  flex-grow: 1;
  min-width: 0;
  overflow-wrap: break-word;
}

.content-image img {
  box-sizing: border-box;
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

.content-image.aligncenter,
.content-image .aligncenter {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.content-image .alignleft {
  float: left;
  margin: .5em 1em .5em 0;
}

.content-image .alignright {
  float: right;
  margin: .5em 0 .5em 1em;
}

.content-image figure {
  margin: 0 0 1em;
}

.content-table {
  overflow-x: auto;
}

.content-table table {
  border-collapse: collapse;
  width: 100%;
}

.content-table thead {
  border-bottom: 3px solid;
}

.content-table td,
.content-table th {
  border: 1px solid;
  padding: .5em;
}

.content-table .has-fixed-layout {
  table-layout: fixed;
}

.content-spacer {
  clear: both;
}

/* Main article layout */
.article-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 24px 0 48px;
}

.article-intro,
.article-card {
  min-width: 0;
  padding: clamp(20px, 2.5vw, 32px);
  border: 1px solid #343640;
  border-radius: 16px;
  background: linear-gradient(145deg, #26272f 0%, #1d1e24 100%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .16);
}

.article-intro {
  grid-column: 1 / -1;
  position: relative;
  overflow: hidden;
  padding-right: clamp(24px, 8vw, 120px);
  border-color: rgba(75, 211, 22, .45);
  background:
    radial-gradient(circle at 100% 0, rgba(75, 211, 22, .18), transparent 42%),
    linear-gradient(135deg, #292b34, #1b1c21);
}

.article-intro::after {
  content: "NEOSPIN";
  position: absolute;
  right: 24px;
  bottom: -10px;
  color: rgba(75, 211, 22, .08);
  font-size: clamp(48px, 9vw, 118px);
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.article-intro h1 {
  position: relative;
  z-index: 1;
  max-width: 1050px;
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
}

.article-intro p {
  position: relative;
  z-index: 1;
  max-width: 1050px;
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
}

.article-card {
  position: relative;
  border-top: 3px solid #4bd316;
}

.article-card:nth-child(3n) {
  border-top-color: #38bdf8;
}

.article-card:nth-child(4n) {
  border-top-color: #c4b5fd;
}

.article-card h2 {
  margin-bottom: 16px;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.25;
}

.article-card h3 {
  margin: 24px 0 12px;
  padding-left: 14px;
  border-left: 3px solid #4bd316;
  font-size: 20px;
  line-height: 1.35;
}

.article-card p {
  margin-bottom: 16px;
}

.article-card ul,
.article-card ol {
  display: grid;
  gap: 10px;
  margin: 16px 0 20px;
  padding-left: 22px;
}

.article-card li::marker {
  color: #4bd316;
  font-weight: 700;
}

.article-card table {
  display: table;
  margin-top: 20px;
  border: 0;
  border-radius: 10px;
  background: #18191e;
}

.article-card th {
  background: rgba(75, 211, 22, .12);
}

.article-card tr:nth-child(even) td {
  background: rgba(255, 255, 255, .025);
}

.article-card a {
  color: #4bd316;
}

.registration-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(400px, .85fr);
  gap: 28px;
  align-items: center;
}

.registration-copy {
  align-self: center;
}

.registration-steps {
  display: grid !important;
  gap: 10px !important;
  margin: 22px 0 0 !important;
  padding: 0 !important;
  list-style: none;
  counter-reset: registration-step;
}

.registration-steps li {
  counter-increment: registration-step;
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 12px;
  align-items: center;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  background: rgba(11, 12, 16, .48);
  transition: border-color .2s ease, background-color .2s ease;
}

.registration-steps li:hover {
  border-color: rgba(75, 211, 22, .65);
  background: rgba(75, 211, 22, .06);
}

.registration-steps li::before {
  content: counter(registration-step);
  grid-column: 1;
  grid-row: 1 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #4bd316;
  color: #10120f;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 0 0 5px rgba(75, 211, 22, .1);
}

.registration-steps strong {
  grid-column: 2;
  color: #fff;
  font-size: 15px;
  line-height: 1.35;
}

.registration-steps span {
  grid-column: 2;
  margin-top: 3px;
  color: #b8bbc4;
  font-size: 14px;
  line-height: 1.45;
}

.registration-media {
  width: 100%;
  max-width: 640px;
  margin: 0 !important;
  overflow: hidden;
  border: 1px solid #3d3e45;
  border-radius: 12px;
  background: #0b0c10;
}

.registration-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  border-radius: 0 !important;
  object-fit: contain;
  object-position: center;
}

.payment-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  gap: 24px 28px;
  align-items: center;
}

.payment-card > p,
.payment-card > table,
.payment-card > ol {
  grid-column: 1 / -1;
}

.payment-intro {
  min-width: 0;
}

.payment-steps {
  display: grid !important;
  gap: 10px !important;
  margin: 20px 0 0 !important;
  padding: 0 !important;
  list-style: none;
  counter-reset: payment-step;
}

.payment-steps li {
  counter-increment: payment-step;
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  background: rgba(11, 12, 16, .48);
  transition: border-color .2s ease, background-color .2s ease;
}

.payment-steps li:hover {
  border-color: rgba(75, 211, 22, .65);
  background: rgba(75, 211, 22, .06);
}

.payment-steps li::before {
  content: counter(payment-step);
  grid-column: 1;
  grid-row: 1 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #4bd316;
  color: #10120f;
  font-size: 15px;
  font-weight: 800;
}

.payment-steps strong {
  grid-column: 2;
  color: #fff;
  font-size: 15px;
  line-height: 1.35;
}

.payment-steps span {
  grid-column: 2;
  margin-top: 3px;
  color: #b8bbc4;
  font-size: 14px;
  line-height: 1.45;
}

.withdrawal-guide {
  grid-column: 1 / -1;
  margin-top: 4px;
  padding: 22px;
  border: 1px solid rgba(56, 189, 248, .3);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(56, 189, 248, .08), rgba(11, 12, 16, .32));
}

.withdrawal-guide > p {
  margin: 0 !important;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
}

.withdrawal-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.withdrawal-steps li::before {
  background: #38bdf8;
}

.withdrawal-steps li:hover {
  border-color: rgba(56, 189, 248, .65);
  background: rgba(56, 189, 248, .06);
}

.payment-media {
  width: 100%;
  max-width: 560px;
  margin: 0 !important;
  overflow: hidden;
  border: 1px solid #3d3e45;
  border-radius: 12px;
  background: #0b0c10;
}

.payment-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 460px;
  border-radius: 0 !important;
  object-fit: contain;
}

.games-media {
  width: 90%;
  max-width: 1320px;
  margin: 24px auto 30px !important;
  overflow: hidden;
  border: 1px solid #3d3e45;
  border-radius: 14px;
  background: #0b0c10;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
}

.games-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 540px;
  border-radius: 0 !important;
  object-fit: cover;
  object-position: center top;
}

.jackpot-media {
  width: 90%;
  max-width: 1320px;
  margin: 26px auto 30px !important;
  overflow: hidden;
  border: 1px solid #3d3e45;
  border-radius: 14px;
  background: #0b0c10;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
}

.jackpot-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 540px;
  border-radius: 0 !important;
  object-fit: cover;
  object-position: center top;
}

.promo-media {
  float: right;
  width: 46%;
  max-width: 620px;
  margin: 6px 0 24px 30px !important;
  overflow: hidden;
  border: 1px solid #3d3e45;
  border-radius: 14px;
  background: #0b0c10;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
}

.promo-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  border-radius: 0 !important;
  object-fit: cover;
  object-position: center top;
}

@media (min-width: 1100px) {
  .article-card:has(> table),
  .article-card:has(> h3:nth-of-type(3)) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 781px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .article-intro,
  .article-card {
    grid-column: auto;
  }

  .article-card table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
  }

  .registration-card {
    grid-template-columns: 1fr;
  }

  .payment-card {
    grid-template-columns: 1fr;
  }

  .payment-media {
    max-width: none;
  }

  .withdrawal-steps {
    grid-template-columns: 1fr;
  }

  .withdrawal-guide {
    padding: 16px;
  }

  .payment-steps li {
    grid-template-columns: 36px 1fr;
    padding: 12px;
  }

  .payment-steps li::before {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .promo-media {
    float: none;
    width: 100%;
    max-width: none;
    margin: 20px 0 26px !important;
  }

  .promo-media img {
    max-height: none;
  }

  .registration-media img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .registration-steps li {
    grid-template-columns: 36px 1fr;
    padding: 12px;
  }

  .registration-steps li::before {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .content-columns {
    flex-wrap: wrap;
  }

  .content-column {
    flex-basis: 100%;
  }
}

/* FAQ cards */
.neospin-no-faq {
  margin-top: 48px;
}

.neospin-no-faq > h2 {
  margin-bottom: 24px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.2;
}

.neospin-no-faq__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
  counter-reset: faq-card;
}

.neospin-no-faq__item {
  counter-increment: faq-card;
  overflow: hidden;
  padding: 0 !important;
  border: 1px solid #3d3e45;
  border-radius: 12px;
  background: linear-gradient(145deg, #292a33, #202127) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
  cursor: pointer;
  transition: border-color .2s ease, transform .2s ease;
}

.neospin-no-faq__item:hover,
.neospin-no-faq__item.active {
  border-color: #4bd316;
}

.neospin-no-faq__item:hover {
  transform: translateY(-2px);
}

.neospin-no-faq__item .question {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 96px;
  margin: 0 !important;
  padding: 20px 52px 20px 20px;
  background: transparent !important;
  color: #fff;
  font-size: 18px;
  line-height: 1.4;
}

.neospin-no-faq__item .question::before {
  content: counter(faq-card, decimal-leading-zero);
  flex: 0 0 auto;
  color: #4bd316;
  font-size: 13px;
  font-weight: 700;
  line-height: 25px;
}

.neospin-no-faq__item::after {
  right: 20px !important;
  top: 24px !important;
}

.neospin-no-faq__item .answer {
  margin: 0 !important;
  padding: 0 20px 20px 45px;
  color: #b8bbc4;
  font-size: 15px;
  line-height: 1.7;
}

.neospin-no-faq__item .answer span {
  display: block;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .09);
}

.neospin-no-faq__item .question__icon {
  display: none;
}

@media (max-width: 900px) {
  .neospin-no-faq__list {
    grid-template-columns: 1fr;
  }

  .neospin-no-faq__item .question {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .neospin-no-faq {
    margin-top: 32px;
  }

  .neospin-no-faq__item .question {
    padding: 16px 44px 16px 16px;
    font-size: 16px;
  }

  .neospin-no-faq__item .answer {
    padding: 0 16px 16px;
    font-size: 14px;
  }
}

/* Responsible gaming page */
.responsible-page {
  padding-bottom: 60px;
}

.responsible-breadcrumbs {
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 24px 0 18px;
  color: #858a96;
  font-size: 14px;
}

.responsible-breadcrumbs a {
  color: #4bd316;
}

.responsible-content {
  color: #b8bbc4;
}

.responsible-content h1,
.responsible-content h2,
.responsible-content h3 {
  color: #fff;
}

.responsible-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  min-height: 390px;
  padding: clamp(30px, 5vw, 72px);
  overflow: hidden;
  border: 1px solid rgba(75, 211, 22, .42);
  border-radius: 20px;
  background:
    radial-gradient(circle at 88% 20%, rgba(75, 211, 22, .22), transparent 28%),
    radial-gradient(circle at 100% 100%, rgba(56, 189, 248, .1), transparent 38%),
    linear-gradient(135deg, #292b34, #17181d 72%);
  box-shadow: 0 20px 55px rgba(0, 0, 0, .25);
}

.responsible-hero::before {
  content: "SAFE PLAY";
  position: absolute;
  right: 24px;
  bottom: -18px;
  color: rgba(255, 255, 255, .035);
  font-size: clamp(70px, 12vw, 180px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.responsible-hero__copy {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.responsible-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: #4bd316;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.responsible-hero h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.08;
}

.responsible-hero p {
  max-width: 800px;
  font-size: 17px;
  line-height: 1.75;
}

.responsible-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.responsible-hero__actions .neospin-no-button {
  width: auto;
  min-width: 170px;
}

.responsible-hero__badge {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 180px;
  border: 2px solid #4bd316;
  border-radius: 50%;
  background: rgba(11, 12, 16, .68);
  box-shadow: 0 0 0 14px rgba(75, 211, 22, .08);
}

.responsible-hero__badge strong {
  color: #fff;
  font-size: 64px;
  line-height: 1;
}

.responsible-hero__badge span {
  margin-top: 8px;
  color: #4bd316;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.responsible-alert {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  margin: 22px 0;
  padding: 22px 26px;
  border: 1px solid rgba(255, 179, 71, .45);
  border-radius: 14px;
  background: rgba(255, 179, 71, .08);
}

.responsible-alert__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffb347;
  color: #17181d;
  font-size: 27px;
  font-weight: 900;
}

.responsible-alert h2 {
  margin: 0 0 5px;
  font-size: 20px;
}

.responsible-alert p {
  margin: 0;
  line-height: 1.6;
}

.responsible-alert a {
  color: #ffca7a;
  font-weight: 700;
}

.responsible-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 22px 0;
}

.responsible-card,
.responsible-tools,
.responsible-howto,
.responsible-budget,
.responsible-support,
.responsible-note {
  border: 1px solid #343640;
  border-radius: 16px;
  background: linear-gradient(145deg, #25262e, #1d1e24);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .15);
}

.responsible-card {
  position: relative;
  padding: clamp(22px, 3vw, 34px);
  overflow: hidden;
  border-top: 3px solid #4bd316;
}

.responsible-card--warning {
  border-top-color: #ffb347;
}

.responsible-card__number {
  position: absolute;
  right: 20px;
  top: 10px;
  color: rgba(255, 255, 255, .05);
  font-size: 78px;
  font-weight: 900;
}

.responsible-card h2 {
  position: relative;
  margin-bottom: 20px;
  padding-right: 70px;
  font-size: clamp(23px, 2.5vw, 30px);
}

.responsible-checklist {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.responsible-checklist li {
  position: relative;
  padding-left: 28px;
  line-height: 1.55;
}

.responsible-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #4bd316;
  font-weight: 900;
}

.responsible-card--warning .responsible-checklist li::before {
  content: "!";
  color: #ffb347;
}

.responsible-tools,
.responsible-howto,
.responsible-support {
  margin: 22px 0;
  padding: clamp(24px, 4vw, 44px);
}

.responsible-section-heading {
  max-width: 900px;
  margin-bottom: 26px;
}

.responsible-section-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(26px, 3vw, 38px);
}

.responsible-section-heading p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
}

.responsible-tools__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.responsible-tool {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  background: rgba(11, 12, 16, .42);
  transition: transform .2s ease, border-color .2s ease;
}

.responsible-tool:hover {
  transform: translateY(-3px);
  border-color: rgba(75, 211, 22, .6);
}

.responsible-tool__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 10px;
  background: rgba(75, 211, 22, .14);
  color: #4bd316;
  font-size: 21px;
  font-weight: 800;
}

.responsible-tool h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.responsible-tool p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.responsible-howto {
  border-top: 3px solid #38bdf8;
}

.responsible-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: safer-step;
}

.responsible-steps li {
  counter-increment: safer-step;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid rgba(56, 189, 248, .24);
  border-radius: 12px;
  background: rgba(56, 189, 248, .055);
}

.responsible-steps li::before {
  content: counter(safer-step, decimal-leading-zero);
  margin-bottom: 18px;
  color: #38bdf8;
  font-size: 26px;
  font-weight: 900;
}

.responsible-steps strong {
  margin-bottom: 8px;
  color: #fff;
  font-size: 16px;
}

.responsible-steps span {
  font-size: 14px;
  line-height: 1.55;
}

.responsible-budget {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 30px;
  align-items: center;
  margin: 22px 0;
  padding: clamp(24px, 4vw, 42px);
  border-color: rgba(196, 181, 253, .35);
}

.responsible-budget h2 {
  font-size: clamp(26px, 3vw, 36px);
}

.responsible-budget p {
  margin: 0;
  line-height: 1.6;
}

.responsible-budget__questions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.responsible-budget__questions span {
  position: relative;
  padding: 15px 15px 15px 42px;
  border-radius: 10px;
  background: rgba(196, 181, 253, .08);
  color: #e5e1ff;
  font-size: 14px;
  line-height: 1.45;
}

.responsible-budget__questions span::before {
  content: "?";
  position: absolute;
  left: 14px;
  color: #c4b5fd;
  font-weight: 900;
}

.responsible-support__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.responsible-support__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(75, 211, 22, .25);
  border-radius: 12px;
  background: rgba(75, 211, 22, .055);
  color: #b8bbc4;
  transition: border-color .2s ease, background-color .2s ease;
}

.responsible-support__item:hover {
  border-color: #4bd316;
  background: rgba(75, 211, 22, .1);
}

.responsible-support__item strong {
  color: #fff;
  font-size: 17px;
}

.responsible-support__item span {
  color: #4bd316;
  font-size: 14px;
}

.responsible-note {
  margin-top: 22px;
  padding: 26px 30px;
  border-left: 4px solid #ffb347;
}

.responsible-note h2 {
  margin-bottom: 8px;
  font-size: 22px;
}

.responsible-note p {
  margin: 0;
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .responsible-tools__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .responsible-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .responsible-support__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .responsible-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .responsible-hero__badge {
    width: 120px;
    height: 120px;
  }

  .responsible-hero__badge strong {
    font-size: 44px;
  }

  .responsible-grid,
  .responsible-budget {
    grid-template-columns: 1fr;
  }

  .responsible-budget__questions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .responsible-alert {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .responsible-tools__grid,
  .responsible-steps {
    grid-template-columns: 1fr;
  }

  .responsible-hero__actions {
    flex-direction: column;
  }

  .responsible-hero__actions .neospin-no-button {
    width: 100%;
  }
}

/* Bonus terms page */
.bonus-terms-page { padding-bottom: 60px; }
.bonus-terms-content { color: #b8bbc4; }
.bonus-terms-content h1,.bonus-terms-content h2,.bonus-terms-content h3 { color: #fff; }

.bonus-terms-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 40px;
  align-items: center;
  min-height: 360px;
  padding: clamp(30px,5vw,68px);
  overflow: hidden;
  border: 1px solid rgba(75,211,22,.42);
  border-radius: 20px;
  background: radial-gradient(circle at 88% 22%,rgba(75,211,22,.22),transparent 30%),linear-gradient(135deg,#292b34,#17181d 72%);
  box-shadow: 0 20px 55px rgba(0,0,0,.25);
}
.bonus-terms-hero h1 { max-width: 900px; margin-bottom: 18px; font-size: clamp(36px,5vw,62px); line-height: 1.07; }
.bonus-terms-hero p { max-width: 850px; font-size: 17px; line-height: 1.7; }
.bonus-terms-hero__gift {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 160px;
  border: 2px solid #4bd316;
  border-radius: 18px;
  background: rgba(11,12,16,.66);
  box-shadow: 0 0 0 14px rgba(75,211,22,.07);
}
.bonus-terms-hero__gift span { color: #4bd316; font-size: 70px; font-weight: 300; line-height: .8; }
.bonus-terms-hero__gift strong { margin-top: 15px; color: #fff; font-size: 20px; letter-spacing: .12em; }

.bonus-terms-alert {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  margin: 22px 0;
  padding: 22px 26px;
  border: 1px solid rgba(255,179,71,.42);
  border-radius: 14px;
  background: rgba(255,179,71,.075);
}
.bonus-terms-alert__icon { display:flex;align-items:center;justify-content:center;width:48px;height:48px;border-radius:50%;background:#ffb347;color:#17181d;font-size:27px;font-weight:900; }
.bonus-terms-alert h2 { margin:0 0 5px;font-size:20px; }
.bonus-terms-alert p { margin:0;line-height:1.6; }

.bonus-quickfacts { display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;margin:22px 0; }
.bonus-quickfacts article { display:flex;flex-direction:column;gap:7px;padding:20px;border:1px solid #343640;border-top:3px solid #4bd316;border-radius:12px;background:linear-gradient(145deg,#25262e,#1d1e24); }
.bonus-quickfacts strong { color:#fff;font-size:17px; }
.bonus-quickfacts span { font-size:13px;line-height:1.5; }

.bonus-terms-layout { display:grid;grid-template-columns:270px minmax(0,1fr);gap:22px;align-items:start; }
.bonus-terms-toc { position:sticky;top:120px;padding:22px;border:1px solid #343640;border-radius:14px;background:linear-gradient(145deg,#25262e,#1d1e24); }
.bonus-terms-toc>strong { display:block;margin-bottom:14px;color:#fff;font-size:16px; }
.bonus-terms-toc nav { display:grid;gap:4px; }
.bonus-terms-toc a { padding:8px 10px;border-radius:7px;color:#9da1ac;font-size:13px;line-height:1.35;transition:.2s color,.2s background-color; }
.bonus-terms-toc a:hover { color:#4bd316;background:rgba(75,211,22,.09); }
.bonus-terms-sections { display:grid;gap:16px;min-width:0; }

.bonus-rule {
  position:relative;
  scroll-margin-top:120px;
  padding:clamp(22px,3vw,34px);
  overflow:hidden;
  border:1px solid #343640;
  border-left:3px solid #4bd316;
  border-radius:14px;
  background:linear-gradient(145deg,#25262e,#1d1e24);
  box-shadow:0 10px 26px rgba(0,0,0,.13);
}
.bonus-rule--danger { border-left-color:#ff6b6b; }
.bonus-rule__number { position:absolute;right:20px;top:8px;color:rgba(255,255,255,.045);font-size:74px;font-weight:900;line-height:1; }
.bonus-rule h2 { position:relative;margin-bottom:14px;padding-right:72px;font-size:clamp(23px,2.4vw,31px);line-height:1.25; }
.bonus-rule p { margin-bottom:14px;line-height:1.68; }
.bonus-rule p:last-child { margin-bottom:0; }
.bonus-rule-list { display:grid;gap:10px;margin:16px 0 0;padding:0;list-style:none; }
.bonus-rule-list li { position:relative;padding-left:27px;line-height:1.55; }
.bonus-rule-list li::before { content:"✓";position:absolute;left:0;color:#4bd316;font-weight:900; }
.bonus-rule-list--danger li::before { content:"×";color:#ff6b6b; }

.bonus-code-example { display:flex;flex-wrap:wrap;gap:8px 20px;align-items:center;margin-top:18px;padding:16px 18px;border:1px solid rgba(75,211,22,.25);border-radius:10px;background:rgba(75,211,22,.06); }
.bonus-code-example span { color:#4bd316;font-size:12px;font-weight:800;letter-spacing:.09em;text-transform:uppercase; }
.bonus-code-example strong { color:#fff;font-size:14px; }

.bonus-formula { display:grid;grid-template-columns:1fr auto 1fr auto 1fr;gap:12px;align-items:center;margin:20px 0;padding:20px;border-radius:12px;background:rgba(11,12,16,.45); }
.bonus-formula>div { display:flex;flex-direction:column;gap:7px;align-items:center;padding:15px;border:1px solid rgba(255,255,255,.08);border-radius:9px;text-align:center; }
.bonus-formula span { font-size:12px;text-transform:uppercase; }
.bonus-formula strong { color:#4bd316;font-size:23px; }
.bonus-formula__operator { color:#fff;font-size:24px!important;font-weight:800; }
.bonus-rule-note { color:#8f949f;font-size:13px; }

.bonus-contribution { display:grid;gap:13px;margin-top:20px; }
.bonus-contribution>div { display:grid;grid-template-columns:150px minmax(180px,1fr);gap:5px 15px;align-items:center; }
.bonus-contribution strong { color:#fff;font-size:14px; }
.bonus-contribution span { font-size:13px; }
.bonus-contribution i { grid-column:1/-1;display:block;height:8px;overflow:hidden;border-radius:999px;background:#111217; }
.bonus-contribution i::after { content:"";display:block;width:var(--value);height:100%;border-radius:inherit;background:linear-gradient(90deg,#4bd316,#9bed3c); }

.bonus-rule-warning { display:flex;flex-direction:column;gap:6px;margin-top:18px;padding:17px 19px;border:1px solid rgba(255,179,71,.3);border-radius:10px;background:rgba(255,179,71,.07); }
.bonus-rule-warning strong { color:#ffca7a; }
.bonus-rule-warning span { font-size:14px;line-height:1.5; }

.bonus-timeline { display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px;margin-top:20px;counter-reset:bonus-stage; }
.bonus-timeline>span { counter-increment:bonus-stage;position:relative;display:flex;flex-direction:column;gap:6px;padding:18px 15px 16px 48px;border-radius:10px;background:rgba(75,211,22,.06); }
.bonus-timeline>span::before { content:counter(bonus-stage);position:absolute;left:14px;top:16px;display:flex;align-items:center;justify-content:center;width:25px;height:25px;border-radius:50%;background:#4bd316;color:#10120f;font-weight:800; }
.bonus-timeline strong { color:#fff;font-size:14px; }
.bonus-timeline small { font-size:12px;line-height:1.4; }

.bonus-terms-contact { display:flex;gap:30px;align-items:center;justify-content:space-between;margin-top:22px;padding:clamp(24px,4vw,42px);border:1px solid rgba(75,211,22,.4);border-radius:16px;background:radial-gradient(circle at 100% 0,rgba(75,211,22,.16),transparent 35%),linear-gradient(145deg,#25262e,#1d1e24); }
.bonus-terms-contact h2 { margin-bottom:7px;font-size:clamp(25px,3vw,36px); }
.bonus-terms-contact p { margin:0; }
.bonus-terms-contact .neospin-no-button { flex:0 0 auto;min-width:150px; }

@media (max-width:1024px) {
  .bonus-quickfacts { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .bonus-terms-layout { grid-template-columns:1fr; }
  .bonus-terms-toc { position:static; }
  .bonus-terms-toc nav { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:768px) {
  .bonus-terms-hero { grid-template-columns:1fr; }
  .bonus-terms-hero__gift { width:150px;height:125px; }
  .bonus-formula { grid-template-columns:1fr; }
  .bonus-formula__operator { transform:rotate(90deg); }
  .bonus-timeline { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .bonus-terms-contact { align-items:flex-start;flex-direction:column; }
}
@media (max-width:520px) {
  .bonus-terms-alert { grid-template-columns:1fr;padding:18px; }
  .bonus-quickfacts,.bonus-terms-toc nav,.bonus-timeline { grid-template-columns:1fr; }
  .bonus-contribution>div { grid-template-columns:1fr; }
  .bonus-terms-contact .neospin-no-button { width:100%; }
}

/* Compact footer trust row */
.neospin-no-footer__copyright {
  margin-bottom: 18px !important;
}

.neospin-no-footer__columns {
  align-items: center;
  gap: 24px;
  padding-bottom: 24px;
}

.neospin-no-footer__logos {
  display: flex !important;
  flex: 1 1 auto;
  align-items: center;
  gap: 12px !important;
}

.footer-trust-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 52px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  background: rgba(255, 255, 255, .025);
}

.footer-trust-logo img {
  display: block;
  width: auto !important;
  max-width: 100%;
  height: auto !important;
  max-height: 36px;
  opacity: .75;
  object-fit: contain;
}

.neospin-no-footer__columns .neospin-no-langs {
  flex: 0 0 auto;
  margin: 0 0 0 auto !important;
}

.neospin-no-langs {
  position: relative;
}

.language-switch-link {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: block;
  border-radius: inherit;
}

[id="48088ecb-f799-0f53-7103-d0a6484b4944"] {
  display: none !important;
}

@media (max-width: 760px) {
  .neospin-no-footer__columns {
    align-items: flex-start;
    flex-direction: column;
  }

  .neospin-no-footer__logos {
    width: 100%;
    flex-wrap: wrap;
  }

  .neospin-no-footer__columns .neospin-no-langs {
    margin-left: 0 !important;
  }
}


/* Terms and conditions page */
.terms-page {
  padding-bottom: 60px;
}

.terms-content {
  color: #b8bbc4;
}

.terms-content h1,
.terms-content h2,
.terms-content h3 {
  color: #fff;
}

.terms-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  min-height: 350px;
  padding: clamp(30px, 5vw, 68px);
  overflow: hidden;
  border: 1px solid rgba(75, 211, 22, .4);
  border-radius: 20px;
  background:
    radial-gradient(circle at 90% 25%, rgba(75, 211, 22, .2), transparent 28%),
    linear-gradient(135deg, #292b34, #17181d 72%);
  box-shadow: 0 20px 55px rgba(0, 0, 0, .25);
}

.terms-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.06;
}

.terms-hero p {
  max-width: 850px;
  font-size: 17px;
  line-height: 1.7;
}

.terms-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.terms-meta span {
  display: flex;
  gap: 7px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  background: rgba(11, 12, 16, .42);
  font-size: 13px;
}

.terms-meta strong {
  color: #4bd316;
}

.terms-hero__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  height: 170px;
  border: 2px solid #4bd316;
  border-radius: 50%;
  background: rgba(11, 12, 16, .6);
  color: #fff;
  font-family: Georgia, serif;
  font-size: 92px;
  line-height: 1;
  box-shadow: 0 0 0 14px rgba(75, 211, 22, .07);
}

.terms-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  margin: 22px 0;
  padding: 22px 26px;
  border: 1px solid rgba(56, 189, 248, .38);
  border-radius: 14px;
  background: rgba(56, 189, 248, .07);
}

.terms-summary__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #38bdf8;
  color: #101217;
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 800;
}

.terms-summary h2 {
  margin: 0 0 5px;
  font-size: 20px;
}

.terms-summary p {
  margin: 0;
  line-height: 1.6;
}

.terms-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.terms-toc {
  position: sticky;
  top: 120px;
  padding: 22px;
  border: 1px solid #343640;
  border-radius: 14px;
  background: linear-gradient(145deg, #25262e, #1d1e24);
}

.terms-toc > strong {
  display: block;
  margin-bottom: 14px;
  color: #fff;
  font-size: 16px;
}

.terms-toc nav {
  display: grid;
  gap: 4px;
}

.terms-toc a {
  padding: 8px 10px;
  border-radius: 7px;
  color: #9da1ac;
  font-size: 13px;
  line-height: 1.35;
  transition: color .2s ease, background-color .2s ease;
}

.terms-toc a:hover {
  background: rgba(75, 211, 22, .09);
  color: #4bd316;
}

.terms-sections {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.terms-card {
  position: relative;
  scroll-margin-top: 120px;
  padding: clamp(22px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid #343640;
  border-left: 3px solid #4bd316;
  border-radius: 14px;
  background: linear-gradient(145deg, #25262e, #1d1e24);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .13);
}

.terms-card--warning {
  border-left-color: #ffb347;
}

.terms-card__number {
  position: absolute;
  right: 20px;
  top: 8px;
  color: rgba(255, 255, 255, .045);
  font-size: 74px;
  font-weight: 900;
  line-height: 1;
}

.terms-card h2 {
  position: relative;
  margin-bottom: 14px;
  padding-right: 72px;
  font-size: clamp(23px, 2.4vw, 31px);
  line-height: 1.25;
}

.terms-card h3 {
  margin-bottom: 7px;
  font-size: 17px;
}

.terms-card p {
  margin-bottom: 14px;
  line-height: 1.68;
}

.terms-card p:last-child {
  margin-bottom: 0;
}

.terms-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.terms-list li {
  position: relative;
  padding-left: 27px;
  line-height: 1.55;
}

.terms-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4bd316;
  font-weight: 900;
}

.terms-list--warning li::before {
  content: "×";
  color: #ffb347;
}

.terms-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.terms-split > div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  background: rgba(11, 12, 16, .4);
}

.terms-split p {
  margin: 0;
  font-size: 14px;
}

.terms-callout {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 179, 71, .28);
  border-radius: 9px;
  background: rgba(255, 179, 71, .07);
  line-height: 1.6;
}

.terms-callout strong {
  color: #ffca7a;
}

.terms-table-wrap {
  max-width: 100%;
  margin-top: 18px;
  overflow-x: auto;
  border: 1px solid #343640;
  border-radius: 10px;
}

.terms-table {
  width: 100%;
  min-width: 640px;
  margin: 0 !important;
  border-collapse: collapse;
  background: #18191e;
}

.terms-table th,
.terms-table td {
  padding: 14px 16px;
  border: 0;
  border-bottom: 1px solid #30313a;
  text-align: left;
  line-height: 1.5;
}

.terms-table th {
  background: rgba(75, 211, 22, .11);
  color: #fff;
}

.terms-table td:first-child {
  width: 180px;
  color: #4bd316;
  font-weight: 700;
}

.terms-inline-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 6px;
  color: #4bd316;
  font-weight: 700;
}

.terms-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: complaint-step;
}

.terms-process li {
  counter-increment: complaint-step;
  display: flex;
  flex-direction: column;
  padding: 17px;
  border-radius: 10px;
  background: rgba(56, 189, 248, .065);
}

.terms-process li::before {
  content: counter(complaint-step, decimal-leading-zero);
  margin-bottom: 12px;
  color: #38bdf8;
  font-size: 23px;
  font-weight: 900;
}

.terms-process strong {
  margin-bottom: 6px;
  color: #fff;
}

.terms-process span {
  font-size: 13px;
  line-height: 1.5;
}

.terms-contact {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(75, 211, 22, .4);
  border-radius: 16px;
  background:
    radial-gradient(circle at 100% 0, rgba(75, 211, 22, .16), transparent 35%),
    linear-gradient(145deg, #25262e, #1d1e24);
}

.terms-contact h2 {
  margin-bottom: 7px;
  font-size: clamp(25px, 3vw, 36px);
}

.terms-contact p {
  margin: 0;
}

.terms-contact .neospin-no-button {
  flex: 0 0 auto;
  min-width: 150px;
}

@media (max-width: 1024px) {
  .terms-layout {
    grid-template-columns: 1fr;
  }

  .terms-toc {
    position: static;
  }

  .terms-toc nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .terms-hero {
    grid-template-columns: 1fr;
  }

  .terms-hero__mark {
    width: 110px;
    height: 110px;
    font-size: 60px;
  }

  .terms-split,
  .terms-process {
    grid-template-columns: 1fr;
  }

  .terms-contact {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .terms-summary {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .terms-toc nav {
    grid-template-columns: 1fr;
  }

  .terms-contact .neospin-no-button {
    width: 100%;
  }
}
