:root {
  --S: 4px;
  --M: 8px;
  --Primary-400: #000080;
  --Primary-300: #0000bd;
  --Primary-200: #4f49ff;
  --Primary-100: #8b8bff;
  --Primary-50: #d1d1ff;
  --Neutral-400: #08082b;
  --Neutral-300: #242447;
  --neutral-30060: hsl(from var(--Neutral-300) h s l / 0.6);
  --neutral-30080: hsl(from var(--Neutral-300) h s l / 0.8);
  --Neutral-200: #373763;
  --Neutral-100: #8080b1;
  --Neutral-50: #dfdff0;
  --Text-00: #ffffff;
  --Text-400: #999999;
  --Text-300: #bfbfbf;
  --Text-200: #dbdbdb;
  --Text-100: #f0f0f0;
  --Accent-600: #ff761a;
  --Accent-500: #16cbdf;
  --Accent-400: #ff81ff;
  --Accent-300: #f7f714;
  --Accent-200: #7100ea;
  --Accent-100: #ff4d88;
  --Green-400: #1d7a05;
  --Green-300: #43c522;
  --Green-200: #9bef86;
  --Green-100: #efffeb;
  --Yellow-400: #e48304;
  --Yellow-300: #ffbb00;
  --Yellow-200: #ffe6a0;
  --Yellow-100: #fffaeb;
  --Red-400: #b80707;
  --Red-300: #ef4444;
  --Red-200: #fc9797;
  --Red-100: #fce8e8;
}
@font-face {
  font-family: "Anuphan";
  src: url("/assets/fonts/anuphan/Anuphan-Regular-fdb80d058fa570a55025ac6b0c5d1f50.woff2")
    format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Anuphan";
  src: url("/assets/fonts/anuphan/Anuphan-Bold-11b4d772a1d0dfab6c1e13686503c516.woff2")
    format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
  outline: none;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  outline: none;
  text-decoration: none;
  border: none;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  overflow-wrap: break-word;
  color: var(--Text-100);
}
h1 {
  font-size: 48px;
  line-height: 60px;
  letter-spacing: 0.2px;
}
h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  text-transform: capitalize;
}
@media screen and (min-width: 1200px) {
  h2 {
    font-size: 40px;
    line-height: 48px;
  }
}
h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}
@media screen and (min-width: 1200px) {
  h3 {
    font-size: 32px;
    line-height: 40px;
  }
}
h4 {
  font-size: 24px;
  line-height: 32px;
}
p {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  overflow-wrap: break-word;
}
s {
  text-decoration: line-through;
}
a {
  color: var(--Primary-100);
}
[id] {
  scroll-margin-top: 72px;
}
body {
  margin-top: 128px;
  font-size: 16px;
  line-height: 24px;
  background-color: var(--Neutral-400);
  color: var(--Text-200);
  font-family:
    "Anuphan",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  /* background-image: radial-gradient(
    ellipse 599px 524px at 80% 1197px,
    hsl(from var(--Primary-400) h s l / 0.9) 0%,
    hsl(from var(--Neutral-400) h s l / 0.9) 100%
  ); */
  position: relative;
  isolation: isolate;
}

@media screen and (min-width: 768px) {
  body {
    margin-top: 72px;
  }
}
/* body::before,
body::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  pointer-events: none;
  touch-action: none;
  visibility: visible;
}
body::before {
  width: 1060px;
  height: 929px;
  opacity: 0.9;
  filter: blur(76px);
  background: radial-gradient(
    50% 50% at 50% 50%,
    var(--Primary-400) 0%,
    var(--Neutral-400) 100%
  );
  top: 1820px;
  left: -20%;
}
body::after {
  width: 599px;
  height: 524px;
  top: 3175px;
  left: 0;
  translate: -40%;
  opacity: 0.9;
  background: radial-gradient(
    50% 50% at 50% 50%,
    var(--Primary-400, #000080) 0%,
    var(--Neutral-400, #08082b) 100%
  );
  filter: blur(76px);
} */
.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    padding: 0 0;
    max-width: 1216px;
  }
}
.no-scroll {
  overflow: hidden;
}
.paf0d524-btn {
  font-family: inherit;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  padding: 7px 11px;
  color: var(--Text-00);
  border-radius: var(--S);
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}
.paf0d524-btn--primary {
  border: 1px solid var(--Primary-200);
  background: var(--Primary-200);
}
.paf0d524-btn--primary:hover {
  background: var(--Primary-400);
}
.paf0d524-btn--outline {
  background: var(--neutral-30060);
  color: var(--Text-100);
  border: 1px solid var(--Primary-200);
  backdrop-filter: blur(8px);
}
.paf0d524-btn--outline:hover {
  background: var(--Primary-200);
}
.paf0d524-btn--fz-12 {
  font-size: 12px;
}
.paf0d524-btn--w-full {
  width: 100%;
}
.paf0d524-btn--p-xs {
  padding: 6px 16px;
}
.paf0d524-btn--p-sm {
  padding: 10px 16px;
}
.paf0d524-btn--shadow {
  box-shadow:
    0 1px 33px 0 rgba(var(--Primary-200-rgb), 0.2),
    0 1px 22px 0 rgba(var(--Primary-200-rgb), 0.3);
}
.paf0d524-btn--hidden {
  display: none;
}

