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

body {
  font-family: Arial, sans-serif;
  background: #090909;
  color: #fff;
  line-height: 1.6;
}

.hero {
  display: block;
  height: 100vh;
  width: 100%;
  background-color: #090909;
}

.hero__img {
  display: none;
  width: 100%;
  height: 100vh;
  object-fit: fill;
}
.hero__img--mobile {
  display: block;
}
.header {
  position: fixed;
  transform: translateY(-200px);
  transition: 0.2s all;
  width: 100%;
  z-index: 1000;
}
.header--active {
  position: fixed;
  transform: translateY(0px);
}
.header-navigation {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px;
  gap: 20px;
  background-color: #111214;
  width: 100%;
}

.btn {
  width: 100%;
  display: block;
  background: #B2F24C;
  color: #000 !important;
  border: 1px solid #1D2026;
  padding: 15px 25px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 1px 0px 3px 2px#2C331F84;
  transition: 0.2s all;
  min-width: 250px;
  text-align: center;
}
.btn:hover {
  background: #090909;
  color: #B2F24C !important;
  border: 1px solid #B2F24C;
  transform: translateY(-2px);
  box-shadow: 1px 0px 8px 3px#2C331F;
}
.btn--reg {
  background: #B2F24C;
  color: #000;
  border: 1px solid #B2F24C;
  box-shadow: 1px 0px 3px 2px#2c3a1d8e;
}
.btn--reg:hover {
  background: #090909;
  color: #B2F24C;
  border: 1px solid #000;
  box-shadow: 1px 0px 8px 3px#38573a;
}
.btn--login {
  background: #8869A2;
  color: #000;
  border: 1px solid #8869A2;
  box-shadow: 1px 0px 3px 2px#7c793875;
}
.btn--login:hover {
  background: #090909;
  color: #F4C430;
  border: 1px solid #8869A2;
  box-shadow: 1px 0px 8px 3px#F7ED2A;
}
.btn--invite {
  background: #fff;
  color: #000;
  border: 1px solid #fff;
  box-shadow: 1px 0px 3px 2px#7c793875;
}
.btn--invite:hover {
  background: #090909;
  color: #fff;
  border: 1px solid #fff;
  box-shadow: 1px 0px 8px 3px#fff;
}

.content {
  max-width: 900px;
  margin: 20px auto;
  padding: 1px 20px;
  /* background-color: #111214; */
  border-radius: 10px;
}

.content h1,
.content h2,
.content h3 {
  margin-bottom: 15px;
  margin-top: 25px;
  padding-bottom: 10px;
}
.content h4,
.content h5,
.content h6 {
  margin-bottom: 5px;
  margin-top: 15px;
  padding-bottom: 2px;
}
.content h1 {
  font-size: clamp(30px, 5vw, 40px);
  line-height: clamp(35px, 5vw, 45px);
  color: #F4C430;
  padding-bottom: 10px;
  border-bottom: 1px solid #F4C430;
}
.content h2 {
  font-size: clamp(25px, 5vw, 35px);
  line-height: clamp(30px, 5vw, 40px);
}
.content h3 {
  font-size: clamp(20px, 5vw, 30px);
  line-height: clamp(25px, 5vw, 35px);
}
.content h4 {
  font-size: clamp(18px, 5vw, 25px);
  line-height: clamp(23px, 5vw, 30px);
}
.content h5 {
  font-size: clamp(16px, 5vw, 20px);
  line-height: clamp(21px, 5vw, 25px);
}
.content h6 {
  font-size: clamp(16px, 5vw, 18px);
  line-height: clamp(21px, 5vw, 23px);
}

