.jackpot-winner__body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

.jackpot-winner__body__jackpot-spotlight__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  background-color: #ffffff0d;
  padding: 1.5rem 4.65rem;
  border-radius: 6px;
  gap: 1.5rem;
}

.jackpot-winner__body__jackpot-spotlight__title {
  line-height: 30px;
  font-size: 1.25rem;
  font-weight: 400;
  background: linear-gradient(180deg, #f4fffc 0%, #40d5b0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-align: center;
  max-width: 265px;
}

.jackpot-winner__body__jackpot-spotlight__item {
  width: 100%;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  isolation: isolate;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  padding: 1.8rem 1.2rem;
  color: #ffffff;
  text-align: center;
  border-radius: 8px;
  background: linear-gradient(
    0deg,
    rgba(15, 119, 138, 0.4) 0%,
    rgba(0, 91, 104, 0.4) 100%
  );

  & > span {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(180deg, #ffcb47 0%, #fff0a4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    & > span {
      font-size: 0.875rem;
      font-weight: 400;
      color: #ffffff;
    }
  }
}

.jackpot-winner__body__jackpot-spotlight__item__icon {
  width: 1.5rem;
  height: 1.5rem;
}

.jackpot-winner__body__jackpot-spotlight__item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 1px;
  background: linear-gradient(180deg, #00b5af 0%, #44c0a5 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
}

.jackpot-winner__body__jackpot-spotlight__item > * {
  position: relative;
  z-index: 1;
}

.jackpot-winner__body__jackpot-spotlight__item__span {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
}

.jackpot-winner__body__recent-jackpot-winners {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.jackpot-winner__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}

.jackpot-winner__header-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}

.jackpot-winner__recent-jackpot-winners__actions {
  display: flex;
  align-items: center;
  gap: 0;
}

.jackpot-winner__recent-jackpot-winners__scroll-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: none;
  background-color: #ffffff1a;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.2s;
}

.jackpot-winner__recent-jackpot-winners__scroll-btn:hover {
  background-color: #ffffff1a;
  opacity: 0.9;
}

.jackpot-winner__recent-jackpot-winners__scroll-btn--left {
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}

.jackpot-winner__recent-jackpot-winners__scroll-btn__icon--left {
  transform: rotate(90deg);
  width: 17px;
}

.jackpot-winner__recent-jackpot-winners__scroll-btn--right {
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}

.jackpot-winner__recent-jackpot-winners__scroll-btn__icon--right {
  transform: rotate(-90deg);
  width: 17px;
}

.jackpot-winner__header-button {
  padding: 8px 38.5px;
  border-radius: 24px;
  background: #ffffff1a;
  cursor: pointer;
  font-size: 12px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
}

.jackpot-winner__header-button:not(#trending-searches-see-all-btn):not(#ten-million-club-see-all-btn) {
  margin: 0 8px 0;
}

.jackpot-winner__recent-jackpot-winner-item {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  gap: 16px;
  overflow: hidden;
  background-color: #ffffff1a;
  padding: 20px;
  border-radius: 8px;
  min-height: 174px;
  max-height: 174px;
}

.jackpot-winner__recent-jackpot-winner-item__image {
  width: 137px;
  height: 174px;
}