main {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  gap: 48px;
  position: relative;
}
@media (min-width: 768px) {
  main {
    gap: 56px;
  }
}
/* main::before,
main::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  pointer-events: none;
  touch-action: none;
}
main::before {
  width: 1060px;
  height: 929px;
  border-radius: 1060px;
  opacity: 0.9;
  background: radial-gradient(
    50% 50% at 50% 50%,
    var(--Primary-400) 0%,
    var(--Neutral-400) 100%
  );
  filter: blur(76px);
  top: 5765px;
  left: 50%;
}
@media (min-width: 1200px) {
  main::before {
    border-radius: 1060px;
    opacity: 0.5;
    top: 2711px;
    left: 60%;
    background: radial-gradient(
      50% 50% at 50% 50%,
      var(--Accent-300) 0%,
      var(--Neutral-400) 100%
    );
    filter: blur(76px);
  }
}
main::after {
  width: 1060px;
  height: 929px;
  border-radius: 1060px;
  opacity: 0.9;
  top: 5205px;
  left: 50%;
  background: radial-gradient(
    50% 50% at 50% 50%,
    var(--Primary-200) 0%,
    var(--Neutral-400) 100%
  );
  filter: blur(76px);
} */
.paf0d524-bonus-popup:not([hidden]) {
  position: fixed;
  background: var(--neutral-30060);
  backdrop-filter: blur(8px);
  inset: 0;
  z-index: 1100;
  padding: 16px;
  isolation: isolate;
  display: flex;
  justify-content: center;
  align-items: center;
}
.paf0d524-bonus-popup__close {
  cursor: pointer;
  display: block;
  border: none;
  width: 32px;
  height: 32px;
  background-color: var(--Neutral-50);
  mask: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 1L1 21M1 1L21 21' stroke='%23DFDFF0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A")
    no-repeat center;
  mask-size: 20px 20px;
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
}
.paf0d524-bonus-popup__content {
  border-radius: var(--M);
  background: var(--Neutral-400);
  box-shadow: 0 12px 24px 0 rgba(191, 191, 191, 0.2);
  padding: 90px 24px 40px;
  position: relative;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.paf0d524-bonus-popup__content::after {
  content: "";
  display: block;
  width: 747px;
  height: 507px;
  position: absolute;
  bottom: 50px;
  left: 50%;
  translate: -50% 50%;
  background: var(--Neutral-400);
  z-index: 0;
  pointer-events: none;
  touch-action: none;
  border-radius: 50%;
  opacity: 0.9;
  background: radial-gradient(
    50% 50% at 50% 50%,
    var(--Primary-200) 0%,
    var(--Neutral-200) 100%
  );
  filter: blur(76px);
}
.paf0d524-bonus-popup__inner {
  position: relative;
  z-index: 1;
}
.paf0d524-bonus-popup__label {
  color: var(--Text-100);
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  text-transform: capitalize;
  margin-bottom: 4px;
}
.paf0d524-bonus-popup__title {
  color: var(--Text-100);
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  text-transform: capitalize;
  margin: 4px 0;
  overflow-wrap: break-word;
}
.paf0d524-bonus-popup__title--long {
  font-size: 40px;
  line-height: 48px;
}
.paf0d524-bonus-popup__text {
  color: var(--Text-200);
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.paf0d524-bonus-popup__cta {
  border: 1px solid var(--Primary-200);
  border-radius: var(--S);
  background: var(--Primary-200);
  color: var(--Text-00);
  text-align: center;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  padding: 14px;
  align-content: center;
  display: block;
  width: 100%;
  cursor: pointer;
  margin-top: 24px;
}
.paf0d524-bonus-popup__cta svg {
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  pointer-events: none;
  touch-action: none;
}
.paf0d524-bonus-popup img {
  display: block;
  position: absolute;
  pointer-events: none;
  touch-action: none;
  user-select: none;
  z-index: -1;
  top: 0;
  left: 50%;
  translate: -50% 0;
}
@media screen and (min-width: 768px) {
  .paf0d524-bonus-popup__close {
    top: 16px;
    right: 16px;
  }
  .paf0d524-bonus-popup__content {
    max-width: 600px;
    padding: 120px 64px 64px;
  }
  .paf0d524-bonus-popup__content::after {
    width: 770px;
    height: 620px;
    bottom: 65px;
  }
  .paf0d524-bonus-popup__label {
    font-size: 24px;
    line-height: 32px;
  }
  .paf0d524-bonus-popup__title {
    font-size: 72px;
    line-height: 88px;
  }
  .paf0d524-bonus-popup__title--long {
    font-size: 50px;
    line-height: 56px;
  }
  .paf0d524-bonus-popup img {
    width: 358px;
    height: 290px;
  }
}
.paf0d524-chatbot-signin__card,
.paf0d524-chatbot-welcome__card {
  border-radius: var(--M);
  border: 1px solid var(--Neutral-200);
  background: var(--Neutral-300);
  box-shadow: 0 0 12px 0 rgba(191, 191, 191, 0.14);
  padding: 16px 14px;
}
.paf0d524-chatbot-message.paf0d524-chatbot-message--bot::before,
.paf0d524-chatbot-welcome__card::before,
.paf0d524-chatbot-window__header-user::before {
  display: block;
  aspect-ratio: 1/1;
  background: no-repeat center/contain rgba(0, 0, 0, 0)
    url("data:image/svg+xml,%3Csvg width='31' height='31' viewBox='0 0 31 31' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='31' height='31' rx='15.5' fill='%23FFF4D0'/%3E%3Cpath d='M15.5429 14.5684C15.5602 14.5684 15.5776 14.5695 15.5949 14.5697C17.7925 14.5431 19.5717 12.8862 19.5717 10.8511C19.5717 8.79915 17.764 7.13 15.5417 7.13C13.3194 7.13 11.5117 8.79915 11.5117 10.8511C11.5117 12.8865 13.2915 14.5437 15.4894 14.57C15.5073 14.57 15.525 14.5686 15.5432 14.5686L15.5429 14.5684Z' fill='%23FFC421'/%3E%3Cpath d='M15.5972 15.1903C15.5801 15.1903 15.5632 15.193 15.5461 15.193C15.5289 15.193 15.5126 15.1906 15.4955 15.1903C11.3348 15.22 7.94056 18.7962 7.79297 23.25H23.293C23.1454 18.7956 19.7542 15.2191 15.5972 15.1903Z' fill='%23FFC421'/%3E%3Ccircle cx='5.5' cy='5.5' r='3' fill='%23179163' stroke='%23FFF4D0'/%3E%3C/svg%3E%0A");
}
.paf0d524-chatbot-messages__form [type="submit"] *,
.paf0d524-chatbot-window__header button * {
  pointer-events: none;
  touch-action: none;
}
@media screen and (max-width: 767px) {
  body:has(.paf0d524-chatbot-window[aria-hidden="false"]) .paf0d524-header {
    display: none;
  }
}
.paf0d524-chatbot {
  position: fixed;
  right: 20px;
  bottom: 8px;
  z-index: 992;
  color: var(--Neutral-50);
}
@media (min-width: 768px) {
  .paf0d524-chatbot {
    bottom: 22px;
  }
}
body:has(header nav.open) .paf0d524-chatbot {
  display: none;
}
@media (max-width: 767px) {
  body:has(.paf0d524-floating-bar-wrapper) .paf0d524-chatbot {
    bottom: calc(var(--floating-bar-height) + 8px);
  }
}
@media (max-width: 767px) {
  body:has(.paf0d524-floating-bar-wrapper.static) .paf0d524-chatbot {
    bottom: 8px;
  }
}
.paf0d524-chatbot input {
  font-family: inherit;
}
.paf0d524-chatbot__trigger {
  width: 80px;
  height: 80px;
  cursor: pointer;
  border: 1px solid var(--Primary-100);
  background: no-repeat center/40px var(--Primary-200)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40' fill='none'%3E%3Cpath d='M31.5841 3.33364H8.41644C5.58276 3.33364 3.3335 5.69796 3.3335 8.57769V23.279C3.3335 26.1588 5.62517 28.5231 8.41644 28.5231L10.8335 28.5247L10.1254 34.6285C9.8748 36.2187 11.5838 37.2515 12.8338 36.3044L20.5422 28.4811H31.5839C34.4176 28.4811 36.6668 26.1167 36.6668 23.237V8.57739C36.6668 5.65557 34.3753 3.33364 31.5841 3.33364ZM11.1248 18.5087C9.74944 18.5087 8.62477 17.3484 8.62477 15.9294C8.62477 14.5105 9.74944 13.3502 11.1248 13.3502C12.5001 13.3502 13.6671 14.5105 13.6671 15.9294C13.6671 17.3484 12.5001 18.5087 11.1248 18.5087ZM20.0002 18.5087C18.6249 18.5087 17.5002 17.3484 17.5002 15.9294C17.5002 14.5105 18.6249 13.3502 20.0002 13.3502C21.3756 13.3502 22.5426 14.5105 22.5426 15.9294C22.5003 17.3484 21.3756 18.5087 20.0002 18.5087ZM28.8757 18.5087C27.5004 18.5087 26.3757 17.3484 26.3757 15.9294C26.3757 14.5105 27.5004 13.3502 28.8757 13.3502C30.251 13.3502 31.4181 14.5105 31.4181 15.9294C31.3757 17.3484 30.251 18.5087 28.8757 18.5087Z' fill='%23F7F7F7'/%3E%3C/svg%3E");
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  body:has(.paf0d524-chatbot-window[aria-hidden="false"])
    .paf0d524-chatbot__trigger {
    display: none;
  }
}
.paf0d524-chatbot-window {
  position: fixed;
  inset: 0;
  z-index: 101;
  background: var(--Neutral-400);
  overscroll-behavior: contain;
  overflow: auto;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  .paf0d524-chatbot-window {
    inset: auto 24px 24px auto;
    width: 448px;
    height: 600px;
    border-radius: var(--M);
    border: 1px solid var(--Neutral-200);
    box-shadow: 0 12px 24px 0 rgba(191, 191, 191, 0.2);
  }
}
.paf0d524-chatbot-window[aria-hidden="true"] {
  display: none;
}
.paf0d524-chatbot-window__header {
  border-bottom: 1px solid var(--Neutral-200);
  background: var(--Neutral-300);
  color: var(--Text-300);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0;
}
@media (min-width: 768px) {
  .paf0d524-chatbot-window__header {
    padding: 14px 16px;
  }
}
.paf0d524-chatbot-window__header button {
  border: none;
  background: none;
  cursor: pointer;
  align-content: center;
  color: var(--Neutral-50);
}
.paf0d524-chatbot-window__header button:first-child {
  align-content: end;
}
.paf0d524-chatbot-window__header button:first-of-type {
  display: none;
}
.paf0d524-chatbot[data-active-screen="2"]
  .paf0d524-chatbot-window__header
  button:first-of-type,
.paf0d524-chatbot[data-active-screen="3"]
  .paf0d524-chatbot-window__header
  button:first-of-type {
  display: initial;
  width: 44px;
  height: 16px;
}
.paf0d524-chatbot-window__header button:first-of-type svg {
  width: 30px;
  height: 30px;
}
.paf0d524-chatbot-window__header button:last-child svg {
  width: 38px;
  height: 38px;
}
.paf0d524-chatbot-window__header-user {
  flex: 1 1;
  align-content: center;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  opacity: 0;
  visibility: hidden;
}
.paf0d524-chatbot-window__header-user::before {
  content: "";
  width: 48px;
}
.paf0d524-chatbot[data-active-screen="2"] .paf0d524-chatbot-window__header-user,
.paf0d524-chatbot[data-active-screen="3"]
  .paf0d524-chatbot-window__header-user {
  opacity: 1;
  visibility: visible;
}
.paf0d524-chatbot-window__screens {
  flex: 1 1;
}
.paf0d524-chatbot-window__screen {
  display: none;
  padding: 64px 16px 16px;
}
@media screen and (min-width: 768px) {
  .paf0d524-chatbot-window__screen {
    padding: 24px;
  }
}
.paf0d524-chatbot[data-active-screen="1"] .paf0d524-chatbot-welcome {
  display: block;
}
.paf0d524-chatbot-welcome__title {
  color: var(--Text-100);
  font-weight: 700;
  margin-bottom: 24px;
  font-size: 40px;
  line-height: 48px;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .paf0d524-chatbot-welcome__title {
    margin-top: 41px;
    font-size: 48px;
    line-height: 56px;
  }
}
.paf0d524-chatbot-welcome__card {
  display: grid;
  grid-template-columns: 50px 1fr;
  grid-template-areas: "avatar name" "button button";
  row-gap: 16px;
  column-gap: 12px;
  padding: 10px 14px;
}
.paf0d524-chatbot-welcome__card::before {
  content: "";
  grid-area: avatar;
  width: 50px;
  height: 50px;
  align-self: center;
}
.paf0d524-chatbot-welcome__card-head span {
  color: var(--Text-300);
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 4px;
}
.paf0d524-chatbot-welcome__card-head p {
  color: var(--Text-100);
}
.paf0d524-chatbot-welcome__card .glow-btn {
  grid-area: button;
}
.paf0d524-chatbot-welcome__card .glow-btn::after {
  content: "";
  display: inline-block;
  vertical-align: sub;
  margin-left: 8px;
  width: 20px;
  height: 20px;
  background: no-repeat center/contain rgba(0, 0, 0, 0)
    url("data:image/svg+xml,%3Csvg width='21' height='20' viewBox='0 0 21 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.66602 10H16.3327' stroke='%23F0F0F0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11.334 15L16.334 10' stroke='%23F0F0F0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11.334 5L16.334 10' stroke='%23F0F0F0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.paf0d524-chatbot[data-active-screen="2"] .paf0d524-chatbot-signin {
  display: block;
}
.paf0d524-chatbot-signin__title {
  color: var(--Text-100);
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: capitalize;
}
@media (min-width: 768px) {
  .paf0d524-chatbot-signin__title {
    margin-top: 40px;
  }
}
.paf0d524-chatbot-signin__card label,
.paf0d524-chatbot-signin__card input {
  display: block;
  width: 100%;
}
.paf0d524-chatbot-signin__card label {
  margin-bottom: 16px;
  color: var(--Text-100);
  font-size: 14px;
  line-height: 20px;
}
.paf0d524-chatbot-signin__card label.is-invalid input {
  border: 1px solid var(--Accent-100);
  padding: 16px;
}
.paf0d524-chatbot-signin__card label.is-invalid::after {
  content: attr(data-error);
  display: block;
  color: var(--Accent-100);
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-size: 12px;
  line-height: 16px;
  margin-top: 4px;
}
.paf0d524-chatbot-signin__card input {
  color: var(--Text-100);
  border-radius: var(--S);
  background: var(--Neutral-400);
  font-size: 16px;
  line-height: 24px;
  padding: 17px 16px;
  margin-top: 4px;
}
.paf0d524-chatbot-signin__card input::placeholder {
  color: var(--Text-400);
}
.paf0d524-chatbot-messages {
  padding: 0;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}
.paf0d524-chatbot[data-active-screen="3"] .paf0d524-chatbot-messages {
  display: flex;
}
.paf0d524-chatbot-messages ol {
  list-style: none;
  padding: 16px;
  overflow: auto;
  overscroll-behavior: contain;
  height: calc(100vh - 170px);
}
@media screen and (min-width: 768px) {
  .paf0d524-chatbot-messages ol {
    height: 420px;
    padding: 24px;
  }
}
.paf0d524-chatbot-messages ol a {
  cursor: pointer;
  color: var(--Primary-100);
}
.paf0d524-chatbot-messages__form {
  flex: 0 0;
  position: relative;
  padding: 0 16px 16px;
}
@media screen and (min-width: 768px) {
  .paf0d524-chatbot-messages__form {
    padding: 0 24px 24px;
  }
}
.paf0d524-chatbot-messages__form input {
  display: block;
  width: 100%;
  padding: 16px 44px 16px 16px;
  border-radius: var(--M);
  background: var(--Neutral-300);
  color: var(--Text-100);
  font-size: 16px;
  line-height: 24px;
}
.paf0d524-chatbot-messages__form input::placeholder {
  color: var(--Text-400);
}
.paf0d524-chatbot-messages__form [type="submit"] {
  border: none;
  background: none;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 32px;
  width: 22px;
  height: 22px;
}
.paf0d524-chatbot-messages__form [type="submit"]:disabled {
  opacity: 0.5;
}
.paf0d524-chatbot-messages__form [type="submit"] svg {
  color: var(--Neutral-50);
}
@media screen and (min-width: 768px) {
  .paf0d524-chatbot-messages__form [type="submit"] {
    right: 40px;
  }
}
.paf0d524-chatbot-message {
  margin-bottom: 16px;
  color: var(--Primary-100);
}
.paf0d524-chatbot-message.paf0d524-chatbot-message--bot {
  display: grid;
  grid-template-columns: 31px 1fr;
  gap: 12px;
  color: var(--Text-100);
  align-items: flex-end;
}
.paf0d524-chatbot-message.paf0d524-chatbot-message--bot::before {
  content: "";
  width: 31px;
}
.paf0d524-chatbot-message.paf0d524-chatbot-message--bot p {
  border-radius: var(--M);
  border: 1px solid var(--Neutral-300);
  background: var(--neutral-30060, rgba(43, 43, 43, 0.6));
}
.paf0d524-chatbot-message.paf0d524-chatbot-message--user p {
  box-shadow: 0 0 12px 0 rgba(191, 191, 191, 0.1);
}
.paf0d524-chatbot-message p {
  padding: 15px 14px;
  border-radius: var(--M);
  border: 1px solid var(--Neutral-200);
  background: var(--neutral-30060, rgba(43, 43, 43, 0.6));
}
.paf0d524-chatbot .glow-btn {
  border-radius: var(--S);
  background: var(--Primary-200);
  text-align: center;
  padding: 9px;
  color: var(--Text-00);
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  width: 100%;
  cursor: pointer;
}
@media (max-width: 767px) {
  body:has(header.mobile-menu) {
    overflow: hidden;
  }
}
.paf0d524-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100vw;
}
@media (min-width: 768px) {
  .paf0d524-header {
    padding: 16px 0;
    background: var(--Neutral-400);
  }
}
.paf0d524-header .container {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .paf0d524-header .container {
    padding: 16px;
    background: var(--Neutral-400);
    min-height: 72px;
  }
}
.paf0d524-header .paf0d524-btn {
  padding: 9px 15px;
}
.paf0d524-header__logo {
  display: block;
  width: 100%;
  max-width: 128px;
  height: 32px;
  object-fit: contain;
  object-position: center left;
  margin-right: 10px;
}
@media (min-width: 1200px) {
  .paf0d524-header__logo {
    max-width: 160px;
    height: 40px;
  }
}
.paf0d524-header__logo picture,
.paf0d524-header__logo img {
  display: block;
  width: 100%;
  height: 100%;
}
.paf0d524-header__logo img {
  object-fit: contain;
  object-position: left center;
}
@media (max-width: 1199px) {
  .paf0d524-header__nav {
    position: fixed;
    right: 0;
    width: 100%;
    padding: 8px 16px;
    transition: transform 0.3s ease;
    transform: translateX(100%);
    background: var(--Neutral-400);
    box-shadow: 0 12px 24px 0 rgba(109, 109, 109, 0.15);
  }
  .paf0d524-header.mobile-menu .paf0d524-header__nav {
    transform: translateX(0);
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .paf0d524-header__nav {
    top: 72px;
    max-width: 400px;
    height: calc(100% - 72px);
    overflow-y: auto;
  }
}
@media (max-width: 767px) {
  .paf0d524-header__nav {
    padding: 8px 16px;
    top: 128px;
    height: calc(100% - 128px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
}
.paf0d524-header__content-right,
.paf0d524-header__account {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 12px;
}

.paf0d524-header__account-mob {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(
    0deg,
    rgba(8, 8, 43, 0) 0%,
    var(--Neutral-400) 70%
  );
  padding: 0 16px 16px;
}
.paf0d524-header__menu-icon {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
  object-position: center;
  cursor: pointer;
  color: var(--Text-100);
  pointer-events: none;
  touch-action: none;
}
.paf0d524-header__menu-icon:last-child {
  display: none;
}
@media (min-width: 1200px) {
  .paf0d524-header__menu-icon {
    display: none;
  }
}
.paf0d524-footer {
  padding: 23px 0 24px;
  border-top: 1px solid var(--Neutral-300);
  background: var(--Neutral-400);
}
@media screen and (min-width: 768px) {
  .paf0d524-footer {
    padding: 39px 8px 40px;
  }
}
@media screen and (min-width: 1200px) {
  .paf0d524-footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
  }
}
.paf0d524-footer__nav {
  margin-bottom: 32px;
  font-feature-settings: "liga" off;
}
@media (min-width: 1200px) {
  .paf0d524-footer__nav {
    margin-right: 32px;
  }
}
.paf0d524-footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 8px;
}
.paf0d524-footer__nav [data-ref-el] {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}
.paf0d524-footer__nav [data-ref-el],
.paf0d524-footer__nav span,
.paf0d524-footer__nav a {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  display: block;
  padding: 4px 8px;
  color: var(--Text-100);
}
.paf0d524-footer__payments {
  width: 100%;
  display: flex;
  gap: 12px;
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  -ms-overflow-style: none;
  scrollbar-width: none;
  user-select: none;
  -webkit-user-select: none;
  cursor: grab;
  list-style: none;
}
.paf0d524-footer__payments.is-dragging {
  cursor: grabbing;
}
.paf0d524-footer__payments.is-static {
  overflow-x: hidden;
  cursor: default;
  touch-action: auto;
  -webkit-user-select: auto;
  user-select: auto;
}
.paf0d524-footer__payments::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 1200px) {
  .paf0d524-footer__payments {
    padding-top: 18px;
  }
}
.paf0d524-footer__payments-item {
  width: 56px;
  height: 56px;
  margin-right: 12px;
  overflow: hidden;
  flex: 0 0 56px;
  align-content: end;
}
.paf0d524-footer__payments-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
@media screen and (min-width: 1200px) {
  .paf0d524-footer__payments-item:last-child {
    margin-right: 0;
  }
}
.paf0d524-footer__bottom {
  width: 100%;
}
@media (min-width: 1200px) {
  .paf0d524-footer__bottom {
    display: flex;
    gap: 32px;
    align-items: flex-end;
    flex-direction: row;
    justify-content: space-between;
  }
}
.paf0d524-footer__copy {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: var(--Text-300);
  margin-top: 32px;
}
.paf0d524-footer__email {
  margin-top: 8px;
  text-align: left;
  flex-shrink: 0;
}
@media (min-width: 1200px) {
  .paf0d524-footer__email {
    margin-top: 0;
    min-width: 340px;
  }
}
.paf0d524-footer__email a {
  color: var(--Primary-100);
  border-bottom: 1px solid var(--Primary-100);
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}
.paf0d524-footer__social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.paf0d524-bonus__section {
  position: relative;
  min-height: 540px;
  isolation: isolate;
  align-content: center;
  overflow: hidden;
}
.paf0d524-bonus__section + .paf0d524-bonus-labeled__section,
.paf0d524-bonus__section + .paf0d524-bonus__section {
  margin-top: 24px;
}
.paf0d524-bonus__section::after {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(
    90deg,
    var(--Neutral-400) 0%,
    var(--neutral-30060) 100%
  );
}
.paf0d524-bonus__section-bg img {
  position: absolute;
  display: block;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  pointer-events: none;
  touch-action: none;
  user-select: none;
  top: 0;
  left: 0;
}
.paf0d524-bonus__container {
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
  z-index: 1;
}
.paf0d524-bonus__title {
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 8px;
  color: var(--Text-200);
  overflow-wrap: break-word;
}
.paf0d524-bonus__text {
  font-size: 48px;
  line-height: 56px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 24px;
  color: var(--Text-100);
  overflow-wrap: break-word;
}
.paf0d524-bonus__link {
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-start;
  width: max-content;
  padding: 12px 21px;
  color: var(--Text-00);
  border-radius: var(--S);
  gap: 8px;
  cursor: pointer;
  position: relative;
  border: 3px solid rgba(0, 0, 0, 0);
  animation: glow 1.4s linear infinite;
  background-color: var(--Primary-200);
}
@media screen and (min-width: 768px) {
  .paf0d524-bonus__title {
    font-size: 40px;
    line-height: 48px;
  }
  .paf0d524-bonus__text {
    font-size: 72px;
    line-height: 88px;
  }
}
@keyframes glow {
  0% {
    box-shadow: 0 0 0 0 var(--Primary-200);
  }
  50% {
    box-shadow: 0 0 30px 0 var(--Primary-200);
  }
}
.paf0d524-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 700;
}
.paf0d524-content h1,
.paf0d524-content h2,
.paf0d524-content h3,
.paf0d524-content h4 {
  margin-bottom: 12px;
  text-transform: capitalize;
}
.paf0d524-content h1:not(:first-child),
.paf0d524-content h2:not(:first-child),
.paf0d524-content h3:not(:first-child),
.paf0d524-content h4:not(:first-child) {
  margin-top: 16px;
}
.paf0d524-content h1,
.paf0d524-content h1 > * {
  font-size: 48px;
  line-height: 60px;
}
.paf0d524-content h2,
.paf0d524-content h2 > * {
  font-size: 36px;
  line-height: 40px;
}
.paf0d524-content h3,
.paf0d524-content h3 > * {
  font-size: 24px;
  line-height: 32px;
}
.paf0d524-content h4,
.paf0d524-content h4 > * {
  font-size: 20px;
  line-height: 28px;
  color: var(--Text-300);
}
.paf0d524-content ol {
  font-size: 16px;
  margin: 6px 0 14px;
  padding-left: 24px;
  list-style: decimal;
  font-weight: 400;
}
.paf0d524-content ol li {
  margin-bottom: 8px;
  padding-left: 6px;
}
.paf0d524-content ol ol {
  margin-bottom: 8px;
}
.paf0d524-content ol ol > li {
  margin-top: 16px;
  padding-left: 0;
}
.paf0d524-content ol ul li {
  padding-left: 16px;
}
.paf0d524-content ul {
  font-size: 16px;
  margin: 6px 0 14px;
  padding: 0;
  padding-left: 8px;
  list-style: none;
  font-weight: 400;
}
.paf0d524-content ul li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 16px;
  list-style-type: none;
}
.paf0d524-content ul li::before {
  position: absolute;
  top: 11px;
  left: 0;
  box-sizing: border-box;
  width: 6px;
  height: 6px;
  content: "";
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--Text-300);
}
.paf0d524-content ul ul {
  margin-bottom: 8px;
}
.paf0d524-content ul ul > li {
  margin-top: 16px;
  padding-left: 33px;
}
.paf0d524-content ul ul > li::before {
  left: 16px;
  border: 1px solid var(--Text-300);
  background: rgba(0, 0, 0, 0);
}
.paf0d524-content table {
  overflow-x: auto;
}
.paf0d524-content table {
  display: block;
  overflow-x: auto;
  width: 100%;
  margin-top: 16px;
  padding-bottom: 22px;
  border-collapse: collapse;
  overflow-wrap: break-word;
  font-size: 16px;
  color: var(--Text-100);
}
@media (min-width: 1200px) {
  .paf0d524-content table {
    display: table;
  }
}
.paf0d524-content table thead th {
  font-weight: 700;
  padding: 12px 18px;
  text-align: left;
  white-space: nowrap;
  background-color: var(--Primary-400);
}
.paf0d524-content table thead th:first-child {
  border-top-left-radius: var(--S);
  border-bottom-left-radius: var(--S);
}
.paf0d524-content table thead th:last-child {
  border-top-right-radius: var(--S);
  border-bottom-right-radius: var(--S);
}
.paf0d524-content table tbody tr:first-child td {
  padding-top: 16px;
}
.paf0d524-content table tbody tr:not(:last-child) {
  border-bottom: 1px solid var(--Neutral-200);
}
.paf0d524-content table tbody tr:last-child td:first-child {
  border-bottom-left-radius: var(--S);
}
.paf0d524-content table tbody tr:last-child td:last-child {
  border-bottom-right-radius: var(--S);
}
.paf0d524-content table tbody td {
  width: 150px;
  padding: 12px 18px;
  white-space: nowrap;
  background-color: var(--Neutral-300);
}
@media (min-width: 1200px) {
  .paf0d524-content table tbody td {
    width: auto;
    white-space: normal;
  }
}
.paf0d524-content table tbody td img {
  max-width: 24px;
  max-height: 24px;
  margin-right: 14px;
  vertical-align: middle;
}
.paf0d524-content img {
  max-width: 100%;
  height: auto;
}
.paf0d524-games__heading {
  color: var(--Text-100);
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  gap: 12px;
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  text-transform: capitalize;
}
@media (min-width: 768px) {
  .paf0d524-games__heading {
    font-size: 40px;
    line-height: 48px;
  }
}
.paf0d524-games__heading > * {
  margin: 0 !important;
}
.paf0d524-games__heading img {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
  object-position: center;
}
@media (min-width: 1200px) {
  .paf0d524-games__heading img {
    width: 32px;
    height: 32px;
  }
}
.paf0d524-games__heading-icon-wrapper {
  display: inline-block;
}
.paf0d524-games__heading-icon {
  display: flex;
  width: 24px;
  height: 24px;
  background: var(--Primary-100);
  vertical-align: middle;
}
@media (min-width: 1200px) {
  .paf0d524-games__heading-icon {
    width: 32px;
    height: 32px;
  }
}
.paf0d524-games__list {
  display: grid;
  margin-bottom: 16px;
  transition: max-height 0.3s ease-in-out;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (min-width: 768px) {
  .paf0d524-games__list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .paf0d524-games__list {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
.paf0d524-games__list[data-games-type="Live Show"] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (min-width: 768px) {
  .paf0d524-games__list[data-games-type="Live Show"] {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .paf0d524-games__list[data-games-type="Live Show"] {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
.paf0d524-games__list.expanded + .paf0d524-btn--show-all svg {
  transform: rotate(180deg);
}
.paf0d524-games__list-item {
  display: flex;
  flex-direction: column;
  max-height: 300px;
  transition: 0.3s;
  gap: 4px;
  overflow-wrap: break-word;
}
.paf0d524-games__list-item:nth-child(3n) .paf0d524-games__tooltip {
  right: -13px;
}
.paf0d524-games__list-item:nth-child(3n) .paf0d524-games__tooltip svg {
  right: 9px;
}
.paf0d524-games__list-item:hover .paf0d524-games__list-item-logo::before,
.paf0d524-games__list-item:hover .paf0d524-games__list-item-logo::after,
.paf0d524-games__list-item:hover .paf0d524-games__list-item--hover::before,
.paf0d524-games__list-item:hover .paf0d524-games__list-item--hover::after {
  visibility: visible;
  opacity: 1;
}
.paf0d524-games__list-item--hidden {
  display: none;
  opacity: 0;
}
.paf0d524-games__list-item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: var(--Text-400);
  gap: 4px;
}
.paf0d524-games__list-item-logo {
  aspect-ratio: 1/1;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--S);
}
.paf0d524-games__list-item-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.paf0d524-games__list-item-logo::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  background: var(--neutral-30060, rgba(36, 36, 71, 0.6));
  backdrop-filter: blur(8px);
  inset: -1px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  touch-action: none;
  transition:
    visibility ease 0.1s,
    opacity ease 0.1s;
}
.paf0d524-games__list-item-name {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  color: var(--Text-100);
  overflow: clip;
  height: 20px;
  text-overflow: ellipsis;
  background: none;
}
.paf0d524-games__list-item--hover::before,
.paf0d524-games__list-item--hover::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transition:
    visibility ease 0.1s,
    opacity ease 0.1s;
  pointer-events: none;
  touch-action: none;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.paf0d524-games__list-item--hover::before {
  border-radius: var(--S);
  background: var(--Primary-200);
  width: 40px;
  height: 40px;
}
.paf0d524-games__list-item--hover::after {
  width: 20px;
  height: 20px;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 100% 100%;
  mask-image: url("data:image/svg+xml,%3Csvg width='21' height='21' viewBox='0 0 21 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 10.6669C19.0006 10.9063 18.9412 11.1418 18.8277 11.3504C18.7142 11.5591 18.5504 11.7338 18.3523 11.8576L6.07273 19.626C5.8657 19.7571 5.62858 19.8287 5.38586 19.8333C5.14314 19.838 4.90363 19.7755 4.69205 19.6525C4.48248 19.5313 4.30791 19.3546 4.18628 19.1405C4.06465 18.9264 4.00035 18.6827 4 18.4344V2.89942C4.00035 2.65112 4.06465 2.4074 4.18628 2.19333C4.30791 1.97925 4.48248 1.80254 4.69205 1.68136C4.90363 1.55828 5.14314 1.49584 5.38586 1.50049C5.62858 1.50513 5.8657 1.5767 6.07273 1.70781L18.3523 9.47618C18.5504 9.59999 18.7142 9.77472 18.8277 9.98337C18.9412 10.192 19.0006 10.4275 19 10.6669Z' fill='white'/%3E%3C/svg%3E%0A");
  background-color: var(--Text-00);
}
.paf0d524-games__list-item-providers {
  font-size: 12px;
  line-height: 16px;
  color: var(--Text-400);
  font-weight: 700;
}
.paf0d524-games__list-item-info {
  display: flex;
  position: relative;
}
.paf0d524-games__list-item-info:hover .paf0d524-games__tooltip,
.paf0d524-games__list-item-info .active .paf0d524-games__tooltip {
  display: block;
}
.paf0d524-games__list-item-info svg {
  flex-shrink: 0;
}
.paf0d524-games__tooltip {
  display: none;
  padding: 10px;
  border-radius: var(--M);
  border: 1px solid var(--Neutral-200);
  background: var(--Neutral-300);
  position: absolute;
  z-index: 2;
  top: 28px;
  right: -23px;
  width: 136px;
}
@media (min-width: 768px) {
  .paf0d524-games__tooltip {
    width: 174px;
    right: -28px;
    padding: 12px;
  }
}
.paf0d524-games__tooltip:hover {
  display: flex;
}
.paf0d524-games__tooltip svg {
  color: var(--Neutral-300);
  position: absolute;
  right: 19px;
  top: -11px;
}
.paf0d524-games__tooltip-row {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  color: var(--Text-100);
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  width: 100%;
}
.paf0d524-games__tooltip-row:not(:last-child) {
  margin-bottom: 4px;
}
.paf0d524-games__tooltip-value,
.paf0d524-games__tooltip-label {
  width: 50%;
  flex-shrink: 0;
}
.paf0d524-games__tooltip-value {
  font-weight: 700;
}
@media (min-width: 768px) {
  .paf0d524-games__section--with-ratings .paf0d524-games__list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .paf0d524-games__section--with-ratings .paf0d524-games__list {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
.paf0d524-games__section--with-ratings
  .paf0d524-games__list-item-name:has(img) {
  max-height: initial !important;
  aspect-ratio: 1/1;
}
.paf0d524-games__section--with-ratings .paf0d524-games__list-item-logo {
  border-radius: var(--S);
}
.paf0d524-games__section--with-ratings .paf0d524-games__list-item-top {
  gap: 12px;
  align-items: center;
}
.paf0d524-games__section--with-ratings .paf0d524-games__list-item-top button {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.paf0d524-games__section--with-ratings .paf0d524-games__list-item-top svg {
  display: block;
  aspect-ratio: 1/1;
  flex: 0 0 16px;
}
.paf0d524-games__section--with-ratings .paf0d524-btn {
  padding-top: 7px;
  padding-bottom: 7px;
  line-height: 16px;
}
.paf0d524-games__section--with-ratings .paf0d524-games__list-item-rating,
.paf0d524-games__section--with-ratings .paf0d524-games__list-item-rating-bar {
  height: 16px;
  max-width: 100%;
  mask-repeat: repeat;
  mask-position: left center;
  mask-size: 20px 16px;
  mask-image: url("data:image/svg+xml,%3Csvg width='16' height='15' viewBox='0 0 16 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.70312 4.98633L9.82031 5.22168L10.0801 5.25977L14.335 5.87695L11.2559 8.87891L11.0674 9.0625L11.1123 9.32129L11.8389 13.5586L8.0332 11.5586L7.80078 11.4365L7.56836 11.5586L3.76172 13.5586L4.48926 9.32129L4.53418 9.0625L4.3457 8.87891L1.26562 5.87695L5.52148 5.25977L5.78125 5.22168L5.89844 4.98633L7.80078 1.13086L9.70312 4.98633Z' fill='%23FFBB00' stroke='%23FFBB00'/%3E%3C/svg%3E%0A");
}
.paf0d524-games__section--with-ratings .paf0d524-games__list-item-rating {
  background-color: hsl(from var(--Neutral-50) h s l / 30%);
  width: 98px;
}
.paf0d524-games__section--with-ratings .paf0d524-games__list-item-rating-bar {
  display: block;
  background-color: var(--Accent-Yellow-300, #fb0);
}
.paf0d524-faq__header {
  color: var(--Text-100);
  font-feature-settings: "liga" off;
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .paf0d524-faq__header {
    font-size: 40px;
    line-height: 48px;
  }
}
.paf0d524-faq__header img {
  max-width: 24px;
  max-height: 24px;
  object-fit: contain;
  object-position: center;
}
@media screen and (min-width: 768px) {
  .paf0d524-faq__header img {
    max-width: 32px;
    max-height: 32px;
  }
}
.paf0d524-faq__text {
  color: var(--Text-200);
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}
.paf0d524-accordion__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}
.paf0d524-accordion__list-item {
  padding: 16px 16px 12px;
  border-bottom: 4px solid rgba(0, 0, 0, 0);
  transition: border-bottom-color ease 0.3s;
}
.paf0d524-accordion__list-item[data-active="true"] {
  border-bottom-color: var(--Primary-100);
}
.paf0d524-accordion__title {
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--Text-100);
}
.paf0d524-accordion__title::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: var(--Neutral-100);
  mask-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.292893 0.559495C0.683417 0.16897 1.31658 0.16897 1.70711 0.559495L7 5.85239L12.2929 0.559495C12.6834 0.16897 13.3166 0.16897 13.7071 0.559495C14.0976 0.950019 14.0976 1.58318 13.7071 1.97371L7.70711 7.97371C7.31658 8.36423 6.68342 8.36423 6.29289 7.97371L0.292893 1.97371C-0.0976311 1.58318 -0.0976311 0.950019 0.292893 0.559495Z' fill='%238080B1'/%3E%3C/svg%3E%0A");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 14px;
  pointer-events: none;
  touch-action: none;
  user-select: none;
  transition: rotate 0.3s;
}
[data-active="true"] .paf0d524-accordion__title::after {
  rotate: 180deg;
}
@media screen and (min-width: 768px) {
  .paf0d524-accordion__title {
    font-size: 20px;
    line-height: 28px;
  }
}
.paf0d524-accordion__panel {
  visibility: hidden;
  overflow: hidden;
  max-height: 0;
  transition: 0.3s ease;
  opacity: 0;
  color: var(--Text-200);
}
[data-active="true"] .paf0d524-accordion__panel {
  visibility: visible;
  max-height: 1000px;
  opacity: 1;
}
.paf0d524-accordion__content {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  padding: 12px 0 0;
}
.paf0d524-accordion__content ol,
.paf0d524-accordion__content ul {
  padding-left: 1.4em;
}
.paf0d524-search__section {
  margin: -24px 0;
}
.paf0d524-search__section:first-of-type {
  margin-top: 24px;
}
@media (min-width: 1200px) {
  .paf0d524-search__section {
    margin: -16px 0;
  }
}
@media (min-width: 1200px) {
  .paf0d524-search {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
  }
}
.paf0d524-search__form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .paf0d524-search__form {
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .paf0d524-search__form {
    flex: 0 0;
    order: 1;
    margin-bottom: 0;
  }
}
.paf0d524-search label {
  display: block;
  position: relative;
}
.paf0d524-search label::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  z-index: 1;
  pointer-events: none;
  touch-action: none;
  top: 12px;
  left: 16px;
  background: var(--Text-400);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 25 25' fill='none'%3E%3Cpath d='M18.3999 17.6001L23.9999 23.2001' stroke='%23999999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='11.1998' cy='11.2' r='9.4' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
@media (min-width: 768px) {
  .paf0d524-search label {
    flex: 1;
  }
}
@media (min-width: 1200px) {
  .paf0d524-search label {
    width: 300px;
  }
}
.paf0d524-search__input {
  padding: 11px 11px 12px 50px;
  border-radius: var(--S);
  background: var(--Neutral-300);
  display: block;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  width: 100%;
  color: var(--Text-400);
  font-family: inherit;
}
.paf0d524-search__input::placeholder {
  color: var(--Text-400);
}
.paf0d524-search__button {
  padding: 9px 15px;
  border-radius: var(--S);
  border: 1px solid var(--Primary-200);
  background: var(--neutral-30060);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  gap: 8px;
  color: var(--Text-100);
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .paf0d524-search__button {
    padding-top: 13px;
    padding-bottom: 13px;
  }
}
.paf0d524-search__categories {
  display: flex;
  margin: -4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.paf0d524-search__categories::-webkit-scrollbar {
  display: none;
}
@media (min-width: 1200px) {
  .paf0d524-search__categories {
    margin: 0;
    flex-wrap: wrap;
  }
}
.paf0d524-search__category {
  border-radius: var(--S);
  border: 1px solid var(--Primary-200);
  background: var(--neutral-30060);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: var(--Text-100);
  margin: 4px;
  text-align: center;
  padding: 9px 15px;
  flex-shrink: 0;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .paf0d524-search__category {
    border: none;
    padding: 10px 16px;
    background: var(--neutral-30080);
  }
}
.paf0d524-search__category img,
.paf0d524-search__category svg {
  margin-right: 8px;
}
.paf0d524-search__category--active {
  background: var(--Primary-200);
  color: var(--Text-00);
}
.autocomplete-list {
  border-radius: 4px;
  overflow-y: auto;
  position: absolute;
  background-color: var(--Neutral-300);
  width: 100%;
  z-index: 990;
  top: 54px;
}
.autocomplete-list > * {
  padding: 12px;
  color: var(--Text-200);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  cursor: pointer;
}
.autocomplete-list > *:hover {
  box-shadow: inset 0 0 3px var(--Text-300);
  background-color: var(--Neutral-100);
}
.paf0d524-apps {
  border-radius: var(--M);
  border: 1px solid var(--Primary-100);
  background: var(
    --Casino-Gradient-Main,
    linear-gradient(90deg, var(--Primary-400) 0%, var(--Primary-200) 100%)
  );
  padding: 15px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  margin: 24px 0;
}
.paf0d524-apps__title {
  color: var(--Text-100);
  font-feature-settings: "liga" off;
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 12px;
}
.paf0d524-apps__text {
  color: var(--Text-200);
  font-feature-settings: "liga" off;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.paf0d524-apps__buttons {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
.paf0d524-apps__icons {
  position: absolute;
  top: 0;
  right: -25px;
  pointer-events: none;
  touch-action: none;
  z-index: -1;
  width: auto;
  height: 170px;
}
.paf0d524-apps button {
  border-radius: var(--S);
  background: var(--Text-00);
  padding: 10px 15px;
  color: var(--Primary-200);
  text-align: center;
  font-feature-settings: "liga" off;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  cursor: pointer;
  flex: 1;
}
.paf0d524-apps button svg {
  pointer-events: none;
  touch-action: none;
  display: inline-block;
  vertical-align: sub;
  margin-right: 6px;
  width: 20px;
  height: 20px;
  object-position: center;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .paf0d524-apps {
    padding: 39px 179px 39px 39px;
  }
  .paf0d524-apps__title {
    font-size: 40px;
    line-height: 48px;
  }
  .paf0d524-apps__icons {
    height: 348px;
  }
  .paf0d524-apps button {
    font-size: 18px;
    line-height: 26px;
    flex: 0 0 auto;
    padding: 16px 24px;
  }
  .paf0d524-apps button svg {
    width: 24px;
    height: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .paf0d524-apps {
    padding: 63px;
  }
}
.paf0d524-toc {
  display: flex;
  align-items: center;
  padding: 8px 0;
}
@media (min-width: 768px) {
  .paf0d524-toc {
    padding: 16px 0;
  }
}
.paf0d524-toc__title {
  font-size: 14px;
  color: var(--Text-100);
  white-space: nowrap;
}
.paf0d524-toc__links {
  margin-left: 16px;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: pan-x;
}
.paf0d524-toc__links::-webkit-scrollbar {
  display: none;
}
.paf0d524-toc__links a {
  background-color: var(--Neutral-300);
  color: var(--Text-300);
  padding: 8px 16px;
  flex-shrink: 0;
  display: flex;
  white-space: nowrap;
  font-weight: 700;
  font-size: 16px;
  margin-right: 8px;
  border-radius: var(--M, 8px);
}
.paf0d524-toc__links a:hover {
  background-color: var(--Neutral-200);
  color: var(--Text-100);
}
.paf0d524-games__list-item-info {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: var(--Text-400);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}

.paf0d524-games__list-item-info:hover {
  color: var(--Text-100);
}

.paf0d524-games__list-item-info-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.paf0d524-games__list-item-info {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: var(--Text-400);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}

.paf0d524-games__list-item-info:hover {
  color: var(--Text-100);
}

.paf0d524-games__tooltip {
  display: none;
  position: absolute;
  top: 28px;
  right: -23px;
  z-index: 20;
  width: 136px;
  padding: 10px;
  border-radius: var(--M);
  border: 1px solid var(--Neutral-200);
  background: var(--Neutral-300);
}

@media (min-width: 768px) {
  .paf0d524-games__tooltip {
    width: 174px;
    right: -28px;
    padding: 12px;
  }
}

.paf0d524-games__list-item-info-wrap:hover .paf0d524-games__tooltip,
.paf0d524-games__list-item-info-wrap:focus-within .paf0d524-games__tooltip {
  display: block;
}
.paf0d524-bonus-labeled__section {
  position: relative;
  padding-bottom: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  isolation: isolate;
}
.paf0d524-bonus-labeled__section--inner {
  margin: 40px -16px;
}
@media (min-width: 768px) {
  .paf0d524-bonus-labeled__section {
    padding-bottom: 40px;
  }
}
.paf0d524-bonus-labeled__section + .paf0d524-bonus-labeled__section,
.paf0d524-bonus-labeled__section + .paf0d524-bonus__section {
  margin-top: 24px;
}
.paf0d524-bonus-labeled__section::after {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(
    90deg,
    var(--Neutral-400) 0%,
    var(--neutral-30060) 100%
  );
}
.paf0d524-bonus-labeled__section-bg img {
  position: absolute;
  display: block;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  pointer-events: none;
  touch-action: none;
  user-select: none;
  top: 0;
  left: 0;
}
.paf0d524-bonus-labeled {
  position: relative;
  z-index: 1;
}
.paf0d524-bonus-labeled__label {
  display: inline-block;
  padding: 7px;
  border-radius: var(--M);
  border: 1px solid var(--Neutral-200);
  background: var(--Neutral-300);
  box-shadow: 0 0 12px 0 rgba(191, 191, 191, 0.14);
  color: var(--Text-100, #f0f0f0);
  text-align: center;
  font-feature-settings:
    "liga" off,
    "clig" off;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  margin-bottom: 32px;
}
.paf0d524-bonus-labeled__title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--Text-200);
  overflow-wrap: break-word;
  text-transform: capitalize;
}
@media (min-width: 768px) {
  .paf0d524-bonus-labeled__title {
    font-size: 24px;
    line-height: 32px;
  }
}
.paf0d524-bonus-labeled__text {
  font-size: 40px;
  line-height: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--Text-100);
  text-transform: capitalize;
}
@media (min-width: 768px) {
  .paf0d524-bonus-labeled__text {
    font-size: 48px;
    line-height: 56px;
  }
}
.paf0d524-bonus-labeled__btns {
  display: flex;
  max-width: 400px;
  gap: 8px;
}
.paf0d524-bonus-labeled__btns .paf0d524-btn--primary {
  width: 100%;
}
.paf0d524-bonus-labeled__btns .paf0d524-btn-outline {
  width: min-content;
}
.paf0d524-cta-button__wrapper {
  margin: 24px 16px 40px;
}
@media (min-width: 768px) {
  .paf0d524-cta-button__wrapper {
    display: flex;
    justify-content: center;
  }
}
.paf0d524-cta-button {
  padding: 14px 23px;
  width: 100%;
  font-size: 18px;
  line-height: 26px;
}
@media (min-width: 768px) {
  .paf0d524-cta-button {
    padding: 15px 48px;
    width: fit-content;
  }
}
main > .paf0d524-cta-button__wrapper {
  margin: -26px 16px 0;
}

/* BANNER */

.container .banner {
  background-color: rgba(0, 0, 0, 0.3);
}

.banner img {
  position: relative;
  opacity: 0.2;
}
.banner__text {
  width: 40vw;
  position: absolute;
  top: 200px;
  transform: translateY(-50%);
  color: #fff;
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  max-width: 70%;
}

/* stains */
html {
  overflow-x: clip;
  scroll-behavior: smooth;
  height: 100%;
}

body {
  margin-top: 128px;
  font-size: 16px;
  line-height: 24px;
  background-color: var(--Neutral-400);
  color: var(--Text-200);
  font-family:
    "Anuphan",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  min-height: 100%;
  overflow-x: clip;
  position: relative;
  isolation: isolate;
}

@media screen and (min-width: 768px) {
  body {
    margin-top: 72px;
  }
}

body::before,
body::after,
main::before,
main::after {
  content: none !important;
}

main {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  gap: 48px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  main {
    gap: 56px;
  }
}

.paf0d524-bg-blobs {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.paf0d524-bg-blob {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(76px);
  transform: translate(-50%, -50%);
  will-change: transform;
}

.paf0d524-bg-blob--1 {
  width: clamp(340px, 42vw, 760px);
  height: clamp(340px, 42vw, 760px);
  top: 18%;
  left: 84%;
  filter: blur(48px);
  background: radial-gradient(
    circle,
    rgba(255, 120, 40, 0.52) 0%,
    rgba(255, 120, 40, 0.42) 18%,
    rgba(140, 70, 255, 0.26) 42%,
    rgba(8, 8, 43, 0) 74%
  );
}

.paf0d524-bg-blob--2 {
  width: clamp(320px, 46vw, 820px);
  height: clamp(320px, 46vw, 820px);
  top: 48%;
  left: 12%;
  background: radial-gradient(
    circle,
    hsl(from var(--Primary-200) h s l / 0.28) 0%,
    hsl(from var(--Neutral-400) h s l / 0) 72%
  );
}

.paf0d524-bg-blob--3 {
  width: clamp(300px, 42vw, 760px);
  height: clamp(300px, 42vw, 760px);
  top: 78%;
  left: 86%;
  background: radial-gradient(
    circle,
    hsl(from var(--Accent-300) h s l / 0.18) 0%,
    hsl(from var(--Neutral-400) h s l / 0) 74%
  );
}

.paf0d524-bg-blob--4 {
  width: clamp(260px, 34vw, 560px);
  height: clamp(260px, 34vw, 560px);
  top: 92%;
  left: 52%;
  background: radial-gradient(
    circle,
    hsl(from var(--Primary-400) h s l / 0.2) 0%,
    hsl(from var(--Neutral-400) h s l / 0) 74%
  );
}

@media (max-width: 767px) {
  .paf0d524-bg-blob {
    filter: blur(54px);
  }

  .paf0d524-bg-blob--1 {
    top: 14%;
    left: 88%;
  }

  .paf0d524-bg-blob--2 {
    top: 42%;
    left: 8%;
  }

  .paf0d524-bg-blob--3 {
    top: 74%;
    left: 92%;
  }

  .paf0d524-bg-blob--4 {
    top: 90%;
    left: 50%;
  }
}

/* SHOW MORE */
.paf0d524-games__list-item.is-hidden {
  display: none;
}

.paf0d524-btn--show-all {
  display: none;
  margin: 16px auto 0;
}

.paf0d524-btn--show-all.is-visible {
  display: flex;
}

.paf0d524-btn--show-all {
  display: none;
  margin: 16px auto 0;
}

.paf0d524-btn--show-all.is-visible {
  display: flex;
}
