.rad-sm {
  border-radius: var(--rad-sm);
  overflow: hidden;
}
.rad-md {
  border-radius: var(--rad-md);
  overflow: hidden;
}
.rad-lg {
  border-radius: var(--rad-lg);
  overflow: hidden;
}
.rad-xl {
  border-radius: var(--rad-xl);
  overflow: hidden;
}
.rad-full {
  border-radius: var(--rad-full);
  overflow: hidden;
}


.border-gradient {
  background: linear-gradient(100deg, #5C1574, #EEB9FF, #5C1574) border-box;
  border: 3px solid transparent;
}

.important {
  font-weight: 600;
  color: var(--primary-color);
  font-size: var(--text-md);
}


/* Header */
.custom-menu-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}
.custom-menu-inner .module-social svg {
  width: 3rem;
  height: auto;
  transition: var(--transition);
}
.custom-menu-inner .header-legal {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5rem;
  transition: var(--transition);
}
.custom-menu-inner .header-legal img {
  height: 3rem;
  width: auto;
  transition: var(--transition);
}

.gradient-border {
  position: relative;
  background: linear-gradient(100deg, #5C1574, #EEB9FF, #5C1574) border-box;
  border: 3px solid transparent;
}

.top-bonus {
  border-radius: calc(var(--rad-xl) + 3px);
}
.top-bonus-container {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  background-color: var(--primary-color);
  background-image: radial-gradient(circle farthest-corner at left center, rgb(100 55 120) 0%, rgb(60 20 89 / 0%) 20%), radial-gradient(circle at top center, rgb(158 104 172) -20%, rgb(60 20 89 / 0%) 30%), radial-gradient(circle farthest-corner at top left, rgb(94 93 94) 0%, rgb(60 20 89 / 0%) 31%), radial-gradient(circle farthest-corner at top left, rgb(2 1 4) 0%, rgb(60 20 89 / 0%) 50%), radial-gradient(circle farthest-side at top right, rgb(199 133 206) 0%, rgba(181, 176, 177, 0) 10%), radial-gradient(circle farthest-corner at bottom right, rgb(111 85 125) 0%, rgba(204, 104, 119, 0) 33%), radial-gradient(circle farthest-corner at top right, rgb(173 73 187) 0%, rgb(255 255 255 / 0%) 50%), radial-gradient(ellipse at bottom center, rgb(36 1 63) 0%, rgb(254 43 0 / 0%) 80%), radial-gradient(circle farthest-corner at bottom left, rgb(227 209 237) 0%, rgb(60 20 89 / 0%) 20%);
  border-radius: var(--rad-xl);

}
.top-bonus-container .left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 3rem;
  padding-right: 0;
  max-width: 26rem;
}
.top-bonus-container .left .title > * {
  margin-bottom: 0;
  color: #fff;
}
.top-bonus strong {
  color: var(--gold-color);
}
.top-bonus-container .left .subtitle > * {
  line-height: 1.5em;
}
.top-bonus-container .left .subtitle strong {
  font-weight: 600;
}
.top-bonus-container .bonus-image-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 23rem;
}
.top-bonus-container .bonus-image-wrapper figure {
  position: relative;
}
.top-bonus-container .bonus-image-wrapper .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
}
.top-bonus-container .bonus-image-wrapper .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(15px);
}

.top-bonus-container .bonus-image-wrapper img {
  aspect-ratio: 4/2.2494;
  object-fit: contain;
}

.top-bonus-container .right {
  position: relative;
  height: 100%;
}
.top-bonus-container .right img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: contain;
}