.jackpot-winner__recent-jackpot-winners__content {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-auto-flow: column;
  grid-auto-columns: minmax(350px, 1fr);
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.jackpot-winner__recent-jackpot-winner-item__details {
  display: flex;
  flex-direction: column;
}

.jackpot-winner__recent-jackpot-winner-item__details__player-level {
  font-size: 14px;
  font-weight: 300;
  display: flex;
  flex-direction: row;
  gap: 8px;

  & > img {
    width: 4rem;
    height: 1.5rem;
    transform: scale(1.3);
  }
}

.jackpot-winner__recent-jackpot-winner-item__details__game-name-prize {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20.8px;
}

.jackpot-winner__recent-jackpot-winner-item__details__game-name-prize__name {
  font-family: 'SF Pro Display', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.5;
}

.jackpot-winner__recent-jackpot-winner-item__details__game-name-prize__amount {
  font-family: 'SF Pro Display', sans-serif;
  font-size: 32px;
  font-weight: 900;
  background: linear-gradient(180deg, #ffcb47 0%, #fff0a4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin: 0;
}

.jackpot-winner__recent-jackpot-winner-item__details__date {
  font-family: 'SF Pro Display', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #ffffff99;
  margin-top: auto;
}

.jackpot-winner__body__trending-searches {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.jackpot-winner__body__trending-searches__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.jackpot-winner__body__trending-searches__item {
  position: relative;
  cursor: pointer;
  display: flex;
  flex: 1;
  align-items: center;
  background: #d9d9d91a;
  padding: 16px 68px;
  border-radius: 8px;
}

.jackpot-winner__body__trending-searches__item__content {
  display: flex;
  flex-direction: row;
  gap: 28px;
  width: 100%;

  & > img {
    width: 78px;
    height: 48px;
  }
}

.jackpot-winner__body__trending-searches__item__content__text {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;

  gap: 12px;
}

.jackpot-winner__body__trending-searches__item__content__text__name {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.jackpot-winner__body__trending-searches__item__content__text__player-count {
  font-size: 14px;
  font-weight: 700;
  color: #fff0a4;
}

.jackpot-winner__body__trending-searches__item__content__total-win {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: #00000066;
  padding: 10px 40px;
  border-radius: 50px;
}

.jackpot-winner__body__trending-searches__item__content__total-win__amount {
  font-size: 18px;
  font-weight: 900;
  background: linear-gradient(180deg, #ffcb47 0%, #fff0a4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.jackpot-winner__body__the-ten-million-club__content {
  display: flex;
  position: relative;
  gap: 16px;
}

.jackpot-winner__body__the-ten-million-club__item {
  cursor: pointer;
  overflow: hidden;
  display: flex;
  gap: 11px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 352px;
  height: 280px;
  border-top-right-radius: 12px;
  border-top-left-radius: 12px;
  margin-top: 104px;
}

.jackpot-winner__body__the-ten-million-club__item__crown {
  position: absolute;
  top: 0;
  z-index: 999;
  width: 67px;
  height: 36px;
  object-fit: fill;
}

.jackpot-winner__body__the-ten-million-club__item__circle-frame {
  position: absolute;
  top: 0;
  width: 140px;
  height: 152px;
  object-fit: fill;
}

.jackpot-winner__body__the-ten-million-club__item__image {
  position: absolute;
  top: 26px;
  width: 128px;
  height: 121.59px;
  border-radius: 100%;
}

.jackpot-winner__body__the-ten-million-club__item__jackpot {
  font-weight: 700;
  font-size: 24px;
  color: #ffffff;
}

.jackpot-winner__body__the-ten-million-club__item__details {
  background: #101b3a;
  padding: 12px 67px;
  width: 45%;
  box-shadow: 0px 6px 8px 0px #00000099 inset, 0px 1px 0px 0px #4073af inset;
  border-radius: 25px;
  text-align: center;
}

.jackpot-winner__body__the-ten-million-club__item__details__amount {
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(180deg, #ffcb47 0%, #fff0a4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

.jackpot-winner__body__the-ten-million-club__item__details__winner,
.jackpot-winner__body__the-ten-million-club__item__details__bet {
  display: flex;
  flex-direction: row;
  gap: 8px;
  width: 60%;
}

.jackpot-winner__body__the-ten-million-club__item__details__winner__label,
.jackpot-winner__body__the-ten-million-club__item__details__bet__label {
  flex: 1;
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
}

.jackpot-winner__body__the-ten-million-club__item__details__winner__value,
.jackpot-winner__body__the-ten-million-club__item__details__bet__value {
  font-size: 16px;
  font-weight: 400;
  color: #fff0a4;
}

.jackpot-winner__jackpot-pool__container {
  padding: 2px;
  border-radius: 1rem;
  background: linear-gradient(
    180deg,
    rgba(128, 255, 189, 0.4) 0%,
    rgba(255, 255, 255, 0.4) 53%,
    rgba(112, 255, 231, 0.4) 100%
  );
  box-shadow: 0px 11px 19.1px 0px rgba(0, 0, 0, 0.2509803922);
}

.jackpot-winner__jackpot-pool__content {
  height: 191px;
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  padding: 3.265625rem 12.375rem;
  background-color: #0a2f3f;
  background-size: 100% 100% !important;
  background-position: center, 55.33% 162.9%, 50.14% -2.58%;
  background-repeat: no-repeat !important;
  box-shadow: 0px 7px 27.1px 0px rgba(62, 99, 210, 0.4) inset;
}

.jackpot-winner__jackpot-pool__content-title {
  font-size: 2.25rem;
  font-weight: 900;
  background: linear-gradient(180deg, #80ffbd 0%, #70ffe7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  text-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
  margin: 0;
}

.jackpot-winner__jackpot-pool__content-amount-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  gap: 2rem;
  margin-bottom: 0.5rem;
}

.jackpot-winner__jackpot-pool__content-amount {
  font-size: 2.75rem;
  font-weight: 700;
  background: linear-gradient(180deg, #ffd700 0%, #ffa500 100%),
    linear-gradient(180deg, #ffcb47 0%, #fff0a4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

.jackpot-winner__jackpot-pool__content-subtitle {
  font-size: 1rem;
  color: #ffffff;
  text-align: center;
  opacity: 0.9;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
}

.jackpot-winner__jackpot-pool__content-highlight {
  background: linear-gradient(180deg, #ffd700 0%, #ffa500 100%),
    linear-gradient(180deg, #ffcb47 0%, #fff0a4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.jackpot-winner__jackpot-pool__content-left-laurel {
  width: 8rem;
  height: 8rem;
  transform: scaleX(-1);
  position: absolute;
  left: -10rem;
  top: -2rem;
}

.jackpot-winner__jackpot-pool__content-right-laurel {
  width: 8rem;
  height: 8rem;
  position: absolute;
  right: -10rem;
  top: -2rem;
}

.jackpot-winner__body__popular-games {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  flex-wrap: nowrap;
}

.jackpot-winner__popular-games__actions {
  display: flex;
  align-items: center;
  gap: 0;
}

.jackpot-winner__popular-games__scroll-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: none;
  background-color: #ffffff1a;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.2s;
}

.jackpot-winner__popular-games__scroll-btn:hover {
  background-color: #ffffff1a;
  opacity: 0.9;
}

.jackpot-winner__popular-games__scroll-btn--left {
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}

.jackpot-winner__popular-games__scroll-btn__icon--left {
  transform: rotate(90deg);
  width: 17px;
}

.jackpot-winner__popular-games__scroll-btn--right {
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}

.jackpot-winner__popular-games__scroll-btn__icon--right {
  transform: rotate(-90deg);
  width: 17px;
}

.jackpot-winner__body__popular-games__content {
  width: 100%;
  display: flex;
  height: 100%;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  scroll-behavior: smooth;
  flex-direction: row;
  flex-wrap: nowrap;
  padding-bottom: 20px;
}

.jackpot-winner__body__popular-games__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  border-radius: 8px;
  background: #ffffff1a;
  transition: background 0.2s;
}

.jackpot-winner__body__popular-games__item:hover {
  background: #ffffff26;
}

.jackpot-winner__body__popular-games__item__image {
  width: 193.39px;
  height: 246px;
  background: #00000033;
}

.jackpot-winner__body__popular-games__item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jackpot-winner__body__popular-games__item__title {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  padding: 8px;
  text-align: center;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news__nav .news__nav__link {
  color: inherit;
  text-decoration: none;
  display: block;
}

.news__nav-item.jackpot-winner.active {
  display: block;
}
