@font-face {
  font-family: Poppins-Regular;
  src: url("../fonts/Poppins-Regular.ttf");
}

/* Slotty Slots FAQ */
.slotty-faq {
  padding: 78px 0 86px;
  color: #eaf9fc;
  background:
    radial-gradient(
      circle at 8% 16%,
      rgba(31, 207, 229, 0.17),
      transparent 27%
    ),
    radial-gradient(
      circle at 94% 84%,
      rgba(255, 105, 135, 0.14),
      transparent 25%
    ),
    linear-gradient(135deg, #061f2c 0%, #082e3a 48%, #172640 100%);
  border-top: 7px solid #23cfe5;
}

.slotty-faq-shell {
  width: min(1510px, calc(100% - 64px));
  margin: 0 auto;
}

.slotty-faq-intro {
  display: grid;
  grid-template-columns: minmax(400px, 0.86fr) minmax(560px, 1.14fr);
  gap: 70px;
  align-items: start;
  margin-bottom: 34px;
}

.slotty-faq-kicker {
  display: block;
  color: #ff708b;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.slotty-faq-intro h2 {
  margin: 12px 0 0;
  color: #fff;
  font-size: clamp(40px, 4.6vw, 67px);
  line-height: 1.05;
}

.slotty-faq-intro h2 strong {
  color: #29d2e6;
}

.slotty-faq-intro-copy p {
  margin: 0 0 15px;
  color: #bed2d9;
  font-size: 17px;
  line-height: 1.72;
}

.slotty-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.slotty-faq-column {
  display: grid;
  gap: 13px;
}

.slotty-faq-item {
  overflow: hidden;
  background: rgba(8, 49, 62, 0.86);
  border: 1px solid rgba(74, 194, 216, 0.23);
  border-radius: 17px;
  box-shadow: 0 16px 30px rgba(1, 17, 28, 0.16);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.slotty-faq-item:hover {
  border-color: rgba(69, 220, 236, 0.52);
}

.slotty-faq-item[open] {
  background: rgba(11, 61, 74, 0.96);
  border-color: rgba(40, 211, 230, 0.72);
  transform: translateY(-1px);
}

.slotty-faq-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 20px;
  align-items: center;
  min-height: 76px;
  padding: 17px 20px 17px 23px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.42;
  cursor: pointer;
  list-style: none;
}

.slotty-faq-item summary::-webkit-details-marker {
  display: none;
}

.slotty-faq-item summary:focus-visible {
  outline: 3px solid #ff708b;
  outline-offset: -4px;
  border-radius: 15px;
}

.slotty-faq-item summary i {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: linear-gradient(135deg, #22d0e6, #149ee4);
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(19, 187, 216, 0.18);
}

.slotty-faq-item summary i::before,
.slotty-faq-item summary i::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 180ms ease;
}

.slotty-faq-item summary i::after {
  transform: rotate(90deg);
}

.slotty-faq-item[open] summary i::after {
  transform: rotate(0);
}

.slotty-faq-answer {
  margin: 0 20px 0 23px;
  padding: 0 52px 21px 0;
  border-top: 1px solid rgba(117, 200, 216, 0.18);
}

.slotty-faq-answer p {
  margin: 17px 0 0;
  color: #bdd1d7;
  font-size: 15px;
  line-height: 1.68;
}

.slotty-faq-note {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 22px;
  padding: 23px 27px;
  color: #183e48;
  background: linear-gradient(115deg, #f3feff, #fff8f2);
  border-radius: 17px;
}

.slotty-faq-note > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #fff;
  font-size: 27px;
  font-weight: 800;
  background: linear-gradient(135deg, #ff708b, #f2a34b);
  border-radius: 17px;
}

.slotty-faq-note strong {
  font-size: 18px;
}

.slotty-faq-note p {
  margin: 5px 0 0;
  color: #59737b;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 1050px) {
  .slotty-faq-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 820px) {
  .slotty-faq {
    padding: 56px 0 64px;
  }
  .slotty-faq-shell {
    width: min(100% - 30px, 750px);
  }
  .slotty-faq-grid {
    grid-template-columns: 1fr;
  }
  .slotty-faq-intro-copy p {
    font-size: 16px;
  }
}

@media (max-width: 560px) {
  .slotty-faq-item summary {
    grid-template-columns: minmax(0, 1fr) 32px;
    gap: 13px;
    min-height: 70px;
    padding: 15px 16px 15px 18px;
    font-size: 15px;
  }
  .slotty-faq-item summary i {
    width: 32px;
    height: 32px;
  }
  .slotty-faq-answer {
    margin: 0 17px 0 18px;
    padding: 0 0 18px;
  }
  .slotty-faq-note {
    grid-template-columns: 1fr;
    padding: 21px;
  }
}

/* Game providers */
.slotty-providers {
  padding: 76px 0 84px;
  color: #eaf8fb;
  background:
    radial-gradient(
      circle at 88% 10%,
      rgba(255, 104, 132, 0.18),
      transparent 27%
    ),
    radial-gradient(
      circle at 8% 82%,
      rgba(19, 204, 224, 0.15),
      transparent 28%
    ),
    linear-gradient(135deg, #061c28 0%, #092f3b 48%, #142640 100%);
  border-top: 7px solid #140034;
}

.slotty-providers-shell {
  width: min(1510px, calc(100% - 64px));
  margin: 0 auto;
}

.slotty-providers-intro {
  display: grid;
  grid-template-columns: minmax(340px, 0.8fr) minmax(520px, 1.2fr);
  gap: 70px;
  align-items: start;
  margin-bottom: 34px;
}

.slotty-providers-kicker,
.slotty-provider-detail-heading > span,
.slotty-provider-facts span {
  display: block;
  color: #ff718b;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.slotty-providers-intro h2 {
  margin: 12px 0 0;
  max-width: 650px;
  color: #fff;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.04;
}

.slotty-providers-intro h2 strong {
  color: #1fd2ea;
}

.slotty-providers-intro p {
  margin: 0 0 14px;
  color: #c7dce2;
  font-size: 18px;
  line-height: 1.7;
}

.slotty-provider-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.slotty-provider-card {
  min-width: 0;
  padding: 0;
  overflow: hidden;
  color: #eaf8fb;
  text-align: left;
  background: rgba(5, 32, 44, 0.86);
  border: 1px solid rgba(50, 200, 220, 0.24);
  border-radius: 18px;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.slotty-provider-card:hover,
.slotty-provider-card:focus-visible {
  transform: translateY(-4px);
  border-color: #25d6eb;
  outline: none;
}

.slotty-provider-card.is-active {
  background: linear-gradient(
    180deg,
    rgba(15, 63, 76, 0.98),
    rgba(6, 35, 48, 0.98)
  );
  border-color: #25d6eb;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.22),
    inset 0 3px 0 #25d6eb;
}

.slotty-provider-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 112px;
  padding: 22px;
  background: #fff;
}

/* These two supplied wordmarks are the light brand variants. */
.slotty-provider-card[data-provider="pragmatic"] .slotty-provider-logo {
  background: linear-gradient(135deg, #171a20, #252b34);
}

.slotty-provider-card[data-provider="evolution"] .slotty-provider-logo {
  background: linear-gradient(135deg, #111820, #1e3038);
}

.slotty-provider-card[data-provider="pragmatic"] .slotty-provider-logo img,
.slotty-provider-card[data-provider="evolution"] .slotty-provider-logo img {
  max-width: 88%;
  max-height: 72px;
}

.slotty-provider-logo img {
  display: block;
  max-width: 100%;
  max-height: 66px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.slotty-provider-name,
.slotty-provider-card small,
.slotty-provider-more {
  display: block;
  margin-right: 18px;
  margin-left: 18px;
}

.slotty-provider-name {
  margin-top: 17px;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
}

.slotty-provider-card small {
  min-height: 48px;
  margin-top: 6px;
  color: #aac7cf;
  font-size: 14px;
  line-height: 1.45;
}

.slotty-provider-more {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  padding: 13px 0 16px;
  color: #24d4e9;
  font-size: 13px;
  font-weight: 800;
  border-top: 1px solid rgba(59, 199, 216, 0.18);
}

.slotty-provider-detail {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(620px, 1.32fr);
  gap: 44px 54px;
  margin-top: 22px;
  padding: 34px 38px 30px;
  background: rgba(7, 38, 51, 0.92);
  border: 1px solid rgba(54, 208, 226, 0.28);
  border-left: 5px solid #25d6eb;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.16);
}

.slotty-provider-detail-heading h3 {
  margin: 9px 0 10px;
  color: #fff;
  font-size: 34px;
}

.slotty-provider-detail-heading p,
.slotty-provider-note {
  margin: 0;
  color: #bfd6dc;
  font-size: 16px;
  line-height: 1.65;
}

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

.slotty-provider-facts div {
  padding: 19px;
  background: rgba(2, 24, 34, 0.64);
  border: 1px solid rgba(46, 190, 209, 0.19);
  border-radius: 13px;
}

.slotty-provider-facts span {
  margin-bottom: 8px;
  color: #20cfe6;
  font-size: 11px;
}

.slotty-provider-facts strong {
  color: #eefbfe;
  font-size: 15px;
  line-height: 1.48;
}

.slotty-provider-note {
  grid-column: 1 / -1;
  padding-top: 21px;
  border-top: 1px solid rgba(51, 198, 216, 0.2);
}

@media (max-width: 1180px) {
  .slotty-provider-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .slotty-provider-detail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .slotty-providers {
    padding: 54px 0 60px;
  }
  .slotty-providers-shell {
    width: min(100% - 30px, 720px);
  }
  .slotty-providers-intro {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .slotty-providers-intro p {
    font-size: 16px;
  }
  .slotty-provider-facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .slotty-provider-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .slotty-provider-logo {
    height: 92px;
    padding: 17px;
  }
  .slotty-provider-name {
    font-size: 17px;
  }
  .slotty-provider-card small {
    min-height: 62px;
  }
  .slotty-provider-detail {
    padding: 26px 22px;
  }
}

/* Understanding casino games */
.slotty-fairness {
  padding: 78px 0 86px;
  color: #173a45;
  background:
    radial-gradient(
      circle at 5% 12%,
      rgba(30, 208, 227, 0.16),
      transparent 27%
    ),
    radial-gradient(
      circle at 94% 82%,
      rgba(255, 113, 139, 0.13),
      transparent 25%
    ),
    linear-gradient(135deg, #eefcff 0%, #fffaf3 56%, #f5f4ff 100%);
  border-top: 7px solid #1ed0e5;
}

.slotty-fairness-shell {
  width: min(1510px, calc(100% - 64px));
  margin: 0 auto;
}

.slotty-fairness-intro {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(560px, 1.18fr);
  gap: 72px;
  align-items: start;
  margin-bottom: 34px;
}

.slotty-fairness-kicker,
.slotty-fairness-label {
  display: block;
  color: #ef5e79;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.slotty-fairness-intro h2 {
  margin: 12px 0 0;
  color: #0a3440;
  font-size: clamp(39px, 4vw, 62px);
  line-height: 1.04;
}

.slotty-fairness-intro h2 strong {
  color: #0aaec9;
}

.slotty-fairness-intro p {
  margin: 0 0 14px;
  color: #52717b;
  font-size: 18px;
  line-height: 1.7;
}

.slotty-game-knowledge {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
  margin-bottom: 24px;
}

.slotty-game-knowledge article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #cae3e8;
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(22, 70, 83, 0.06);
}

.slotty-game-knowledge article > span,
.slotty-format-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, #13bed7, #647ff0);
  border-radius: 14px;
}

.slotty-game-knowledge strong {
  color: #153d49;
  font-size: 16px;
  line-height: 1.35;
}

.slotty-game-knowledge p {
  margin: 6px 0 0;
  color: #607980;
  font-size: 14px;
  line-height: 1.52;
}

.slotty-fairness-explainer {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(620px, 1.28fr);
  gap: 30px;
  padding: 36px;
  background: #092f3b;
  border-radius: 22px;
  box-shadow: 0 22px 48px rgba(8, 48, 60, 0.16);
}

.slotty-fairness-copy h3,
.slotty-records-heading h3 {
  margin: 11px 0 14px;
  color: #fff;
  font-size: 31px;
  line-height: 1.2;
}

.slotty-fairness-copy > p {
  margin: 0;
  color: #bed5dc;
  font-size: 16px;
  line-height: 1.65;
}

.slotty-fairness-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}

.slotty-fairness-tab {
  padding: 11px 15px;
  color: #bcd5dc;
  font-weight: 700;
  background: #072630;
  border: 1px solid rgba(46, 201, 220, 0.25);
  border-radius: 11px;
  cursor: pointer;
}

.slotty-fairness-tab:hover,
.slotty-fairness-tab:focus-visible,
.slotty-fairness-tab.is-active {
  color: #062a35;
  background: #20cfe5;
  border-color: #20cfe5;
  outline: none;
}

.slotty-fairness-panel {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 19px;
  min-height: 100%;
  padding: 27px;
  background: #fff;
  border-radius: 17px;
}

.slotty-fairness-panel[hidden] {
  display: none;
}

.slotty-panel-symbol {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #fff;
  font-size: 26px;
  background: linear-gradient(135deg, #ff6f8b, #8b6cf0);
  border-radius: 17px;
}

.slotty-fairness-panel h4 {
  margin: 0 0 9px;
  color: #123b47;
  font-size: 25px;
}

.slotty-fairness-panel p {
  margin: 0 0 17px;
  color: #57727b;
  font-size: 16px;
  line-height: 1.62;
}

.slotty-fairness-panel p + p {
  margin-top: -5px;
}

.slotty-fairness-panel dl {
  display: grid;
  gap: 9px;
  margin: 0;
}

.slotty-fairness-panel dl div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 13px;
  padding-top: 10px;
  border-top: 1px solid #dcecef;
}

.slotty-fairness-panel dt {
  color: #0badc5;
  font-weight: 800;
}

.slotty-fairness-panel dd {
  margin: 0;
  color: #526c75;
  line-height: 1.5;
}

.slotty-format-guide {
  margin-top: 24px;
  padding: 34px 36px 36px;
  color: #fff;
  background:
    radial-gradient(
      circle at 91% 6%,
      rgba(255, 113, 139, 0.22),
      transparent 27%
    ),
    linear-gradient(135deg, #0d4a57, #12344c 58%, #242d53);
  border-radius: 21px;
}

.slotty-format-guide-heading {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(500px, 1.15fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 23px;
}

.slotty-format-guide-heading h3 {
  margin: 10px 0 0;
  max-width: 650px;
  color: #fff;
  font-size: 31px;
  line-height: 1.2;
}

.slotty-format-guide-heading p {
  margin: 0;
  color: #c6dbe1;
  font-size: 16px;
  line-height: 1.65;
}

.slotty-format-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
}

.slotty-format-grid article {
  display: flex;
  min-width: 0;
  padding: 21px;
  flex-direction: column;
  background: rgba(5, 31, 44, 0.68);
  border: 1px solid rgba(64, 201, 218, 0.24);
  border-radius: 16px;
}

.slotty-format-grid article:nth-child(even) .slotty-format-icon {
  background: linear-gradient(135deg, #ff6f8b, #9a6cec);
}

.slotty-format-grid h4 {
  margin: 15px 0 8px;
  color: #fff;
  font-size: 21px;
}

.slotty-format-grid p {
  margin: 0 0 17px;
  color: #bfd3da;
  font-size: 14px;
  line-height: 1.58;
}

.slotty-format-grid small {
  margin-top: auto;
  padding-top: 15px;
  color: #26d2e7;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-top: 1px solid rgba(73, 198, 215, 0.2);
}

.slotty-format-grid strong {
  margin-top: 5px;
  color: #edfafd;
  font-size: 14px;
  line-height: 1.45;
}

.slotty-fairness-records {
  display: grid;
  grid-template-columns: minmax(290px, 0.68fr) minmax(650px, 1.32fr);
  gap: 40px;
  margin-top: 24px;
  padding: 34px 36px;
  color: #fff;
  background: linear-gradient(135deg, #162944, #243654);
  border-radius: 20px;
}

.slotty-records-heading p {
  margin: 0;
  color: #c8d6e5;
  font-size: 16px;
  line-height: 1.6;
}

.slotty-record-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.slotty-record-steps article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  padding: 17px;
  background: rgba(5, 21, 40, 0.48);
  border: 1px solid rgba(118, 175, 205, 0.22);
  border-radius: 13px;
}

.slotty-record-steps article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #082b36;
  font-size: 20px;
  background: #20cfe5;
  border-radius: 12px;
}

.slotty-record-steps strong {
  color: #fff;
  font-size: 16px;
}
.slotty-record-steps p {
  margin: 5px 0 0;
  color: #bdcedd;
  font-size: 14px;
  line-height: 1.5;
}

.slotty-fairness-note {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  align-items: center;
  margin-top: 20px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #e5d7d9;
  border-left: 5px solid #ff6f89;
  border-radius: 15px;
}

.slotty-fairness-note > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  font-weight: 800;
  background: #ff6f89;
  border-radius: 50%;
}

.slotty-fairness-note p {
  margin: 0;
  color: #536d75;
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 1120px) {
  .slotty-fairness-intro,
  .slotty-fairness-explainer,
  .slotty-fairness-records {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .slotty-game-knowledge,
  .slotty-format-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .slotty-format-guide-heading {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 760px) {
  .slotty-fairness {
    padding: 56px 0 62px;
  }
  .slotty-fairness-shell {
    width: min(100% - 30px, 700px);
  }
  .slotty-fairness-intro {
    gap: 22px;
  }
  .slotty-fairness-intro p {
    font-size: 16px;
  }
  .slotty-fairness-explainer,
  .slotty-fairness-records,
  .slotty-format-guide {
    padding: 25px 21px;
  }
  .slotty-record-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .slotty-game-knowledge,
  .slotty-format-grid {
    grid-template-columns: 1fr;
  }
  .slotty-fairness-panel {
    grid-template-columns: 1fr;
    padding: 22px;
  }
  .slotty-fairness-panel dl div {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}

/* Tournaments and leaderboards */
.slotty-tournaments {
  padding: 78px 0 86px;
  color: #eaf8fb;
  background:
    radial-gradient(circle at 9% 8%, rgba(35, 210, 230, 0.18), transparent 28%),
    radial-gradient(
      circle at 92% 78%,
      rgba(255, 104, 135, 0.18),
      transparent 28%
    ),
    linear-gradient(135deg, #071c2a 0%, #0a3440 48%, #172441 100%);
  border-top: 7px solid #140034;
}

.slotty-tournaments-shell {
  width: min(1510px, calc(100% - 64px));
  margin: 0 auto;
}

.slotty-tournaments-intro {
  display: grid;
  grid-template-columns: minmax(370px, 0.82fr) minmax(570px, 1.18fr);
  gap: 72px;
  align-items: start;
  margin-bottom: 32px;
}

.slotty-tournaments-kicker,
.slotty-tournament-label,
.slotty-tournament-panel-type {
  display: block;
  color: #ff718d;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.slotty-tournaments-intro h2 {
  margin: 12px 0 0;
  color: #fff;
  font-size: clamp(39px, 4vw, 62px);
  line-height: 1.04;
}

.slotty-tournaments-intro h2 strong {
  color: #21d1e7;
}

.slotty-tournaments-intro p {
  margin: 0 0 14px;
  color: #c2d8df;
  font-size: 18px;
  line-height: 1.7;
}

.slotty-event-principles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
  margin-bottom: 24px;
}

.slotty-event-principles article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 20px;
  background: rgba(4, 30, 43, 0.72);
  border: 1px solid rgba(49, 199, 218, 0.24);
  border-radius: 16px;
}

.slotty-event-principles article > span,
.slotty-tournament-panel-icon,
.slotty-event-format-grid article > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #062b36;
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, #21d1e7, #6ee2d1);
  border-radius: 14px;
}

.slotty-event-principles strong {
  color: #fff;
  font-size: 16px;
}
.slotty-event-principles p {
  margin: 6px 0 0;
  color: #afcbd3;
  font-size: 14px;
  line-height: 1.5;
}

.slotty-tournament-explorer {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(650px, 1.28fr);
  gap: 28px;
  padding: 35px;
  color: #143a46;
  background: linear-gradient(135deg, #ecfbfd, #fff7f1);
  border-radius: 22px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.18);
}

.slotty-tournament-menu h3 {
  margin: 11px 0 13px;
  color: #113c48;
  font-size: 31px;
  line-height: 1.2;
}

.slotty-tournament-menu > p {
  margin: 0;
  color: #5d777f;
  font-size: 16px;
  line-height: 1.62;
}

.slotty-tournament-tabs {
  display: grid;
  gap: 9px;
  margin-top: 24px;
}

.slotty-tournament-tab {
  padding: 14px 16px;
  color: #42636c;
  font-weight: 800;
  text-align: left;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #c8e1e6;
  border-radius: 12px;
  cursor: pointer;
}

.slotty-tournament-tab:hover,
.slotty-tournament-tab:focus-visible,
.slotty-tournament-tab.is-active {
  color: #062d38;
  background: #24d0e6;
  border-color: #24d0e6;
  outline: none;
}

.slotty-tournament-panel {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 19px;
  min-height: 100%;
  padding: 28px;
  background: #fff;
  border: 1px solid #d7e9ec;
  border-radius: 17px;
}

.slotty-tournament-panel[hidden] {
  display: none;
}
.slotty-tournament-panel-icon {
  width: 58px;
  height: 58px;
  color: #fff;
  font-size: 25px;
  background: linear-gradient(135deg, #ff708c, #8c6cf0);
}
.slotty-tournament-panel h4 {
  margin: 7px 0 11px;
  color: #123c48;
  font-size: 26px;
  line-height: 1.25;
}
.slotty-tournament-panel > div > p {
  margin: 0 0 12px;
  color: #58727a;
  font-size: 15px;
  line-height: 1.62;
}

.slotty-tournament-checks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 17px;
}

.slotty-tournament-checks div {
  padding: 14px;
  background: #f1fafb;
  border: 1px solid #d5e9ec;
  border-radius: 11px;
}

.slotty-tournament-checks strong {
  color: #0baac2;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.slotty-tournament-checks p {
  margin: 5px 0 0;
  color: #60777e;
  font-size: 13px;
  line-height: 1.45;
}

.slotty-event-formats {
  display: grid;
  grid-template-columns: minmax(310px, 0.7fr) minmax(680px, 1.3fr);
  gap: 38px;
  margin-top: 24px;
  padding: 34px 36px;
  background: rgba(4, 28, 42, 0.66);
  border: 1px solid rgba(53, 196, 215, 0.22);
  border-radius: 20px;
}

.slotty-event-formats-heading h3 {
  margin: 10px 0 12px;
  color: #fff;
  font-size: 30px;
  line-height: 1.2;
}
.slotty-event-formats-heading p {
  margin: 0;
  color: #b7cfd6;
  font-size: 15px;
  line-height: 1.62;
}

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

.slotty-event-format-grid article {
  display: flex;
  padding: 19px;
  flex-direction: column;
  background: rgba(6, 39, 53, 0.88);
  border: 1px solid rgba(58, 190, 208, 0.2);
  border-radius: 14px;
}

.slotty-event-format-grid article:nth-child(even) > span {
  color: #fff;
  background: linear-gradient(135deg, #ff708b, #9c6dec);
}
.slotty-event-format-grid h4 {
  margin: 14px 0 7px;
  color: #fff;
  font-size: 19px;
}
.slotty-event-format-grid p {
  margin: 0 0 15px;
  color: #b5ccd3;
  font-size: 13px;
  line-height: 1.55;
}
.slotty-event-format-grid small {
  margin-top: auto;
  padding-top: 13px;
  color: #26d2e7;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-top: 1px solid rgba(62, 190, 208, 0.2);
}
.slotty-event-format-grid strong {
  margin-top: 5px;
  color: #effcff;
  font-size: 13px;
  line-height: 1.4;
}

.slotty-tournament-note {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  align-items: center;
  margin-top: 20px;
  padding: 20px 24px;
  color: #153c47;
  background: #fff9f2;
  border: 1px solid rgba(255, 112, 140, 0.28);
  border-left: 5px solid #ff708c;
  border-radius: 15px;
}

.slotty-tournament-note > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  font-weight: 800;
  background: #ff708c;
  border-radius: 50%;
}
.slotty-tournament-note p {
  margin: 0;
  color: #536e76;
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 1160px) {
  .slotty-tournaments-intro,
  .slotty-tournament-explorer,
  .slotty-event-formats {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .slotty-event-principles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .slotty-tournaments {
    padding: 56px 0 62px;
  }
  .slotty-tournaments-shell {
    width: min(100% - 30px, 750px);
  }
  .slotty-tournaments-intro {
    gap: 22px;
  }
  .slotty-tournaments-intro p {
    font-size: 16px;
  }
  .slotty-tournament-explorer,
  .slotty-event-formats {
    padding: 25px 21px;
  }
  .slotty-event-format-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .slotty-event-principles,
  .slotty-tournament-checks {
    grid-template-columns: 1fr;
  }
  .slotty-tournament-panel {
    grid-template-columns: 1fr;
    padding: 22px;
  }
}

/* About Slotty Slots */
.slotty-about {
  padding: 80px 0 88px;
  color: #173b46;
  background:
    radial-gradient(circle at 7% 8%, rgba(37, 208, 229, 0.18), transparent 27%),
    radial-gradient(
      circle at 94% 32%,
      rgba(255, 112, 139, 0.14),
      transparent 24%
    ),
    linear-gradient(135deg, #f2fdff 0%, #fff9f1 50%, #f7f3ff 100%);
  border-top: 7px solid #23cfe5;
}

.slotty-about-shell {
  width: min(1510px, calc(100% - 64px));
  margin: 0 auto;
}

.slotty-about-intro {
  display: grid;
  grid-template-columns: minmax(380px, 0.82fr) minmax(580px, 1.18fr);
  gap: 72px;
  align-items: start;
  margin-bottom: 31px;
}

.slotty-about-kicker,
.slotty-about-card-label,
.slotty-about-statement > div > span {
  display: block;
  color: #ef5f7a;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.slotty-about-intro h2 {
  margin: 12px 0 10px;
  color: #0d3742;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1;
}

.slotty-about-intro h2 strong {
  color: #0baec8;
}

.slotty-about-lead {
  max-width: 560px;
  margin: 0;
  color: #57727a;
  font-size: 22px;
  line-height: 1.45;
}

.slotty-about-opening p {
  margin: 0 0 15px;
  color: #506f78;
  font-size: 18px;
  line-height: 1.72;
}

.slotty-about-visual {
  position: relative;
  min-height: 380px;
  margin: 0 0 24px;
  overflow: hidden;
  background: #08283a;
  border: 1px solid rgba(16, 164, 195, 0.22);
  border-radius: 24px;
  box-shadow: 0 24px 52px rgba(13, 55, 70, 0.18);
}

.slotty-about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 45%,
    rgba(4, 27, 43, 0.86) 100%
  );
}

.slotty-about-visual img {
  display: block;
  width: 100%;
  height: clamp(380px, 35vw, 540px);
  object-fit: cover;
  object-position: center;
}

.slotty-about-visual figcaption {
  position: absolute;
  z-index: 1;
  right: 34px;
  bottom: 29px;
  left: 34px;
  display: flex;
  gap: 22px;
  align-items: end;
  justify-content: space-between;
  color: #fff;
}

.slotty-about-visual figcaption span {
  color: #55e2ef;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.slotty-about-visual figcaption strong {
  max-width: 690px;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.35;
  text-align: right;
}

.slotty-about-statement {
  display: grid;
  grid-template-columns: 72px minmax(320px, 0.85fr) minmax(480px, 1.15fr);
  gap: 25px;
  align-items: center;
  margin-bottom: 24px;
  padding: 28px 32px;
  color: #fff;
  background: linear-gradient(135deg, #0a3340, #15314d 65%, #352c59);
  border-radius: 20px;
  box-shadow: 0 20px 42px rgba(19, 57, 72, 0.15);
}

.slotty-about-mark {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  color: #fff;
  font-size: 34px;
  font-weight: 800;
  background: linear-gradient(135deg, #22d2e8, #149fe5);
  border-radius: 21px;
  box-shadow: 0 12px 25px rgba(18, 189, 218, 0.22);
}

.slotty-about-statement blockquote {
  margin: 8px 0 0;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
}

.slotty-about-statement > p {
  margin: 0;
  color: #c8d8e1;
  font-size: 16px;
  line-height: 1.65;
}

.slotty-about-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.slotty-about-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 19px;
  padding: 29px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid #cfe4e8;
  border-radius: 19px;
  box-shadow: 0 14px 31px rgba(25, 71, 82, 0.06);
}

.slotty-about-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #fff;
  font-size: 23px;
  font-weight: 800;
  background: linear-gradient(135deg, #1ecce3, #6680f0);
  border-radius: 17px;
}

.slotty-about-card:nth-child(even) .slotty-about-icon {
  background: linear-gradient(135deg, #ff718b, #956ce9);
}

.slotty-about-card h3 {
  margin: 7px 0 10px;
  color: #143c47;
  font-size: 25px;
  line-height: 1.25;
}

.slotty-about-card p {
  margin: 0 0 11px;
  color: #5a747c;
  font-size: 15px;
  line-height: 1.62;
}

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

.slotty-about-online {
  display: grid;
  grid-template-columns: minmax(410px, 0.85fr) minmax(580px, 1.15fr);
  gap: 42px;
  margin-top: 24px;
  padding: 36px;
  color: #fff;
  background:
    radial-gradient(
      circle at 90% 12%,
      rgba(255, 112, 139, 0.24),
      transparent 26%
    ),
    linear-gradient(135deg, #063443, #0c5360 55%, #243153);
  border-radius: 22px;
}

.slotty-about-online-copy h3,
.slotty-about-values-heading h3 {
  margin: 10px 0 13px;
  color: #fff;
  font-size: 31px;
  line-height: 1.2;
}

.slotty-about-online-copy p {
  margin: 0 0 12px;
  color: #c2d8df;
  font-size: 16px;
  line-height: 1.64;
}

.slotty-about-online-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}

.slotty-about-online-points article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 13px;
  padding: 17px;
  background: rgba(3, 31, 43, 0.58);
  border: 1px solid rgba(63, 198, 216, 0.22);
  border-radius: 13px;
}

.slotty-about-online-points article > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #082d37;
  font-size: 18px;
  font-weight: 800;
  background: #23d0e6;
  border-radius: 12px;
}

.slotty-about-online-points strong {
  color: #fff;
  font-size: 15px;
}
.slotty-about-online-points p {
  margin: 5px 0 0;
  color: #b6cdd4;
  font-size: 13px;
  line-height: 1.48;
}

.slotty-about-values {
  display: grid;
  grid-template-columns: minmax(300px, 0.65fr) minmax(700px, 1.35fr);
  gap: 38px;
  margin-top: 24px;
  padding: 32px 35px;
  color: #fff;
  background: linear-gradient(135deg, #172942, #263654);
  border-radius: 20px;
}

.slotty-about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}

.slotty-about-values-grid article {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 3px 13px;
  padding: 16px;
  background: rgba(8, 25, 45, 0.5);
  border: 1px solid rgba(109, 170, 202, 0.2);
  border-radius: 13px;
}

.slotty-about-values-grid article > span {
  grid-row: 1 / 3;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #ff708b, #8b6bed);
  border-radius: 11px;
}

.slotty-about-values-grid strong {
  color: #fff;
  font-size: 15px;
}
.slotty-about-values-grid p {
  margin: 0;
  color: #c1cfdd;
  font-size: 13px;
  line-height: 1.45;
}

.slotty-about-close {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  align-items: center;
  margin-top: 20px;
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #cee4e8;
  border-left: 5px solid #21cfe5;
  border-radius: 17px;
}

.slotty-about-close strong {
  color: #143c47;
  font-size: 21px;
  line-height: 1.4;
}
.slotty-about-close p {
  margin: 7px 0 0;
  color: #58727a;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 1160px) {
  .slotty-about-intro,
  .slotty-about-online,
  .slotty-about-values {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .slotty-about-statement {
    grid-template-columns: 72px 1fr;
  }
  .slotty-about-statement > p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .slotty-about {
    padding: 56px 0 64px;
  }
  .slotty-about-shell {
    width: min(100% - 30px, 750px);
  }
  .slotty-about-intro {
    gap: 22px;
  }
  .slotty-about-opening p {
    font-size: 16px;
  }
  .slotty-about-visual {
    min-height: 360px;
    border-radius: 19px;
  }
  .slotty-about-visual img {
    height: 360px;
    object-position: 58% center;
  }
  .slotty-about-visual figcaption {
    right: 20px;
    bottom: 20px;
    left: 20px;
    display: block;
  }
  .slotty-about-visual figcaption strong {
    display: block;
    margin-top: 7px;
    font-size: 18px;
    text-align: left;
  }
  .slotty-about-mosaic {
    grid-template-columns: 1fr;
  }
  .slotty-about-online,
  .slotty-about-values {
    padding: 25px 21px;
  }
}

@media (max-width: 560px) {
  .slotty-about-statement {
    grid-template-columns: 1fr;
    padding: 24px 21px;
  }
  .slotty-about-statement > p {
    grid-column: auto;
  }
  .slotty-about-card {
    grid-template-columns: 1fr;
    padding: 23px 21px;
  }
  .slotty-about-online-points,
  .slotty-about-values-grid {
    grid-template-columns: 1fr;
  }
  .slotty-about-close {
    grid-template-columns: 1fr;
    padding: 24px 21px;
  }
}
/* Slotty Slots mobile casino */
.slotty-mobile {
  padding: 80px 24px;
  overflow: hidden;
  color: #07384a;
  background:
    radial-gradient(
      circle at 6% 18%,
      rgba(255, 112, 136, 0.18),
      transparent 25%
    ),
    radial-gradient(
      circle at 94% 76%,
      rgba(35, 207, 226, 0.23),
      transparent 28%
    ),
    linear-gradient(145deg, #fff9f4, #eefcfb 55%, #f7f5ff);
}
.slotty-mobile-shell {
  max-width: 1500px;
  margin: 0 auto;
}
.slotty-mobile-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 36px;
}
.slotty-mobile-kicker,
.slotty-mobile-label {
  display: block;
  margin-bottom: 13px;
  color: #ec647b;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.slotty-mobile h2 {
  margin: 0 !important;
  color: #07384a;
  font-size: clamp(37px, 4vw, 61px);
  font-weight: 500;
  line-height: 1.08;
}
.slotty-mobile h2 strong {
  font-weight: 800;
}
.slotty-mobile-intro p {
  margin: 0 0 17px !important;
  color: #466a76;
  font-size: 17px;
  line-height: 1.7;
}
.slotty-mobile-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.slotty-mobile-assurances span {
  padding: 8px 12px;
  border: 1px solid #bddfe1;
  border-radius: 999px;
  color: #137f92;
  background: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 800;
}
.slotty-mobile-showcase {
  display: grid;
  grid-template-columns: 0.93fr 1.07fr;
  gap: 44px;
  align-items: center;
  padding: 34px;
  border: 1px solid #d4e7e7;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 24px 65px rgba(11, 74, 88, 0.1);
}
.slotty-device-stage {
  position: relative;
  min-height: 570px;
  border-radius: 24px;
  background: linear-gradient(145deg, #0a4051, #071f35 66%, #2a1741);
}
.slotty-tablet {
  position: absolute;
  top: 64px;
  left: 7%;
  width: 72%;
  padding: 12px;
  border: 2px solid #6c8b94;
  border-radius: 25px;
  background: #07151d;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.35);
  transform: rotate(-2deg);
}
.slotty-device-screen {
  overflow: hidden;
  border-radius: 15px;
  background: #effbfb;
}
.slotty-device-camera {
  position: absolute;
  top: 50%;
  left: 5px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #6e8b94;
}
.slotty-device-top {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 14px;
  color: #fff;
  background: #052431;
}
.slotty-device-logo {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border-radius: 9px;
  color: #fff;
  background: #19cce5;
  font-size: 17px;
  font-weight: 900;
}
.slotty-device-top strong {
  font-size: 14px;
}
.slotty-device-top strong em {
  color: #28cee3;
  font-style: normal;
}
.slotty-device-top small {
  margin-left: auto;
  color: #91b6c0;
  font-size: 9px;
  text-transform: uppercase;
}
.slotty-device-message {
  padding: 27px 21px 20px;
  color: #fff;
  background:
    radial-gradient(circle at 83% 23%, #1cc8de 0, transparent 29%),
    linear-gradient(125deg, #0a3044, #102349);
}
.slotty-device-message span {
  display: block;
  margin-bottom: 6px;
  color: #ff7890;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.slotty-device-message strong {
  font-size: 24px;
  line-height: 1.15;
}
.slotty-device-games {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 13px;
}
.slotty-device-games img {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 8px;
  object-fit: cover;
}
.slotty-phone {
  position: absolute;
  right: 6%;
  bottom: 32px;
  width: 35%;
  padding: 8px;
  border: 2px solid #79919a;
  border-radius: 30px;
  background: #06141c;
  box-shadow: 0 30px 55px rgba(0, 0, 0, 0.44);
  transform: rotate(3deg);
  z-index: 2;
}
.slotty-phone-speaker {
  position: absolute;
  top: 13px;
  left: 50%;
  width: 38px;
  height: 5px;
  border-radius: 5px;
  background: #172a32;
  transform: translateX(-50%);
  z-index: 3;
}
.slotty-phone .slotty-device-screen {
  border-radius: 22px;
}
.slotty-phone .slotty-device-top {
  padding-top: 21px;
}
.slotty-phone .slotty-device-logo {
  width: 24px;
  height: 24px;
  font-size: 14px;
}
.slotty-phone .slotty-device-top strong {
  font-size: 11px;
}
.slotty-phone-hero {
  padding: 26px 15px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 15%, #e75a80, transparent 30%),
    linear-gradient(145deg, #092f42, #1a1d43);
}
.slotty-phone-hero small {
  display: block;
  color: #2bd2e4;
  font-size: 9px;
  text-transform: uppercase;
}
.slotty-phone-hero strong {
  font-size: 19px;
  line-height: 1.12;
}
.slotty-phone-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  padding: 9px;
}
.slotty-phone-cards img {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 7px;
  object-fit: cover;
}
.slotty-phone-nav {
  display: flex;
  justify-content: space-around;
  padding: 9px;
  color: #1abfd5;
  background: #fff;
}
.slotty-device-orbit {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.22);
}
.slotty-device-orbit--one {
  top: 27px;
  right: 12%;
  width: 47px;
  height: 47px;
  background: #ed647d;
}
.slotty-device-orbit--two {
  bottom: 27px;
  left: 8%;
  width: 57px;
  height: 57px;
  background: #23cbe0;
}
.slotty-mobile-choice h3 {
  margin: 0 0 13px !important;
  color: #07384a;
  font-size: clamp(29px, 2.5vw, 40px);
  line-height: 1.18;
}
.slotty-mobile-choice > p {
  margin: 0 0 22px !important;
  color: #506f7a;
  font-size: 16px;
  line-height: 1.65;
}
.slotty-mobile-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}
.slotty-mobile-tab {
  flex: 1;
  padding: 13px 10px;
  border: 1px solid #c7dfe1;
  border-radius: 12px;
  color: #315d69;
  background: #f7fbfb;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}
.slotty-mobile-tab span {
  margin-right: 5px;
  color: #1bbdd3;
}
.slotty-mobile-tab.is-active {
  color: #063543;
  border-color: #22cade;
  background: #22cade;
  box-shadow: 0 9px 20px rgba(16, 172, 193, 0.2);
}
.slotty-mobile-tab.is-active span {
  color: #fff;
}
.slotty-mobile-panel {
  min-height: 255px;
  padding: 22px;
  border: 1px solid #d2e4e5;
  border-radius: 16px;
  background: #fff;
}
.slotty-mobile-panel[hidden] {
  display: none;
}
.slotty-mobile-panel h4 {
  margin: 0 0 9px !important;
  color: #07384a;
  font-size: 21px;
}
.slotty-mobile-panel p {
  margin: 0 0 12px !important;
  color: #52717c;
  font-size: 15px;
  line-height: 1.58;
}
.slotty-mobile-panel ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.slotty-mobile-panel li {
  position: relative;
  margin: 0 !important;
  padding-left: 20px;
  color: #315d69;
  font-size: 14px;
}
.slotty-mobile-panel li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #19b7cc;
  font-weight: 900;
}
.slotty-mobile-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
  margin-top: 18px;
}
.slotty-mobile-features article {
  display: grid;
  grid-template-columns: 43px 1fr;
  gap: 12px;
  padding: 19px;
  border: 1px solid #d0e4e5;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
}
.slotty-mobile-features article > span {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border-radius: 12px;
  color: #fff;
  background: #ec647b;
  font-size: 19px;
  font-weight: 900;
}
.slotty-mobile-features strong {
  display: block;
  margin-bottom: 5px;
  color: #07384a;
  font-size: 15px;
}
.slotty-mobile-features p {
  margin: 0 !important;
  color: #57747e;
  font-size: 13px;
  line-height: 1.5;
}
@media (max-width: 1050px) {
  .slotty-mobile-intro,
  .slotty-mobile-showcase {
    grid-template-columns: 1fr;
  }
  .slotty-device-stage {
    min-height: 540px;
  }
  .slotty-mobile-features {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 650px) {
  .slotty-mobile {
    padding: 56px 16px;
  }
  .slotty-mobile-intro {
    gap: 24px;
  }
  .slotty-mobile-showcase {
    padding: 17px;
  }
  .slotty-device-stage {
    min-height: 430px;
  }
  .slotty-tablet {
    top: 50px;
    left: 3%;
    width: 82%;
  }
  .slotty-phone {
    right: 2%;
    width: 42%;
  }
  .slotty-device-message {
    padding: 18px 14px;
  }
  .slotty-device-message strong {
    font-size: 18px;
  }
  .slotty-mobile-tabs {
    flex-direction: column;
  }
  .slotty-mobile-features {
    grid-template-columns: 1fr;
  }
}
/* Slotty Slots account and security */
.slotty-security {
  padding: 78px 24px;
  color: #f4fbfd;
  background:
    radial-gradient(
      circle at 88% 4%,
      rgba(255, 102, 132, 0.2),
      transparent 25%
    ),
    linear-gradient(132deg, #061f2c 0%, #083747 54%, #10233d 100%);
}
.slotty-security-shell {
  max-width: 1500px;
  margin: 0 auto;
}
.slotty-security-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 62px;
  align-items: end;
}
.slotty-security-kicker {
  display: block;
  margin-bottom: 14px;
  color: #ff7189;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.slotty-security h2 {
  margin: 0 !important;
  color: #fff;
  font-size: clamp(36px, 4.1vw, 62px);
  font-weight: 500;
  line-height: 1.08;
}
.slotty-security h2 strong {
  color: #27d1e4;
  font-weight: 800;
}
.slotty-security-lead p {
  margin: 0 0 14px !important;
  color: #c7dce2;
  font-size: 17px;
  line-height: 1.7;
}
.slotty-security-source-note {
  padding-left: 16px;
  border-left: 3px solid #ff7189;
  color: #fff !important;
}
.slotty-security-status {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 22px;
}
.slotty-security-status article {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 14px;
  padding: 19px;
  border: 1px solid rgba(87, 210, 224, 0.24);
  border-radius: 17px;
  background: rgba(4, 25, 35, 0.44);
}
.slotty-security-status article > span {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border-radius: 12px;
  color: #062633;
  background: #27d1e4;
  font-size: 20px;
  font-weight: 900;
}
.slotty-security-status strong,
.slotty-security-status small {
  display: block;
}
.slotty-security-status strong {
  margin-bottom: 5px;
  color: #fff;
  font-size: 16px;
}
.slotty-security-status small {
  color: #a9c6ce;
  font-size: 13px;
  line-height: 1.45;
}
.slotty-security-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 18px;
}
.slotty-security-tabs {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 12px;
  border: 1px solid rgba(87, 210, 224, 0.2);
  border-radius: 20px;
  background: rgba(3, 22, 31, 0.52);
  align-self: start;
}
.slotty-security-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 17px 16px;
  border: 0;
  border-radius: 13px;
  color: #bed5dc;
  background: transparent;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}
.slotty-security-tab span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  color: #27d1e4;
  background: rgba(39, 209, 228, 0.12);
}
.slotty-security-tab.is-active {
  color: #052936;
  background: #27d1e4;
  box-shadow: 0 12px 27px rgba(0, 0, 0, 0.2);
}
.slotty-security-tab.is-active span {
  color: #fff;
  background: #073847;
}
.slotty-security-panel {
  min-height: 508px;
  padding: 35px;
  border: 1px solid rgba(87, 210, 224, 0.22);
  border-radius: 23px;
  background: linear-gradient(
    145deg,
    rgba(13, 65, 80, 0.84),
    rgba(7, 38, 51, 0.92)
  );
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}
.slotty-security-panel[hidden] {
  display: none;
}
.slotty-security-label {
  color: #ff7189;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.slotty-security-panel h3 {
  max-width: 800px;
  margin: 9px 0 14px !important;
  color: #fff;
  font-size: clamp(27px, 2.3vw, 38px);
  line-height: 1.2;
}
.slotty-security-panel > p {
  max-width: 1050px;
  margin: 0 0 25px !important;
  color: #bed4db;
  font-size: 17px;
  line-height: 1.65;
}
.slotty-security-rules {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}
.slotty-security-rules > div {
  padding: 20px;
  border: 1px solid rgba(130, 220, 230, 0.17);
  border-radius: 15px;
  background: rgba(2, 25, 34, 0.43);
}
.slotty-security-rules strong {
  display: block;
  margin-bottom: 7px;
  color: #fff;
  font-size: 16px;
}
.slotty-security-rules p {
  margin: 0 !important;
  color: #abc8d0;
  font-size: 14px;
  line-height: 1.55;
}
.slotty-security-alert {
  margin-bottom: 13px;
  padding: 21px;
  border: 1px solid rgba(255, 113, 137, 0.4);
  border-radius: 15px;
  background: rgba(255, 113, 137, 0.09);
}
.slotty-security-alert strong {
  display: block;
  margin-bottom: 6px;
  color: #ff8da0;
  font-size: 17px;
}
.slotty-security-alert p {
  margin: 0 !important;
  color: #e4d7db;
  font-size: 15px;
  line-height: 1.6;
}
.slotty-security-reminder {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
  padding: 19px 23px;
  border-radius: 16px;
  color: #073341;
  background: #f2fbf9;
}
.slotty-security-reminder > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  background: #ff7189;
  font-size: 23px;
  font-weight: 900;
}
.slotty-security-reminder p {
  margin: 0 !important;
  color: #315763;
  font-size: 15px;
  line-height: 1.55;
}
@media (max-width: 920px) {
  .slotty-security-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .slotty-security-layout {
    grid-template-columns: 1fr;
  }
  .slotty-security-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 660px) {
  .slotty-security {
    padding: 56px 16px;
  }
  .slotty-security-status,
  .slotty-security-rules {
    grid-template-columns: 1fr;
  }
  .slotty-security-tabs {
    grid-template-columns: 1fr;
  }
  .slotty-security-panel {
    min-height: 0;
    padding: 23px;
  }
}
/* Slotty Slots payment methods */
.slotty-payments {
  padding: 76px 24px;
  color: #07384a;
  background:
    radial-gradient(
      circle at 7% 12%,
      rgba(25, 207, 226, 0.18),
      transparent 26%
    ),
    radial-gradient(
      circle at 92% 88%,
      rgba(255, 110, 132, 0.16),
      transparent 28%
    ),
    #f5fbfa;
}
.slotty-payments-shell {
  max-width: 1500px;
  margin: 0 auto;
}
.slotty-payments-intro {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 34px;
}
.slotty-payments-kicker {
  display: block;
  margin-bottom: 14px;
  color: #ec647b;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.slotty-payments h2 {
  margin: 0 !important;
  color: #07384a;
  font-size: clamp(36px, 4.1vw, 62px);
  font-weight: 500;
  line-height: 1.08;
}
.slotty-payments h2 strong {
  font-weight: 800;
}
.slotty-payments-intro > p {
  margin: 0 !important;
  color: #3e6270;
  font-size: 18px;
  line-height: 1.7;
}
.slotty-payment-tabs {
  display: inline-flex;
  gap: 8px;
  padding: 7px;
  margin-bottom: 24px;
  border: 1px solid #c9e2e4;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.76);
}
.slotty-payment-tab {
  min-width: 170px;
  padding: 15px 24px;
  border: 0;
  border-radius: 12px;
  color: #215060;
  background: transparent;
  font: inherit;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
}
.slotty-payment-tab.is-active {
  color: #063849;
  background: #22cce2;
  box-shadow: 0 10px 24px rgba(18, 173, 196, 0.22);
}
.slotty-payment-panel {
  padding: 30px;
  border: 1px solid #d1e6e6;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(8, 61, 76, 0.08);
}
.slotty-payment-panel[hidden] {
  display: none;
}
.slotty-payment-panel-copy {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 26px;
}
.slotty-payment-panel-copy span {
  color: #ec647b;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.slotty-payment-panel-copy h3 {
  margin: 7px 0 0 !important;
  color: #07384a;
  font-size: 30px;
}
.slotty-payment-panel-copy p {
  margin: 0 !important;
  color: #486975;
  font-size: 16px;
  line-height: 1.65;
}
.slotty-payment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.slotty-payment-card {
  min-height: 226px;
  padding: 22px;
  border: 1px solid #d5e7e8;
  border-radius: 18px;
  background: #fff;
}
.slotty-payment-logo {
  display: flex;
  align-items: center;
  min-height: 60px;
  margin-bottom: 14px;
}
.slotty-brand-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 56px;
  padding: 9px 13px;
  overflow: hidden;
  border: 1px solid #b9d5d8;
  border-radius: 11px;
  background: linear-gradient(180deg, #fff, #f4f9f9);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.9),
    0 4px 10px rgba(8, 60, 74, 0.07);
}
.slotty-brand-tile img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 106px;
  max-height: 36px;
  object-fit: contain;
}
.slotty-brand-tile--dark {
  border-color: #0b3b50;
  background: linear-gradient(145deg, #082f42, #061f2f);
}
.slotty-brand-tile--crop img {
  width: 62px;
  height: 62px;
  max-width: none;
  max-height: none;
  transform: scale(1.55);
}
.slotty-brand-tile--colour-crop img {
  width: 62px;
  height: 62px;
  max-width: none;
  max-height: none;
  transform: scale(1.65);
}
.payment-logo-pair {
  gap: 10px;
}
.payment-logo-pair .slotty-brand-tile {
  width: 100px;
}
.payment-logo-pair .slotty-brand-tile img {
  max-width: 76px;
  max-height: 31px;
}
.payment-logo-pair .slotty-brand-tile--colour-crop img {
  width: 58px;
  height: 58px;
  max-width: none;
  max-height: none;
  transform: scale(1.55);
}
.slotty-payment-card h4 {
  margin: 0 0 9px !important;
  color: #07384a;
  font-size: 20px;
}
.slotty-payment-card p {
  margin: 0 0 16px !important;
  color: #52717c;
  font-size: 15px;
  line-height: 1.52;
}
.slotty-payment-card > span {
  display: block;
  padding: 14px 12px 0;
  margin: 0 -2px;
  border-top: 1px solid #cfe4e6;
  color: #137f92;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}
.slotty-payment-card > span strong {
  color: #07384a;
  font-weight: 900;
}
.slotty-payment-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}
.slotty-payment-facts article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 17px;
  padding: 24px;
  border: 1px solid #cae3e4;
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.74);
}
.slotty-payment-symbol {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 13px;
  color: #063849;
  background: #22cce2;
  font-size: 22px;
  font-weight: 900;
}
.slotty-payment-facts h3 {
  margin: 0 0 8px !important;
  color: #07384a;
  font-size: 21px;
}
.slotty-payment-facts p {
  margin: 0 !important;
  color: #4a6a76;
  font-size: 15px;
  line-height: 1.58;
}
.slotty-payment-crypto {
  border-color: #f2ccd3 !important;
  background: #fff8f8 !important;
}
.slotty-payment-crypto .slotty-payment-symbol {
  color: #fff;
  background: #ec647b;
}
@media (max-width: 1100px) {
  .slotty-payment-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .slotty-payments {
    padding: 54px 16px;
  }
  .slotty-payments-intro,
  .slotty-payment-panel-copy,
  .slotty-payment-facts {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .slotty-payment-tabs {
    display: flex;
  }
  .slotty-payment-tab {
    min-width: 0;
    flex: 1;
  }
  .slotty-payment-panel {
    padding: 20px;
  }
  .slotty-payment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 480px) {
  .slotty-payment-grid {
    grid-template-columns: 1fr;
  }
  .payment-logo-pair .slotty-brand-tile {
    width: 94px;
  }
}
@font-face {
  font-family: Poppins-Medium;
  src: url("../fonts/Poppins-Medium.ttf");
}
@font-face {
  font-family: Poppins-SemiBold;
  src: url("../fonts/Poppins-SemiBold.ttf");
}
@font-face {
  font-family: Poppins-Bold;
  src: url("../fonts/Poppins-Bold.ttf");
}
:root {
  --theme-color-1: #130b20;
  --theme-color-2: #ff6b3d;
  --theme-color-3: #47bc82;
  --theme-color-4: #0f012a;
  --thmee-color-5: #191753;
  --thmee-color-5: #340b7a;
  --bg-white: #ffffff;
  --bg-black: #000000;
  --font-color: #ffffff;
  --heading-color: #141414;
  --font-white: #ffffff;
  --font-black: #000000;
  --bg-color1: #19191a;
}
body {
  background-color: var(--theme-color-4);
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 25px;
  font-family: "Poppins-Regular", sans-serif;
  font-weight: normal;
  color: var(--font-color);
}
h1,
h2,
h3 {
  color: var(--font-color);
  margin-bottom: 0;
  font-family: "Poppins-Bold", sans-serif;
  font-weight: normal;
}
h4,
h5 {
  color: var(--font-color);
  margin-bottom: 0;
  font-family: "Poppins-SemiBold", sans-serif;
  font-weight: normal;
}
p {
  margin-bottom: 0;
}
a,
a:hover,
a:active,
a:focus {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.theme-btn {
  border-radius: 16px;
  height: 46px;
  text-align: center;
  border: none;
  max-width: max-content;
  width: auto;
  padding: 10px 15px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins-Regular", sans-serif;
  font-weight: normal;
}
.btn-main {
  color: var(--font-white);
  background-color: var(--theme-color-2);
  transition: all 0.5s ease-out;
  border: 1px solid var(--font-white);
  white-space: nowrap;
}
.btn-main:hover {
  background-position: left bottom;
  color: #fff;
  background-color: #dd3c0a;
}
.btn-main i {
  margin-left: 15px;
}
.main-content-container {
  width: 100%;
  position: relative;
  display: block;
}
.crown-navbar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  background: rgba(4, 22, 34, 0.97);
  border-bottom: 1px solid rgba(0, 202, 255, 0.28);
  box-shadow: 0 10px 28px rgba(0, 8, 18, 0.26);
  height: 80px;
  display: flex;
  align-items: center;
  transition: background 0.3s ease;
}
.slotty-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 178px;
  padding: 0;
  color: #ffffff !important;
}
.slotty-wordmark__mark {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(145deg, #00d2f2 0%, #008fe0 100%);
  box-shadow:
    0 8px 20px rgba(0, 198, 242, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  color: #fff;
  font-family: "Poppins-Bold", sans-serif;
  font-size: 27px;
  line-height: 1;
  transform: none;
}
.slotty-wordmark__name {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  column-gap: 5px;
  font-family: "Poppins-SemiBold", sans-serif;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.7px;
  white-space: nowrap;
}
.slotty-wordmark__name strong {
  color: #2bdcff;
  font-weight: 600;
}
.slotty-wordmark__name small {
  grid-column: 1 / -1;
  margin-top: 5px;
  color: #8aa9b9;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 3.2px;
  text-transform: uppercase;
}
/* NAV LINKS  */
.crown-navbar .nav-link {
  color: #e7f5fb;
  font-size: 16px;
  padding: 0 16px;
}
.crown-navbar .nav-link:hover {
  color: #2bdcff;
}
/* BUTTONS */
.nav-play {
  background: linear-gradient(135deg, #00c8f0, #008fe0) !important;
  border-color: #23d8ff !important;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 14px;
  font-weight: 600;
}
.nav-play:hover {
  filter: brightness(1.15);
}
/* MOBILE MENU */
.navbar-toggler {
  border: none;
  color: #ffffff;
  font-size: 22px;
}
.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}
/* ========== MOBILE NAVBAR FIX ========== */
@media (max-width: 768px) {
  .navbar {
    height: 58px !important;
    padding: 6px 0 !important;
  }
  .navbar .container {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .navbar-toggler {
    padding: 4px 6px !important;
    font-size: 20px !important;
  }
  .navbar-toggler .fa-bars {
    font-size: 20px !important;
  }
  .header-btns a {
    padding: 10px 18px !important;
    font-size: 14px !important;
    border-radius: 10px !important;
    margin-left: 10px !important;
  }
  #main_nav {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
}
.header-btns {
  display: flex;
  align-items: center;
}
.header-btns a {
  margin-left: 15px;
}
.header-btns a:first-child {
  margin-left: 0px;
}
.banner-container {
  width: 100%;
  position: relative;
  display: inline-block;
  background-image: url("../images/slotty-hero-online-slots-v4.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
  height: 100svh;
  min-height: 760px;
  overflow: hidden;
  /* background-color: var(--theme-color-4);
    */
  padding-top: 80px;
}
.banner-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(3, 16, 29, 0.98) 0%,
    rgba(3, 16, 29, 0.84) 34%,
    rgba(3, 16, 29, 0.24) 59%,
    rgba(3, 16, 29, 0.03) 100%
  );
  pointer-events: none;
}
.banner-container > .container {
  position: relative;
  z-index: 1;
}
.banner-content-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 34px 0 42px;
}
.banner-small-heading {
  font-size: 18px;
  margin-bottom: 10px;
  font-family: "Poppins-Medium", sans-serif;
  color: #ff6e85;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.banner-heading {
  font-size: 54px;
  color: #ffffff;
  margin-bottom: 15px;
  font-family: "Poppins-SemiBold", sans-serif;
  line-height: 1.08;
  max-width: 720px;
}
.banner-heading span {
  color: #2bdcff;
}
.banner-description {
  color: #d9edf6;
  margin-bottom: 20px;
  max-width: 590px;
  font-size: 17px;
  line-height: 1.75;
  color: #d9edf6;
}
.banner-container .btn-main {
  min-width: 158px;
  border-color: #23d8ff;
  background: linear-gradient(135deg, #00c8f0, #008fe0);
  box-shadow: 0 12px 26px rgba(0, 174, 232, 0.3);
}
.banner-container .btn-main:hover {
  background: linear-gradient(135deg, #23d8ff, #00a9e6);
}
.hero-geo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 15px 0 0;
  color: #9fc2d2;
  font-size: 13px;
  letter-spacing: 0.15px;
}
.hero-geo i {
  color: #ff6e85;
}
@media (max-width: 1199px) {
  .crown-navbar .nav-link {
    padding: 0 9px;
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .crown-navbar {
    height: auto;
    min-height: 80px;
  }
  .crown-navbar .navbar-collapse {
    margin: 12px -12px -8px;
    padding: 18px 18px 20px;
    border-top: 1px solid rgba(0, 202, 255, 0.2);
    background: #041622;
  }
  .crown-navbar .nav-link {
    padding: 9px 0;
  }
  .header-btns .nav-play {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .banner-container {
    height: 100vh;
    height: 100svh;
    min-height: 680px;
    background-position: 61% center;
  }
  .banner-container::before {
    background: linear-gradient(
      90deg,
      rgba(3, 16, 29, 0.96) 0%,
      rgba(3, 16, 29, 0.86) 66%,
      rgba(3, 16, 29, 0.5) 100%
    );
  }
  .banner-content-wrapper {
    align-items: flex-start;
    text-align: left;
  }
  .banner-heading {
    font-size: 42px;
    line-height: 1.1;
  }
  .banner-description {
    font-size: 15px;
    line-height: 1.65;
  }
  .banner-container .btn-main {
    width: auto;
    min-width: 158px;
  }
}
/* Hero headline accent */
.banner-heading span {
  display: block;
  color: #2bdcff !important;
  font-weight: 600;
  margin-top: 0;
}
/* GLOBAL CENTERING FOR ALL MAIN SECTION HEADINGS */
/* Popular slot covers — full 390 x 520 artwork, two rows of six. */
.slotty-slots {
  position: relative;
  overflow: hidden;
  padding: 92px 0 100px;
  scroll-margin-top: 92px;
  color: #f5fbff;
  background:
    radial-gradient(
      circle at 8% 12%,
      rgba(31, 211, 244, 0.12),
      transparent 28%
    ),
    radial-gradient(
      circle at 92% 8%,
      rgba(255, 103, 143, 0.08),
      transparent 24%
    ),
    #061f2d;
}
.slotty-slots__intro {
  max-width: 940px;
  margin-bottom: 28px;
}
.slotty-slots__intro > span,
.slotty-slot-detail > span {
  display: inline-block;
  margin-bottom: 11px;
  color: #ff7695;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.slotty-slots__intro h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(35px, 4vw, 50px);
  line-height: 1.08;
}
.slotty-slots__intro p {
  margin: 0;
  color: #bdd1dc;
  font-size: 17px;
  line-height: 1.75;
}
.slotty-slots__mechanics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
  margin-bottom: 28px;
}
.slotty-slots__mechanics p {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 11px;
  margin: 0;
  padding: 17px 18px;
  border: 1px solid rgba(122, 213, 232, 0.14);
  border-radius: 12px;
  background: rgba(8, 43, 58, 0.76);
}
.slotty-slots__mechanics i {
  grid-row: 1 / span 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #062430;
  border-radius: 9px;
  background: #20d5f5;
}
.slotty-slots__mechanics strong {
  color: #fff;
  font-size: 14px;
}
.slotty-slots__mechanics span {
  margin-top: 4px;
  color: #9fb9c4;
  font-size: 12px;
  line-height: 1.5;
}
.slotty-slots__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px 14px;
}
.slotty-slots__grid figure {
  min-width: 0;
  margin: 0;
}
.slotty-slots__grid img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
  border: 1px solid rgba(122, 213, 232, 0.18);
  border-radius: 12px;
  background: #0a2937;
  box-shadow: 0 15px 34px rgba(0, 7, 13, 0.23);
}
.slotty-slots__grid figcaption {
  padding-top: 9px;
}
.slotty-slot-name {
  width: 100%;
  padding: 4px 2px 6px;
  text-align: left;
  color: #edf9fd;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  cursor: pointer;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}
.slotty-slot-name:hover,
.slotty-slot-name:focus-visible,
.slotty-slot-name.is-active {
  color: #20d5f5;
  border-bottom-color: #20d5f5;
  outline: none;
}
.slotty-slot-name::after {
  content: " +";
  color: #ff7695;
  font-weight: 400;
}
.slotty-slot-name.is-active::after {
  content: " −";
}
.slotty-slot-detail {
  margin-top: 32px;
  padding: 29px 32px 30px;
  border: 1px solid rgba(122, 213, 232, 0.16);
  border-left: 4px solid #20d5f5;
  border-radius: 14px;
  background: rgba(8, 43, 58, 0.9);
}
.slotty-slot-detail h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 27px;
  line-height: 1.25;
}
.slotty-slot-detail p {
  max-width: 1160px;
  margin: 0 0 12px;
  color: #bdd1dc;
  font-size: 15px;
  line-height: 1.72;
}
.slotty-slot-detail p:last-child {
  margin-bottom: 0;
}
.slotty-slots__noscript {
  margin-top: 20px;
  color: #fff;
}
@media (max-width: 1199px) {
  .slotty-slots__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .slotty-slots__mechanics {
    grid-template-columns: 1fr;
  }
  .slotty-slots__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .slotty-slots {
    padding: 68px 0 76px;
  }
  .slotty-slots__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 11px;
  }
  .slotty-slot-name {
    font-size: 13px;
  }
  .slotty-slot-detail {
    padding: 24px 20px 25px;
  }
}

/* Shared navigation dropdown */
.slotty-nav-dropdown {
  min-width: 210px;
  padding: 9px;
  background: #082a37;
  border: 1px solid rgba(44, 207, 228, 0.3);
  border-radius: 13px;
  box-shadow: 0 18px 35px rgba(1, 20, 31, 0.24);
}

.slotty-nav-dropdown .dropdown-item {
  padding: 9px 12px;
  color: #dff7fb;
  font-size: 14px;
  border-radius: 8px;
}

.slotty-nav-dropdown .dropdown-item:hover,
.slotty-nav-dropdown .dropdown-item:focus {
  color: #062b37;
  background: #32d3e5;
}

/* Shared footer */
.slotty-footer {
  padding: 62px 0 24px;
  color: #c2d5db;
  background: #041923;
  border-top: 1px solid rgba(58, 203, 226, 0.24);
}

.slotty-footer-shell {
  width: min(1510px, calc(100% - 64px));
  margin: 0 auto;
}

.slotty-footer-top {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(720px, 1.58fr);
  gap: 76px;
  align-items: start;
}

.slotty-footer-logo {
  display: inline-flex;
  text-decoration: none;
}

.slotty-footer-brand p {
  max-width: 390px;
  margin: 22px 0 0;
  color: #91abb3;
  font-size: 14px;
  line-height: 1.7;
}

.slotty-footer-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.slotty-footer-nav > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.slotty-footer-nav h2 {
  margin: 0 0 7px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.slotty-footer-nav a {
  width: fit-content;
  color: #9fb6bd;
  font-size: 13px;
  line-height: 1.45;
  text-decoration: none;
  transition: color 160ms ease;
}

.slotty-footer-nav a:hover,
.slotty-footer-nav a:focus {
  color: #36d6e7;
}

.slotty-footer-notice {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 17px;
  align-items: center;
  margin-top: 40px;
  padding: 19px 22px;
  background: rgba(12, 50, 63, 0.74);
  border: 1px solid rgba(52, 200, 222, 0.18);
  border-radius: 14px;
}

.slotty-footer-notice > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, #ff6f8b, #ef9d48);
  border-radius: 50%;
}

.slotty-footer-notice p {
  margin: 0;
  color: #b6cbd1;
  font-size: 13px;
  line-height: 1.6;
}

.slotty-footer-bottom {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(126, 176, 188, 0.16);
}

.slotty-footer-bottom p {
  margin: 0;
  color: #78949d;
  font-size: 12px;
}

@media (max-width: 1100px) {
  .slotty-footer-top {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

@media (max-width: 760px) {
  .slotty-footer {
    padding-top: 48px;
  }
  .slotty-footer-shell {
    width: min(100% - 30px, 750px);
  }
  .slotty-footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 22px;
  }
}

@media (max-width: 460px) {
  .slotty-footer-nav {
    grid-template-columns: 1fr;
  }
  .slotty-footer-bottom {
    display: grid;
  }
}

/* Legal pages */
.slotty-legal-page {
  color: #173b46;
  background: #f4fbfc;
}

.slotty-legal-main {
  min-height: 70vh;
}

.slotty-legal-hero {
  padding: 76px 0 70px;
  color: #fff;
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(45, 211, 230, 0.24),
      transparent 28%
    ),
    radial-gradient(
      circle at 88% 75%,
      rgba(255, 110, 139, 0.18),
      transparent 27%
    ),
    linear-gradient(135deg, #06212d, #0b3542 54%, #172541);
  border-bottom: 7px solid #28cfe4;
}

.slotty-legal-shell {
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
}

.slotty-legal-hero h1 {
  max-width: 930px;
  margin: 14px 0 15px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.03;
}

.slotty-legal-hero p {
  max-width: 800px;
  margin: 0;
  color: #c2d9df;
  font-size: 18px;
  line-height: 1.7;
}

.slotty-legal-content {
  padding: 62px 0 78px;
  background:
    radial-gradient(circle at 4% 7%, rgba(44, 207, 229, 0.1), transparent 23%),
    linear-gradient(135deg, #effcfd, #fffaf3 52%, #f7f5ff);
}

.slotty-legal-layout {
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  gap: 38px;
  align-items: start;
}

.slotty-legal-index {
  position: sticky;
  top: 102px;
  display: grid;
  gap: 9px;
  padding: 22px;
  background: #082f3b;
  border: 1px solid rgba(44, 207, 229, 0.24);
  border-radius: 16px;
  box-shadow: 0 17px 35px rgba(10, 51, 64, 0.13);
}

.slotty-legal-index strong {
  margin-bottom: 5px;
  color: #fff;
  font-size: 15px;
}

.slotty-legal-index a {
  color: #b7d1d7;
  font-size: 13px;
  line-height: 1.45;
  text-decoration: none;
}

.slotty-legal-index a:hover,
.slotty-legal-index a:focus {
  color: #3ad8e8;
}

.slotty-legal-article {
  display: grid;
  gap: 15px;
}

.slotty-legal-article > section {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 20px;
  padding: 27px 30px;
  scroll-margin-top: 105px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #d3e6e9;
  border-radius: 17px;
  box-shadow: 0 15px 34px rgba(19, 66, 78, 0.07);
}

.slotty-legal-section-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  font-size: 19px;
  font-weight: 800;
  background: linear-gradient(135deg, #22d1e6, #119fe3);
  border-radius: 14px;
}

.slotty-legal-article h2 {
  margin: 1px 0 10px;
  color: #123d48;
  font-size: clamp(22px, 2.5vw, 29px);
  line-height: 1.25;
}

.slotty-legal-article p {
  margin: 0 0 12px;
  color: #55727a;
  font-size: 15px;
  line-height: 1.72;
}

.slotty-legal-article p:last-child {
  margin-bottom: 0;
}

.slotty-legal-article a {
  color: #078ca7;
  font-weight: 700;
}

@media (max-width: 960px) {
  .slotty-legal-layout {
    grid-template-columns: 1fr;
  }
  .slotty-legal-index {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .slotty-legal-index strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 650px) {
  .slotty-legal-hero {
    padding: 56px 0 52px;
  }
  .slotty-legal-shell {
    width: min(100% - 30px, 620px);
  }
  .slotty-legal-content {
    padding: 44px 0 58px;
  }
  .slotty-legal-index {
    grid-template-columns: 1fr;
  }
  .slotty-legal-article > section {
    grid-template-columns: 1fr;
    padding: 23px 20px;
  }
}
/* Games without reels or live dealers. */
.slotty-rng-games {
  position: relative;
  overflow: hidden;
  padding: 92px 0 100px;
  color: #f5fbff;
  background:
    radial-gradient(
      circle at 86% 12%,
      rgba(255, 118, 149, 0.1),
      transparent 27%
    ),
    radial-gradient(
      circle at 12% 88%,
      rgba(32, 213, 245, 0.11),
      transparent 30%
    ),
    #082635;
}
.slotty-rng-games::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 0 48%,
    rgba(255, 255, 255, 0.018) 48% 49%,
    transparent 49% 100%
  );
  background-size: 44px 44px;
}
.slotty-rng-games .container {
  position: relative;
  z-index: 1;
}
.slotty-rng-games__intro {
  max-width: 980px;
  margin-bottom: 29px;
}
.slotty-rng-games__intro > span,
.slotty-rng-detail > span {
  display: inline-block;
  margin-bottom: 11px;
  color: #20d5f5;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.slotty-rng-games__intro h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(35px, 4vw, 50px);
  line-height: 1.08;
}
.slotty-rng-games__intro p {
  margin: 0;
  color: #bed2dc;
  font-size: 17px;
  line-height: 1.76;
}
.slotty-rng-games__types {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 29px;
}
.slotty-rng-games__types article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  padding: 20px;
  border: 1px solid rgba(122, 213, 232, 0.15);
  border-radius: 14px;
  background: rgba(7, 37, 51, 0.84);
}
.slotty-rng-games__types i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  border-radius: 11px;
  background: linear-gradient(135deg, #20d5f5, #168eb9);
}
.slotty-rng-games__types h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 16px;
}
.slotty-rng-games__types p {
  margin: 0;
  color: #a9c1cc;
  font-size: 13px;
  line-height: 1.55;
}
.slotty-rng-games__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px 14px;
}
.slotty-rng-games__grid figure {
  min-width: 0;
  margin: 0;
}
.slotty-rng-games__cover {
  position: relative;
}
.slotty-rng-games__cover img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
  border: 1px solid rgba(122, 213, 232, 0.18);
  border-radius: 12px;
  background: #071f2b;
  box-shadow: 0 15px 34px rgba(0, 7, 13, 0.24);
}
.slotty-rng-games__cover span {
  position: absolute;
  top: 9px;
  left: 9px;
  padding: 5px 8px;
  color: #06232f;
  border-radius: 7px;
  background: rgba(32, 213, 245, 0.94);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.22);
}
.slotty-rng-games__grid figcaption {
  padding-top: 9px;
}
.slotty-game-name {
  width: 100%;
  padding: 4px 2px 6px;
  text-align: left;
  color: #eef9fd;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  cursor: pointer;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}
.slotty-game-name:hover,
.slotty-game-name:focus-visible,
.slotty-game-name.is-active {
  color: #ff7695;
  border-bottom-color: #ff7695;
  outline: none;
}
.slotty-game-name::after {
  content: " +";
  color: #20d5f5;
  font-weight: 400;
}
.slotty-game-name.is-active::after {
  content: " −";
}
.slotty-rng-detail {
  margin-top: 32px;
  padding: 30px 32px;
  border: 1px solid rgba(122, 213, 232, 0.16);
  border-left: 4px solid #ff7695;
  border-radius: 14px;
  background: rgba(6, 33, 46, 0.92);
}
.slotty-rng-detail h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 27px;
  line-height: 1.25;
}
.slotty-rng-detail p {
  max-width: 1160px;
  margin: 0 0 12px;
  color: #bdd1dc;
  font-size: 15px;
  line-height: 1.72;
}
.slotty-rng-detail p:last-child {
  margin-bottom: 0;
}
.slotty-rng-games__noscript {
  margin-top: 20px;
  color: #fff;
}
@media (max-width: 1199px) {
  .slotty-rng-games__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .slotty-rng-games__types {
    grid-template-columns: 1fr;
  }
  .slotty-rng-games__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .slotty-rng-games {
    padding: 68px 0 76px;
  }
  .slotty-rng-games__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 11px;
  }
  .slotty-game-name {
    font-size: 13px;
  }
  .slotty-rng-detail {
    padding: 24px 20px 25px;
  }
}
/* Compact, wider editorial layout for the two catalogue sections. */
.slotty-slots,
.slotty-rng-games {
  display: block;
  padding: 54px 0 58px;
}
.slotty-slots {
  background:
    radial-gradient(circle at 7% 4%, rgba(49, 224, 194, 0.24), transparent 31%),
    radial-gradient(
      circle at 92% 18%,
      rgba(36, 180, 218, 0.22),
      transparent 30%
    ),
    linear-gradient(132deg, #073a43 0%, #0a4b55 48%, #123d59 100%);
}
.slotty-rng-games {
  background:
    radial-gradient(
      circle at 9% 12%,
      rgba(45, 211, 238, 0.17),
      transparent 27%
    ),
    radial-gradient(
      circle at 88% 10%,
      rgba(255, 107, 150, 0.18),
      transparent 31%
    ),
    linear-gradient(132deg, #102c4d 0%, #28264f 52%, #153d54 100%);
}
.slotty-slots > .container,
.slotty-rng-games > .container {
  width: calc(100% - 64px);
  max-width: 1640px;
  padding-right: 0;
  padding-left: 0;
}
.slotty-slots__intro,
.slotty-rng-games__intro {
  display: grid;
  grid-template-columns: minmax(380px, 0.84fr) minmax(520px, 1.16fr);
  grid-template-rows: auto 1fr;
  gap: 8px 54px;
  max-width: none;
  margin-bottom: 21px;
  align-items: end;
}
.slotty-slots__intro > span,
.slotty-rng-games__intro > span {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 1px;
}
.slotty-slots__intro h2,
.slotty-rng-games__intro h2 {
  grid-column: 1;
  grid-row: 2;
  margin-bottom: 0;
  font-size: clamp(34px, 3.15vw, 46px);
}
.slotty-slots__intro p,
.slotty-rng-games__intro p {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  font-size: 15px;
  line-height: 1.65;
}
.slotty-slots__mechanics,
.slotty-rng-games__types {
  gap: 11px;
  margin-bottom: 22px;
}
.slotty-slots__mechanics p,
.slotty-rng-games__types article {
  min-height: 0;
  height: auto;
  align-self: start;
  padding: 13px 15px;
  border-radius: 11px;
  background: rgba(5, 35, 46, 0.58);
}
.slotty-slots__mechanics i {
  width: 32px;
  height: 32px;
}
.slotty-rng-games__types {
  align-items: start;
}
.slotty-rng-games__types article {
  grid-template-columns: 34px 1fr;
  gap: 11px;
}
.slotty-rng-games__types i {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}
.slotty-rng-games__types h3 {
  margin-bottom: 3px;
  font-size: 14px;
}
.slotty-rng-games__types p,
.slotty-slots__mechanics span {
  font-size: 11px;
  line-height: 1.45;
}
.slotty-rng-games__context {
  display: grid;
  grid-template-columns: minmax(260px, 0.66fr) minmax(360px, 1fr) minmax(
      360px,
      1fr
    );
  gap: 22px;
  margin: 0 0 22px;
  padding: 18px 20px;
  border: 1px solid rgba(115, 174, 255, 0.25);
  border-radius: 12px;
  background: rgba(12, 29, 58, 0.4);
}
.slotty-rng-games__context h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  line-height: 1.3;
}
.slotty-rng-games__context p {
  margin: 0;
  color: rgba(235, 243, 250, 0.78);
  font-size: 13px;
  line-height: 1.58;
}
.slotty-slots__grid,
.slotty-rng-games__grid {
  gap: 18px 12px;
}
.slotty-slot-detail,
.slotty-rng-detail {
  margin-top: 22px;
  padding: 22px 25px 23px;
  border-radius: 12px;
}
.slotty-slot-detail h3,
.slotty-rng-detail h3 {
  margin-bottom: 9px;
  font-size: 23px;
}
.slotty-slot-detail p,
.slotty-rng-detail p {
  max-width: none;
  font-size: 14px;
  line-height: 1.62;
}
@media (max-width: 1199px) {
  .slotty-slots > .container,
  .slotty-rng-games > .container {
    width: calc(100% - 44px);
  }
  .slotty-slots__intro,
  .slotty-rng-games__intro {
    grid-template-columns: minmax(320px, 0.85fr) minmax(420px, 1.15fr);
    gap: 8px 34px;
  }
}
/* Live casino: warmer studio palette, same six-card catalogue rhythm. */
.slotty-live-games {
  position: relative;
  overflow: hidden;
  padding: 62px 0 68px;
  color: #f7f2f0;
  background:
    radial-gradient(
      circle at 12% 8%,
      rgba(255, 193, 105, 0.18),
      transparent 29%
    ),
    radial-gradient(
      circle at 89% 18%,
      rgba(255, 94, 145, 0.18),
      transparent 30%
    ),
    linear-gradient(132deg, #153643 0%, #4b2344 50%, #173c48 100%);
}
.slotty-live-games::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image: linear-gradient(
    115deg,
    transparent 0 48%,
    rgba(255, 255, 255, 0.035) 48% 49%,
    transparent 49% 100%
  );
  background-size: 44px 44px;
}
.slotty-live-games > .container {
  position: relative;
  width: calc(100% - 96px);
  max-width: 1460px;
  padding-right: 0;
  padding-left: 0;
}
.slotty-live-games__intro {
  display: grid;
  grid-template-columns: minmax(380px, 0.84fr) minmax(520px, 1.16fr);
  grid-template-rows: auto 1fr;
  gap: 8px 54px;
  margin-bottom: 22px;
  align-items: end;
}
.slotty-live-games__intro > span {
  grid-column: 1;
  grid-row: 1;
  color: #ffbd75;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.slotty-live-games__intro h2 {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 3.15vw, 46px);
  line-height: 1.12;
}
.slotty-live-games__intro > div {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
}
.slotty-live-games__intro p {
  margin: 0 0 9px;
  color: rgba(244, 247, 249, 0.82);
  font-size: 15px;
  line-height: 1.62;
}
.slotty-live-games__intro p:last-child {
  margin-bottom: 0;
}
.slotty-live-games__guide {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
  margin-bottom: 22px;
}
.slotty-live-games__guide article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 11px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 190, 117, 0.2);
  border-radius: 11px;
  background: rgba(20, 32, 50, 0.42);
}
.slotty-live-games__guide i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  color: #351b32;
  background: linear-gradient(135deg, #ffd08e, #ff789f);
}
.slotty-live-games__guide h3 {
  margin: 0 0 3px;
  color: #fff;
  font-size: 14px;
}
.slotty-live-games__guide p {
  margin: 0;
  color: rgba(239, 244, 247, 0.72);
  font-size: 11px;
  line-height: 1.45;
}
.slotty-live-games__context {
  display: grid;
  grid-template-columns: minmax(250px, 0.62fr) minmax(360px, 1fr) minmax(
      360px,
      1fr
    );
  gap: 22px;
  margin: 0 0 22px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 190, 117, 0.22);
  border-radius: 12px;
  background: rgba(21, 33, 48, 0.4);
}
.slotty-live-games__context h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  line-height: 1.3;
}
.slotty-live-games__context p {
  margin: 0;
  color: rgba(241, 246, 248, 0.78);
  font-size: 13px;
  line-height: 1.58;
}
.slotty-catalogue-tabs--live button {
  border-color: rgba(255, 190, 117, 0.4);
  background: rgba(39, 28, 49, 0.58);
}
.slotty-catalogue-tabs--live button:hover,
.slotty-catalogue-tabs--live button:focus-visible {
  border-color: #ffbd75;
}
.slotty-catalogue-tabs--live button.is-active {
  border-color: #ffbd75;
  background: linear-gradient(135deg, #ffd08e, #ff789f);
  color: #321a31;
}
.slotty-live-games__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px 20px;
}
.slotty-live-games__grid figure {
  margin: 0;
  min-width: 0;
}
.slotty-live-games__grid img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 10px;
}
.slotty-live-games__grid figcaption {
  padding-top: 7px;
}
.slotty-live-name {
  width: 100%;
  padding: 3px 1px 5px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: #f9f3f1;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}
.slotty-live-name::after {
  content: " +";
  color: #ff9baf;
}
.slotty-live-name:hover,
.slotty-live-name:focus-visible,
.slotty-live-name.is-active {
  color: #ffcd8b;
  border-bottom-color: #ffbd75;
}
.slotty-live-name.is-active::after {
  content: " −";
}
.slotty-live-detail {
  margin-top: 22px;
  padding: 22px 25px 23px;
  border: 1px solid rgba(255, 190, 117, 0.27);
  border-left: 4px solid #ffbd75;
  border-radius: 12px;
  background: rgba(17, 31, 45, 0.58);
}
.slotty-live-detail > span {
  display: inline-block;
  margin-bottom: 13px;
  color: #ff9eb6;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.slotty-live-detail h3 {
  margin: 0 0 9px;
  color: #fff;
  font-size: 23px;
}
.slotty-live-detail p {
  margin: 0 0 11px;
  color: rgba(241, 246, 248, 0.8);
  font-size: 14px;
  line-height: 1.62;
}
.slotty-live-detail p:last-child {
  margin-bottom: 0;
}
.slotty-live-games__noscript {
  margin-top: 18px;
  color: #fff;
}
@media (max-width: 1199px) {
  .slotty-live-games > .container {
    width: calc(100% - 56px);
  }
  .slotty-live-games__intro {
    grid-template-columns: minmax(320px, 0.85fr) minmax(420px, 1.15fr);
    gap: 8px 34px;
  }
  .slotty-live-games__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px 16px;
  }
}
@media (max-width: 991px) {
  .slotty-live-games {
    padding: 48px 0 52px;
  }
  .slotty-live-games__intro {
    display: block;
  }
  .slotty-live-games__intro > span {
    display: inline-block;
    margin-bottom: 9px;
  }
  .slotty-live-games__intro h2 {
    margin-bottom: 14px;
  }
  .slotty-live-games__guide {
    grid-template-columns: 1fr;
  }
  .slotty-live-games__context {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .slotty-live-games__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .slotty-live-games {
    padding: 40px 0 44px;
  }
  .slotty-live-games > .container {
    width: calc(100% - 28px);
  }
  .slotty-live-games__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 11px;
  }
  .slotty-live-detail {
    padding: 19px 17px 20px;
  }
}
/* Bonuses: clear qualification and payment paths without promotional clutter. */
.slotty-bonuses {
  position: relative;
  overflow: hidden;
  padding: 64px 0 70px;
  color: #18323d;
  background:
    radial-gradient(circle at 8% 3%, rgba(62, 207, 213, 0.2), transparent 29%),
    radial-gradient(
      circle at 92% 8%,
      rgba(255, 157, 111, 0.22),
      transparent 30%
    ),
    linear-gradient(135deg, #f5fbf8 0%, #eef8fa 46%, #fff4e9 100%);
}
.slotty-bonuses::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  background-image: radial-gradient(
    circle,
    rgba(21, 107, 124, 0.16) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
}
.slotty-bonuses > .container {
  position: relative;
  width: calc(100% - 96px);
  max-width: 1460px;
  padding-right: 0;
  padding-left: 0;
}
.slotty-bonuses__intro {
  display: grid;
  grid-template-columns: minmax(390px, 0.86fr) minmax(520px, 1.14fr);
  grid-template-rows: auto 1fr;
  gap: 8px 54px;
  margin-bottom: 24px;
  align-items: end;
}
.slotty-bonuses__intro > span {
  grid-column: 1;
  grid-row: 1;
  color: #ee6c70;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.slotty-bonuses__intro h2 {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  color: #123540;
  font-size: clamp(34px, 3.15vw, 46px);
  line-height: 1.1;
}
.slotty-bonuses__intro > div {
  grid-column: 2;
  grid-row: 1 / span 2;
}
.slotty-bonuses__intro p {
  margin: 0 0 9px;
  color: #4f6972;
  font-size: 17px;
  line-height: 1.66;
}
.slotty-bonuses__intro p:last-child {
  margin-bottom: 0;
}
.slotty-bonuses__overview {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 11px;
  margin-bottom: 20px;
}
.slotty-bonuses__overview article {
  min-width: 0;
  padding: 16px 14px;
  border: 1px solid rgba(20, 100, 116, 0.16);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 9px 20px rgba(24, 79, 91, 0.07);
}
.slotty-bonuses__overview i {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, #22bac5, #ef6e78);
}
.slotty-bonuses__overview strong {
  display: block;
  margin-bottom: 5px;
  color: #153e49;
  font-size: 19px;
  line-height: 1.15;
}
.slotty-bonuses__overview span {
  display: block;
  color: #60757c;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.38;
}
.slotty-bonuses__welcome {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}
.slotty-bonus-feature {
  padding: 25px;
  border: 1px solid rgba(19, 92, 108, 0.18);
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(26, 76, 88, 0.1);
}
.slotty-bonus-feature--spins {
  background: linear-gradient(145deg, #dff9f4 0%, #ffffff 72%);
}
.slotty-bonus-feature--cashback {
  background: linear-gradient(145deg, #fff0e0 0%, #ffffff 72%);
}
.slotty-bonus-feature__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}
.slotty-bonus-feature__top span,
.slotty-bonus-tag {
  color: #e55f69;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.slotty-bonus-feature__top i {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #24bac6, #ef6c78);
}
.slotty-bonus-feature__value {
  margin: 0 0 9px;
  color: #163b46;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.15;
}
.slotty-bonus-feature__lead {
  margin: 0 0 17px;
  color: #536d75;
  font-size: 16px;
  line-height: 1.62;
}
.slotty-bonus-feature dl {
  margin: 0;
}
.slotty-bonus-feature dl > div {
  display: grid;
  grid-template-columns: minmax(125px, 0.38fr) minmax(0, 1fr);
  gap: 14px;
  padding: 10px 0;
  border-top: 1px solid rgba(20, 86, 101, 0.13);
}
.slotty-bonus-feature dt {
  color: #244c57;
  font-size: 14px;
  font-weight: 800;
}
.slotty-bonus-feature dd {
  margin: 0;
  color: #5d7279;
  font-size: 14px;
  line-height: 1.52;
}
.slotty-bonuses__journey {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
  margin-bottom: 18px;
}
.slotty-bonuses__journey article {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(24, 105, 121, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
}
.slotty-bonuses__journey i {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: #25b9c4;
}
.slotty-bonuses__journey h3 {
  margin: 0 0 3px;
  color: #1d4651;
  font-size: 17px;
}
.slotty-bonuses__journey p {
  margin: 0;
  color: #61767d;
  font-size: 14px;
  line-height: 1.52;
}
.slotty-bonuses__regular {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.slotty-bonuses__regular article {
  padding: 21px 22px;
  border: 1px solid rgba(24, 105, 121, 0.17);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(24, 79, 91, 0.06);
}
.slotty-bonuses__regular article:nth-child(1) {
  border-top: 5px solid #28b9c3;
}
.slotty-bonuses__regular article:nth-child(2) {
  border-top: 5px solid #8e78dc;
}
.slotty-bonuses__regular article:nth-child(3) {
  border-top: 5px solid #efaa58;
}
.slotty-bonuses__regular article:nth-child(4) {
  border-top: 5px solid #ef7079;
}
.slotty-bonus-amount {
  margin: 10px 0 3px !important;
  color: #153f4a !important;
  font-size: 27px !important;
  font-weight: 800;
  line-height: 1.18 !important;
}
.slotty-bonuses__regular h3 {
  margin: 8px 0 8px;
  color: #173f4a;
  font-size: 24px;
  line-height: 1.3;
}
.slotty-bonuses__regular p {
  margin: 0;
  color: #5b727a;
  font-size: 16px;
  line-height: 1.64;
}
.slotty-bonuses__regular .slotty-bonus-note {
  margin-top: 12px;
  padding-top: 11px;
  border-top: 1px solid rgba(24, 105, 121, 0.13);
  color: #278693;
  font-size: 14px;
  line-height: 1.52;
  font-weight: 700;
}
.slotty-bonuses__terms {
  margin: 16px 0 0;
  padding: 13px 16px;
  border-left: 4px solid #ef7079;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  color: #566e76;
  font-size: 14px;
  line-height: 1.6;
}
@media (max-width: 1199px) {
  .slotty-bonuses > .container {
    width: calc(100% - 56px);
  }
  .slotty-bonuses__intro {
    grid-template-columns: minmax(330px, 0.86fr) minmax(420px, 1.14fr);
    gap: 8px 34px;
  }
  .slotty-bonuses__overview {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .slotty-bonuses {
    padding: 48px 0 52px;
  }
  .slotty-bonuses__intro {
    display: block;
  }
  .slotty-bonuses__intro > span {
    display: inline-block;
    margin-bottom: 9px;
  }
  .slotty-bonuses__intro h2 {
    margin-bottom: 14px;
  }
  .slotty-bonuses__welcome,
  .slotty-bonuses__regular {
    grid-template-columns: 1fr;
  }
  .slotty-bonuses__overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .slotty-bonuses__journey {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575px) {
  .slotty-bonuses {
    padding: 40px 0 44px;
  }
  .slotty-bonuses > .container {
    width: calc(100% - 28px);
  }
  .slotty-bonus-feature {
    padding: 20px 17px;
  }
  .slotty-bonus-feature dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
@media (max-width: 991px) {
  .slotty-slots,
  .slotty-rng-games {
    padding: 48px 0 52px;
  }
  .slotty-slots__intro,
  .slotty-rng-games__intro {
    display: block;
  }
  .slotty-slots__intro > span,
  .slotty-rng-games__intro > span {
    margin-bottom: 9px;
  }
  .slotty-slots__intro h2,
  .slotty-rng-games__intro h2 {
    margin-bottom: 14px;
  }
  .slotty-rng-games__context {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
@media (max-width: 575px) {
  .slotty-slots,
  .slotty-rng-games {
    padding: 40px 0 44px;
  }
  .slotty-slots > .container,
  .slotty-rng-games > .container {
    width: calc(100% - 28px);
  }
  .slotty-slot-detail,
  .slotty-rng-detail {
    padding: 19px 17px 20px;
  }
}
/* Slotty catalogue proportions: compact covers with visible page margins. */
[hidden] {
  display: none !important;
}
.slotty-catalogue-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 20px;
}
.slotty-catalogue-tabs button {
  min-width: 170px;
  padding: 10px 18px;
  border: 1px solid rgba(67, 222, 228, 0.34);
  border-radius: 9px;
  background: rgba(4, 38, 49, 0.58);
  color: #d7edf0;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}
.slotty-catalogue-tabs button:hover,
.slotty-catalogue-tabs button:focus-visible {
  border-color: #2dd3ee;
  color: #ffffff;
}
.slotty-catalogue-tabs button.is-active {
  border-color: #2dd3ee;
  background: #2dd3ee;
  color: #04222d;
}
.slotty-catalogue-tabs--games button {
  border-color: rgba(255, 107, 150, 0.42);
  background: rgba(22, 28, 64, 0.58);
}
.slotty-catalogue-tabs--games button:hover,
.slotty-catalogue-tabs--games button:focus-visible {
  border-color: #ff6b96;
}
.slotty-catalogue-tabs--games button.is-active {
  border-color: #ff6b96;
  background: #ff6b96;
  color: #24142c;
}
.slotty-slots > .container,
.slotty-rng-games > .container {
  width: calc(100% - 96px);
  max-width: 1460px;
}
.slotty-slots__grid,
.slotty-rng-games__grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px 20px;
}
.slotty-slots__grid img,
.slotty-rng-games__cover img {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  border-radius: 10px;
}
.slotty-slots__grid figcaption,
.slotty-rng-games__grid figcaption {
  padding-top: 7px;
}
.slotty-slot-name,
.slotty-game-name {
  padding: 3px 1px 5px;
  font-size: 13px;
}
@media (max-width: 1199px) {
  .slotty-slots > .container,
  .slotty-rng-games > .container {
    width: calc(100% - 56px);
  }
  .slotty-slots__grid,
  .slotty-rng-games__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px 16px;
  }
}
@media (max-width: 991px) {
  .slotty-slots__grid,
  .slotty-rng-games__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .slotty-slots > .container,
  .slotty-rng-games > .container {
    width: calc(100% - 28px);
  }
  .slotty-slots__grid,
  .slotty-rng-games__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 11px;
  }
}