.intro-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  justify-content: space-between;
  gap: 2rem;
}
.intro-buttons .btn {
  width: 100%;
  font-size: var(--text-regular);
}
.intro-buttons .bonuses,
.intro-buttons .giveaway {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.intro-buttons .bonuses .btn:hover path {
  fill: #fff;
}
/* .intro-buttons .bonuses:before,
.intro-buttons .giveaway:before {
  content: '';
  width: 4.5rem;
  aspect-ratio: 1/1;
  background: url('/uploads/icons/clover-purple.png');
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
}
.intro-buttons .giveaway:before {
  background: url('/uploads/icons/clover-gold.png');
  background-repeat: no-repeat;
  background-size: contain;
} */
.intro-buttons .giveaway .btn {
  color: var(--gold-color);
  background: linear-gradient(84deg, rgb(255 255 255) 0%, rgb(255 255 255) 100%) padding-box, linear-gradient(60deg, #EDB632, #FFF4DA, #F6CC66) border-box;
}
.intro-buttons .giveaway .btn:hover {
  background: linear-gradient(84deg, rgb(248 213 130) 0%, rgb(243 201 109) 100%) padding-box, linear-gradient(60deg, #EDB632, #FFF4DA, #F6CC66) border-box;
  color: #000;
}
.intro-buttons path {
  transition: var(--transition);
}
.intro-buttons .giveaway .btn path {
  fill: var(--gold-color);
}
.intro-buttons .giveaway .btn:hover path {
  fill: #000;
}


#section-2:before {
  content: '';
  position: absolute;
  top: 3rem;
  left: 0;
  width: 100%;
  height: calc(100% - 3rem);
  background: url('/uploads/background/mask-1.svg');
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
  pointer-events: none;
}


/* Bonus Grid */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 2rem;
}
.bonus-grid .bonus-card img {
  aspect-ratio: 1/1;
  object-fit: cover;
}


/* Bonus List */
.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.bonus-list-card-wrapper {
  position: relative;
}
.top-item-trophy {
  position: absolute;
  transform: translate(-50%, -50%);
  transition: var(--transition);
}
.top-item-trophy:not(.is-top) {
  background: var(--primary-color);
  border-radius: 100%;
  padding: 0.5rem;
  color: #fff;
}
.top-item-trophy-inner {
  position: relative;
  display: flex;
  align-items: center;
  aspect-ratio: 1/1;
  font-weight: 500;
  line-height: 100%;
  min-width: 1.2rem;
  justify-content: center;
}
.top-item-trophy-inner > * {
  width: 2.7rem;
}
.bonus-list-card {
  background: linear-gradient(100deg, #f8e3ff, #ececec, #f8e3ff) border-box;
  border: 2px solid transparent;
  transition: var(--transition);
}
.bonus-list-card:hover {
  background: linear-gradient(100deg, #e8a2ff, #f6dbff, #e8a2ff) border-box;
}
.bonus-list-card-inner {
  display: grid;
  grid-template-columns: 7rem 1fr auto;
  gap: 1.5rem;
  align-items: center;
  background: #fff;
  padding: 0.25rem 1.5rem 0.25rem 1.5rem;
}
.bonus-list-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.bonus-list-image-wrapper img {
  max-height: 4rem;
  object-fit: contain;
}

.bonus-list-content-wrapper {
  padding: 1rem 0;
}
.bonus-list-button {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-left: 3rem;
}
.bonus-list-button-inner {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 1rem;
}
.bonus-list-button .external-link {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}
.bonus-list-button .external-link svg {
  width: 1.2rem;
  height: auto;
}
.bonus-list-content-wrapper .title > * {
  line-height: 1em;
  margin-bottom: 0.5rem;
}
.bonus-list-content-wrapper .description strong {
  font-weight: 500;
  color: var(--primary-color) !important;
}

.bonus-list-rating {
  padding-top: 0.4rem;
}
.bonus-list-rating .stars {
  display: flex;
  align-items: center;
}
.bonus-list-rating .stars svg {
  width: 1rem;
}

/* Section 3 */
#section-3:before {
  content: '';
  position: absolute;
  top: -22%;
  left: 0;
  width: 100%;
  height: 187%;
  background: url(/uploads/background/mask-2.svg);
  z-index: -1;
  background-size: cover;
  pointer-events: none;
}
#section-3 .image {
  max-width: 20rem;
  margin-left: auto;
}
#section-3 li {
  display: flex;
  align-items: center;
  gap: 2rem;
}
#section-3 li:before {
  content: '';
  width: 2rem;
  height: 2rem;
  background: url('/uploads/icons/li-marker.svg');
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