.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
  color: #B2F24C;
  border-bottom: 1px solid #B2F24C;
}
.content p {
  margin-bottom: 15px;
  font-size: clamp(12px, 2vw, 16px);
  line-height: clamp(25px, 2vw, 30px);
}
.content a {
  color: #F4C430;
}
.content a:hover {
  color: #B2F24C;
}
.content ol,
.content ul {
  margin-left: 20px;
  margin-bottom: 15px;
}
.content table {
  overflow-x: auto;
  width: 100%;
  display: block;
  margin-bottom: 20px;
}
.content thead {
  color: #B2F24C;
}
.content thead,
.content tbody {
  width: 100%;
}
.content tr {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.content th {
  font-size: clamp(17px, 2vw, 22px);
  line-height: clamp(25px, 2vw, 30px);
}
.content td {
  font-size: clamp(14px, 2vw, 18px);
  line-height: clamp(21px, 2vw, 25px);
}
.content thead tr {
  border-bottom: 1px solid #B2F24C;
}
.content tbody tr:nth-last-child(2n + 1) {
  background-color: #14181C;
}
.content th,
.content td {
  min-width: 100px;
  padding: 10px;
}
.content img {
  width: 100%;
}
.cards {
  margin: 20px auto;
  max-width: 900px;
  padding: 1px 20px;
}
.cards__title {
  color: #B2F24C;
  font-size: clamp(25px, 5vw, 35px);
  line-height: clamp(30px, 5vw, 40px);
  margin-bottom: 20px;
}
.cards__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(1, minmax(150px, 1fr));
  grid-template-rows: repeat(6, minmax(100px, 1fr));
}
.cards__item {
  transition: 0.2s all;
  background: linear-gradient(90deg, #12212E, #1B3B36);
  border-radius: 10px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 15px;
  text-decoration: none;
}
.cards__item:hover {
  background: linear-gradient(180deg, #12212E, #1B3B36);
  scale: 1.01;
}
.cards__icon {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  object-fit: contain;
}
.cards__text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
.start {
  margin: 20px auto;
  max-width: 860px;
  padding: 40px 20px;
  background-color: #B2F24C;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-direction: column;
  margin-bottom: 0;
}
.start__title {
  color: #fff;
  font-size: clamp(25px, 5vw, 35px);
  line-height: clamp(30px, 5vw, 40px);
  margin-bottom: 10px;
}
.start__description {
  font-weight: 600;
  max-width: 500px;
  text-align: center;
}
.footer {
  background-color: #111214;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.footer__disclaimer,
.footer__text {
  max-width: 300px;
  font-size: 14px;
}
.footer__text {
  margin-bottom: 10px;
}
@media (min-width: 375px) {
  .cards__grid {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    grid-template-rows: repeat(3, minmax(100px, 1fr));
  }
}
@media (min-width: 575px) {
  .btn {
    width: auto;
  }
  .hero__img {
    display: block;
  }
  .hero__img--mobile {
    display: none;
  }
}
@media (min-width: 768px) {
  .content thead,
  .content tbody {
    display: block;
  }
  .cards__grid {
    grid-template-columns: repeat(3, minmax(200px, 1fr));
    grid-template-rows: repeat(2, minmax(100px, 1fr));
  }
}
@media (min-width: 860px) {
  .start {
    border-radius: 10px;
    margin-bottom: 20px;
  }
}


/* ---- Spinline: layout additions on top of the donor stylesheet ---- */
/* palette (sampled from the competitor): bg #090909, panel #111214,
   lime CTA #B2F24C, violet #8869A2, gold #F4C430, swamp #12212E / #1B3B36 */

.header-navigation {
  flex-direction: column;
  gap: 12px;
  padding: 10px 20px;
  border-bottom: 1px solid #1D2026;
}
.brand {
  display: block;
  line-height: 0;
}
.brand__img {
  width: auto;
  height: 38px;
}
.menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 18px;
  margin: 0;
}
.menu__link {
  color: #E7E9EA;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.menu__link:hover,
.menu__link--active {
  color: #B2F24C;
}
.header-navigation__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.header-navigation__cta .btn {
  width: auto;
  min-width: 150px;
  padding: 9px 18px;
  font-size: 16px;
}
.btn--login {
  background: #8869A2;
  color: #FFFFFF !important;
  border: 1px solid #8869A2;
}
.btn--login:hover {
  background: #090909;
  color: #C9AEE0 !important;
  border: 1px solid #8869A2;
}

.page-banner {
  width: 100%;
  margin: 0;
  padding: 0;
}
.page-banner img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 32 / 7;
  object-fit: cover;
  border-radius: 0;
}

.toc {
  border: 1px solid #F4C430;
  border-radius: 10px;
  padding: 16px 20px;
  margin: 25px 0;
  background-color: #111214;
}
.toc__title {
  color: #F4C430;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}
.toc__list {
  columns: 2;
  column-gap: 24px;
  margin: 0 0 0 18px;
}
.toc__list li {
  break-inside: avoid;
  margin-bottom: 4px;
}
.content h2[id],
.content h3[id] {
  scroll-margin-top: 90px;
}

/* table: the donor turned tables into flex rows, which drops <caption>
   out of the table box. Restore a real table inside a scroll wrapper. */
.table-scroll {
  overflow-x: auto;
  margin-bottom: 20px;
}
.content .table-scroll table {
  display: table;
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  margin-bottom: 0;
}
.content .table-scroll tr {
  display: table-row;
}
.content .table-scroll th,
.content .table-scroll td {
  display: table-cell;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #1D2026;
}
.content caption {
  display: table-caption;
  caption-side: top;
  text-align: left;
  padding: 10px 12px;
  font-weight: 700;
  color: #F4C430;
  background-color: #111214;
  border-radius: 8px 8px 0 0;
}
.content tbody th {
  color: #B2F24C;
  font-weight: 600;
  white-space: nowrap;
}

.cards__item {
  border: 1px solid #1D3B33;
}
.start {
  border: 1px solid #1D3B33;
  border-radius: 12px;
}
.start__title {
  color: #F4C430;
}

.footer {
  height: auto;
  padding: 24px 20px;
  gap: 10px;
  text-align: center;
  border-top: 1px solid #1D2026;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
}
.footer__link {
  color: #9AA0A6;
  font-size: 14px;
  text-decoration: none;
}
.footer__link:hover {
  color: #B2F24C;
}
.footer__text {
  font-size: 14px;
  color: #9AA0A6;
}
.footer__disclaimer {
  font-size: 13px;
  color: #6F757B;
}

/* ---- hero with a registration CTA panel (no input fields: the account is
   created on the operator's own site, so this panel links there instead of
   imitating a login form) ---- */
.hero {
  display: block;
  position: relative;
  height: auto;
  width: 100%;
  background-color: #090909;
}
.hero__media {
  display: block;
  line-height: 0;
}
.hero__img {
  display: none;
  width: 100%;
  height: auto;
}
.hero__img--mobile {
  display: block;
  width: 100%;
  height: auto;
}
.hero-cta {
  background: #111214;
  border: 1px solid #2A3140;
  border-radius: 14px;
  padding: 20px;
  margin: -40px 16px 0;
  position: relative;
  z-index: 2;
}
.hero-cta__title {
  color: #F4C430;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.hero-cta__lead {
  font-size: 14px;
  color: #C7CCD1;
  margin-bottom: 12px;
}
.hero-cta__list {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
}
.hero-cta__list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid #1D2026;
  font-size: 14px;
}
.hero-cta__list span {
  color: #9AA0A6;
  white-space: nowrap;
}
.hero-cta__list b {
  color: #FFFFFF;
  text-align: right;
}
.hero-cta__sum {
  color: #F4C430;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 14px;
}
.hero-cta__btn {
  width: 100%;
  min-width: 0;
}
.hero-cta__note {
  text-align: center;
  font-size: 14px;
  margin-top: 12px;
  color: #C7CCD1;
}
.hero-cta__note a {
  color: #B2F24C;
  text-decoration: none;
}
.hero-cta__small {
  font-size: 12px;
  color: #7A8087;
  margin-top: 10px;
  text-align: center;
}

/* FAQ accordion: the donor template had no FAQ markup at all, so the pairs
   were injected as plain paragraphs. Questions are now buttons that expand. */
.faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 25px;
}
.faq__item {
  background: #111214;
  border: 1px solid #2A3140;
  border-radius: 12px;
  overflow: hidden;
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 700;
  line-height: 1.35;
  color: #FFFFFF;
}
.faq__question:hover .faq__label,
.faq__question[aria-expanded="true"] .faq__label {
  color: #B2F24C;
}
.faq__question:focus-visible {
  outline: 2px solid #B2F24C;
  outline-offset: -2px;
}
.faq__icon {
  position: relative;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: #B2F24C;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.faq__icon::before {
  top: 10px;
  left: 0;
  width: 22px;
  height: 2px;
}
.faq__icon::after {
  top: 0;
  left: 10px;
  width: 2px;
  height: 22px;
}
.faq__question[aria-expanded="true"] .faq__icon::after {
  transform: scaleY(0);
  opacity: 0;
}
.faq__item--open {
  border-color: #B2F24C;
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq__answer p {
  margin: 0;
  padding: 0 20px 18px;
  color: #C7CCD1;
}
/* without JS every answer stays visible instead of being unreachable */
.no-js .faq__answer {
  max-height: none;
}
.no-js .faq__icon {
  display: none;
}

/* card text was clamped to 2 lines and cut mid-sentence */
.cards__text {
  display: block;
  -webkit-line-clamp: none;
  overflow: visible;
  text-overflow: clip;
  font-size: 15px;
  line-height: 1.5;
}
.cards__item {
  align-items: flex-start;
}
.cards__title,
.start__title {
  font-weight: 700;
}
.cards__title {
  color: #F4C430;
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1.25;
  margin-bottom: 20px;
}
.start__title {
  color: #F4C430;
  font-size: clamp(22px, 4vw, 30px);
  line-height: 1.25;
  margin-bottom: 10px;
}

@media (min-width: 900px) {
  .hero {
    display: grid;
    grid-template-columns: 1fr 380px;
    align-items: center;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  .hero__media {
    border-radius: 14px;
    overflow: hidden;
  }
  .hero-cta {
    margin: 0 0 0 -60px;
  }
}

@media (min-width: 768px) {
  .hero__img {
    display: block;
  }
  .hero__img--mobile {
    display: none;
  }
  .header-navigation {
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
  }
  .brand__img {
    height: 44px;
  }
}
@media (max-width: 600px) {
  .toc__list {
    columns: 1;
  }
  .page-banner img {
    aspect-ratio: 16 / 9;
  }
}