/* Section 4 */
.benefits {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
}
.benefits .module-fickle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}
.benefits .module-fickle .fickle-image {
  height: 5rem;
}
.benefits .module-fickle .fickle-image img {
  height: 100%;
  width: auto;
}
.benefits .fickle-item.fickle-title .fickle-title {
  text-transform: uppercase;
  font-weight: 400;
  font-size: var(--text-md);
  color: var(--primary-color);
}


/* Section 5 */
.social-inner {
  display: flex;
  justify-content: space-between;
}
.social-inner .modules-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.social-inner .modules-wrapper rect {
  stroke: var(--gold-color);
}
.social-inner .modules-wrapper path {
  fill: var(--gold-color);
}


/* Banners */
.banner .row,
.banner .col-lg-12 {
  padding: 0;
}


.gradient-overlay {
  position: relative;
}
.gradient-overlay:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle farthest-corner at left center, rgb(100 55 120) 0%, rgb(60 20 89 / 0%) 20%), radial-gradient(circle at top center, rgb(158 104 172) -20%, rgb(60 20 89 / 0%) 30%), radial-gradient(circle farthest-corner at top left, rgb(94 93 94) 0%, rgb(60 20 89 / 0%) 31%), radial-gradient(circle farthest-corner at top left, rgb(2 1 4) 0%, rgb(60 20 89 / 0%) 50%), radial-gradient(circle farthest-side at top right, rgb(199 133 206) 0%, rgba(181, 176, 177, 0) 10%), radial-gradient(circle farthest-corner at bottom right, rgb(111 85 125) 0%, rgba(204, 104, 119, 0) 33%), radial-gradient(circle farthest-corner at top right, rgb(173 73 187) 0%, rgb(255 255 255 / 0%) 50%), radial-gradient(ellipse at bottom center, rgb(36 1 63) 0%, rgb(254 43 0 / 0%) 80%), radial-gradient(circle farthest-corner at bottom left, rgb(227 209 237) 0%, rgb(60 20 89 / 0%) 20%)
}


#purple-section .inner {
  max-width: var(--boxed);
  margin: auto;
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  padding-right: calc(var(--bs-gutter-x) * 0.5);
}
#purple-section .module-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#purple-section .module-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 0.15;
}
#purple-section .module-fickle {
  position: relative;
  display: flex;
}
#purple-section .module-fickle:first-child {
  margin-bottom: -2rem;
}
#purple-section .module-fickle:first-child .fickle-image {
  width: 45%;
  min-width: 15rem;
  flex-shrink: 0;
}
#purple-section .module-fickle:first-child .fickle-text-content {
  font-size: var(--text-md);
  font-weight: 500;
  /* padding-top: 3rem; */
}
#purple-section .module-fickle:first-child .fickle-text-content h2 {
  color: #fff;
}
#purple-section .module-fickle:not(:first-child) {
  display: grid;
  grid-template-columns: 4rem 1fr;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  max-width: 60rem;
}
#purple-section .module-fickle:last-of-type {
  margin-bottom: 0;
}



.recommended-slots .module-fickle {
  display: grid;
  grid-template-columns: 15rem 1fr;
  align-items: center;
  column-gap: 7rem;
  row-gap: 1rem;
  margin-bottom: 3rem;
}
.recommended-slots .module-fickle:last-child {
  margin-bottom: 0;
}
.recommended-slots .fickle-image {
  grid-column: 1/2;
  grid-row: 1/2;
  text-align: center;
  align-self: flex-end;
}
.recommended-slots .fickle-item.fickle-title {
  grid-column: 1/2;
  grid-row: 2/3;
  text-align: center;
  text-transform: uppercase;
  max-width: 10rem;
  margin: auto;
  height: 100%;
  align-self: flex-start;
}
.recommended-slots .fickle-item.fickle-title .fickle-title {
  color: var(--primary-color);
  font-size: var(--text-md);
}
.recommended-slots .fickle-text-content {
  grid-column: 2/3;
  grid-row: 1/3;
  font-size: var(--text-regular);
}


/* Contact section */
.contact-inner {
  max-width: 35rem;
  margin: auto;
}
form .container {
  padding: 0;
}
.contact-inner .form-submit {
  text-align: center;
}
.contact-inner .form-control {
  --bs-body-color: #fff;
}
.contact-inner .form-control::placeholder {
  text-transform: uppercase;
  color: var(--gray);
}
