/* --- Shimmer Skeleton Widths for Casino Cards --- */
.shimmer-skeleton-wide {
  width: 392px;
  height: 320px;
  border-radius: 16px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  margin-bottom: 8px;
}
.shimmer-skeleton-narrow {
  width: 325px;
  height: 320px;
  border-radius: 16px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  margin-bottom: 8px;
}
/* --- Casino Card Big/Small Layout --- */
.casino-game-card.big {
  width: 320px;
  min-width: 260px;
  max-width: 360px;
  min-height: 340px;
  font-size: 1.1em;
}
.casino-game-card.small {
  width: 160px;
  min-width: 120px;
  max-width: 180px;
  min-height: 220px;
  font-size: 0.95em;
}
@media (max-width: 900px) {
  .casino-game-card.big {
    width: 60vw;
    min-width: 180px;
    max-width: 90vw;
  }
  .casino-game-card.small {
    width: 32vw;
    min-width: 90px;
    max-width: 40vw;
  }
}
@media (max-width: 600px) {
  .casino-game-card.big {
    width: 98vw;
    min-width: 120px;
    max-width: 100vw;
  }
  .casino-game-card.small {
    width: 48vw;
    min-width: 60px;
    max-width: 60vw;
  }
}
/* --- Casino Games Section --- */
.casino-games-skeleton {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 16px;
}
.casino-game-card.skeleton {
  width: 220px;
  height: 320px;
  border-radius: 16px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  margin-bottom: 8px;
}
.casino-games-grid {
  display: flex;
  flex-wrap: wrap;
  width: stretch;
  gap: 16px;
}
.casino-game-card {
  width: 220px;
  min-height: 320px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
  position: relative;
}
.casino-game-card:hover {
  box-shadow: 0 6px 24px rgba(65, 4, 152, 0.13);
  transform: translateY(-2px) scale(1.03);
}
.casino-game-image-wrapper {
  width: 100%;
  height: 140px;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.casino-game-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.casino-game-info {
  padding: 16px 14px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.casino-game-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 2px;
  font-family: var(--font-family);
}
.casino-game-provider {
  font-size: 13px;
  color: #888;
  font-family: var(--font-family);
}
.casino-game-description {
  font-size: 14px;
  color: #444;
  margin-bottom: 8px;
  font-family: var(--font-family);
  min-height: 32px;
}
.casino-game-play-btn {
  display: inline-block;
  background: var(--neon-green);
  color: #222;
  font-weight: 700;
  font-size: 15px;
  padding: 8px 18px;
  border-radius: 100px;
  text-decoration: none;
  margin-top: 8px;
  transition:
    background 0.2s,
    color 0.2s;
  font-family: var(--font-family);
}
.casino-game-play-btn:hover {
  background: var(--purple);
  color: #fff;
}
@media (max-width: 900px) {
  .casino-games-grid,
  .casino-games-skeleton {
    gap: 12px;
  }
  .casino-game-card,
  .casino-game-card.skeleton {
    width: 46vw;
    min-width: 160px;
    max-width: 220px;
  }
}
@media (max-width: 600px) {
  .casino-games-grid,
  .casino-games-skeleton {
    gap: 8px;
  }
  .casino-game-card,
  .casino-game-card.skeleton {
    width: 98vw;
    min-width: 140px;
    max-width: 100vw;
  }
}
/* --- Casino Game Badges (pill style) --- */
.casino-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
  background: var(--neon-green);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  pointer-events: none;
  text-transform: uppercase;
}
.badge-featured {
  background: linear-gradient(90deg, var(--neon-green) 0%, var(--neon-green-darker) 100%);
  border-color: #ffe082;
  color: #222;
}
.badge-popular {
  background: linear-gradient(90deg, var(--dark-purple) 0%, var(--purple) 100%);
  border-color: #b3e5fc;
  color: #fff;
}
/* --- Homepage --- */
.homepage {
  background-color: var(--white);
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  overflow-y: auto;
}

.homepage .overlap-group-wrapper {
  background-color: var(--white);
  overflow-y: auto;
  width: 100%;
}

.homepage .overlap-group {
  /* position: relative; */
  height: 100vh;
  overflow-y: auto;
}

.homepage .overlap-group-faq {
  position: relative;
  /* height: 100vh; */
  overflow-y: auto;
}

.homepage .rectangle {
  position: absolute;
  width: 100%;
  height: 620px;
  top: 0;
  left: 0;
  /* background-color: #c8ff00; */
  background: url("/assets/images/hero/background1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  /* background-size: 55% 90%; */
  /* background-color: #c8ff00; */
  background-position: bottom;
}

.homepage .frame {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow-y: auto;
  /* max-width: 1400px; */
  align-items: flex-start;
  gap: 64px;
  position: absolute;
  /* top: 0;
  left: 50%;
  transform: translateX(-50%); */
  /* padding: 0 20px; */
  box-sizing: border-box;
}

.header-components {
  display: inline-flex;
  /* height: 48px; */
  /* align-items: center; */
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  position: relative;
  flex: 0 0 auto;
  background-color: #ffffff33;
  border-radius: 60px;
  border: 2px solid;
  border-color: var(--purple);
  color: var(--purple);
}

.header-components-2 {
  display: inline-flex;
  /* height: 48px; */
  align-items: center;
  justify-content: center;
  cursor: pointer;
  gap: 8px;
  padding: 8px 16px;
  position: relative;
  flex: 0 0 auto;
  background-color: #ffffff33;
  border-radius: 60px;
  border: 2px solid;
  border-color: var(--purple);
}

.header-components-2:hover {
  background-color: var(--purple);
  color: var(--white);
}

.icon-wallet-wallet {
  position: relative;
  width: 20px;
  height: 20px;
}

.link-wallet {
  color: var(--purple);
  font-size: 14px;
  text-align: center;
  position: relative;
  width: fit-content;
  font-family: var(--font-family);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
}

/*.text-wrapper-wallet {
  color: var(--purple);
  font-size: 16px;
  text-align: center;
  position: relative;
  width: fit-content;
  font-family: var(--font-family);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
}*/

.overlap-group-wallet {
  position: relative;
  width: 20px;
  height: 20px;
  background-color: var(--white);
  border-radius: 10px;
}

.text-wrapper-2-wallet {
  position: absolute;
  height: 14px;
  top: 3px;
  left: 3px;
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--purple);
  font-size: 12px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.close {
  position: relative;
  width: 22px;
  height: 20px;
  margin-right: -2px;
}

.frame-wallet {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
}

@media (max-width: 900px) {
  .homepage .frame {
    max-width: 100%;
    overflow: clip;
  }
}

.homepage .div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 100%;
  flex: 0 0 auto;
}

.homepage .div-2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.homepage .top {
  display: flex;
  column-gap: 25px;
  position: relative;
  height: 64px;
  justify-content: space-between;
  width: 100%;
  /* background: linear-gradient(to bottom, rgb(216 243 173), rgba(0, 0, 0, 0)); */
  /* background: linear-gradient(#f4ffe0d9, rgb(216 243 173 / 81%), rgba(0, 0, 0, 0)); */
  background: linear-gradient(
    rgba(200, 255, 0, 0.8),
    rgba(200, 255, 0, 0.5),
    rgba(200, 255, 0, 0)
  );
  padding: 0 24px;
}

.logo-image {
  height: 38px;
  width: 100px;
  justify-content: center;
}

@media (max-width: 480px) {
  .logo-image {
    height: 34px;
    width: 88px;
  }

  .homepage .div-2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    align-self: stretch;
    width: 100%;
    height: 100%;
    min-height: 448px;
    flex: 0 0 auto;
  }
}

@media (max-width: 768px) {
  .homepage .top {
    display: flex;
    row-gap: 100px;
    /* column-gap: 100px; */
    padding: 16px;
    height: fit-content;
    justify-content: space-between;
    /* flex-direction: column;
    align-items: center;
    padding: 0px 0px 0px; */
  }
}

.homepage .frame-wrapper {
  display: flex;
  position: relative;
  /* overflow-x: auto; */
}

@media (max-width: 768px) {
  .homepage .frame-wrapper {
    width: 100%;
    justify-content: center;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .homepage .frame-wrapper {
    gap: 10px;
  }
}

.homepage .frame-2 {
  display: inline-flex;
  gap: 24px;
  position: relative;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.homepage .frame-2::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Edge */
}

@media (max-width: 768px) {
  .homepage .frame-2 {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .homepage .frame-2 {
    gap: 8px;
  }
}

.homepage .frame-3 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  flex: 0 0 auto;
  cursor: pointer;
  transition: transform 0.2s;
}

@media (max-width: 768px) {
  .homepage .frame-3 {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .homepage .frame-3 {
    gap: 10px;
  }

  .homepage .text-wrapper {
    font-size: 14px;
  }
}

.homepage .frame-3:hover {
  transform: translateY(-2px);
}

.homepage .frame-3:hover .text-wrapper {
  color: var(--purple);
}

.homepage .rectangle-2 {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 6px;
  background-color: var(--purple);
}

.homepage .text-wrapper {
  align-self: stretch;
  font-weight: 500;
  color: var(--dark);
  font-size: 18px;
  position: relative;
  font-family: var(--font-family);
  letter-spacing: 0;
  line-height: normal;
  transition: color 0.3s;
}

.homepage .rectangle-3 {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 6px;
  background-color: var(--purple);
  opacity: 0;
  transition: opacity 0.3s;
}

.homepage .frame-3:hover .rectangle-3 {
  opacity: 1;
}

.homepage .frame-4 {
  display: flex;
  align-items: center;
  /* justify-content: flex-end; */
  gap: 10px;
  /* padding: 24px 0px 0px; */
  position: relative;
}

.homepage .secondary-cta {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 20px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 100px;
  border: 3px solid;
  border-color: var(--purple);
  cursor: pointer;
  transition:
    background-color 0.3s,
    color 0.3s;
}

.homepage .secondary-cta:hover {
  background-color: var(--purple);
  color: var(--white);
}

.homepage .secondary-cta:hover .text-wrapper-2 {
  color: var(--white);
}

@media (max-width: 480px) {
  .homepage .secondary-cta {
    all: unset;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 20px;
    position: relative;
    flex: 0 0 auto;
    border-radius: 100px;
    border: 2px solid;
    border-color: var(--purple);
    cursor: pointer;
    transition:
      background-color 0.3s,
      color 0.3s;
  }

  .header-components {
    display: inline-flex;
    height: 34px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 5px 16px;
    position: relative;
    flex: 0 0 auto;
    background-color: #ffffff33;
    border-radius: 60px;
    border: 1px solid;
    border-color: var(--purple);
  }

  .header-components-2 {
    display: inline-flex;
    height: 34px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 5px 16px;
    position: relative;
    flex: 0 0 auto;
    background-color: #ffffff33;
    border-radius: 60px;
    border: 1px solid;
    border-color: var(--purple);
  }

  .icon-wallet-wallet {
    position: relative;
    width: 16px;
    height: 16px;
  }

  .link-wallet {
    font-size: 12px;
  }
}

.homepage .text-wrapper-2 {
  position: relative;
  width: fit-content;
  font-family: var(--font-family);
  font-weight: 700;
  color: var(--dark);
  font-size: 18px;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
  transition: color 0.3s;
}

@media (max-width: 480px) {
  .homepage .text-wrapper-2 {
    position: relative;
    width: fit-content;
    font-family: var(--font-family);
    font-weight: 500;
    color: var(--dark);
    font-size: 12px;
    letter-spacing: 0;
    line-height: normal;
    white-space: nowrap;
    transition: color 0.3s;
  }
}

.homepage .hero-stage {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 555px;
  /* align-items: flex-start; */
  justify-content: flex-end;
  gap: 30px;
  padding: 0 0 40px 24px;
  position: relative;
}

@media (max-width: 768px) {
  .homepage .hero-stage {
    height: 340px;
    padding: 40px 16px 16px 16px;
    /* font-weight: 600; */
  }
  .homepage .rectangle {
    height: 440px;
  }
}

@media (max-width: 480px) {
  .homepage .hero-stage {
    height: 300px;
    /* padding: 150px 20px 10px 20px; */
  }
}

.homepage .frame-5 {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 750px;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 12px;
  position: relative;
  flex: 0 0 auto;
  opacity: 1;
}

@media (max-width: 768px) {
  .homepage .frame-5 {
    max-width: 100%;
  }
}

.homepage .text-contraster {
  position: absolute;
  width: 358px;
  height: 242px;
  top: 0;
  left: 0;
  background-color: var(--neon-green);
  filter: blur(57px);
  opacity: 0.8;
}

.homepage .heading {
  align-self: stretch;
  margin-bottom: 0px;
  font-weight: 500;
  font-size: 80px;
  line-height: 75px;
  position: relative;
  font-family: var(--font-family);
  color: var(--dark);
  letter-spacing: 0;
}

@media (max-width: 768px) {
  .homepage .heading {
    font-size: 32px;
    line-height: 32px;
  }
}

.homepage .heading-2 {
  align-self: stretch;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  position: relative;
  font-family: var(--font-family);
  color: var(--dark);
  letter-spacing: 0;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.homepage .hero-description {
  align-self: stretch;
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  position: relative;
  font-family: var(--font-family);
  color: var(--dark);
  letter-spacing: 0;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.homepage .frame-6 {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  position: relative;
  flex: 0 0 auto;
}

.homepage .cta-primary {
  padding-top: 12px;
  padding-right: 24px;
  padding-bottom: 11px;
  padding-left: 24px;
  gap: 10px;
  border-radius: 15px;
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 4px;
  border-left-width: 2px;
  border-width: 2px, 2px, 4px, 2px;
  border-style: solid;
  border-color: #410498;
  color: var(--purple);
  background-color: var(--purple);
  transition: #ffffff 0.3s ease;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  text-align: center;
}

/* Banner Shimmer Loader */
.banner-shimmer {
  padding: 20px 0;
  position: relative;
}

.shimmer-hero {
  background: transparent;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 20px;
  position: relative;
  /* width: min-content; */
  overflow: hidden;
}

@media (max-width: 768px) {
  .shimmer-heading {
    height: 150px;
  }
}

.shimmer-banner-slider {
  background: #f5f5f5;
  /* border-radius: 12px; */
  height: 200px;
  width: 260px;
  position: relative;
  overflow: hidden;
}

.shimmer-line {
  height: 24px;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.08) 50%,
    rgba(0, 0, 0, 0.05) 100%
  );
  background-size: 200% 100%;
  border-radius: 8px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.shimmer-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.6) 50%,
    transparent 100%
  );
  animation: shimmer 1.5s infinite;
}

.shimmer-heading {
  height: 200px;
}

.shimmer-subheading {
  height: 50px;
  max-width: 450px;
  opacity: 0.7;
}

.shimmer-cta {
  display: flex;
  gap: 16px;
  width: min-content;
  margin-top: 24px;
}

.shimmer-button {
  width: 125px;
  height: 50px;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.shimmer-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.8) 50%,
    transparent 100%
  );
  animation: shimmer 1.5s infinite;
}

.shimmer-timer {
  width: 110px;
  height: 28px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.05);
  margin-top: 12px;
  position: relative;
  overflow: hidden;
}

.shimmer-timer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.8) 50%,
    transparent 100%
  );
  animation: shimmer 1.5s infinite;
}

.shimmer-banner-item {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.08) 50%,
    rgba(0, 0, 0, 0.05) 100%
  );
  background-size: 200% 100%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.shimmer-banner-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.8) 50%,
    transparent 100%
  );
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

/* Add smooth transition for when content loads */
#heroStage,
#bannerSection {
  transition: opacity 0.3s ease-in-out;
}

/* Hide shimmer when content is loaded */
.content-loaded .banner-shimmer {
  display: none;
}

.content-loaded #heroStage,
.content-loaded #bannerSection {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  margin-top: -2px;
  margin-bottom: -2px;
  margin-left: -2px;
  background-color: var(--purple);
  border-radius: 15px;
  border-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-color: #410498;
  position: relative;
  flex: 0 0 auto;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
} */

.homepage .cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(65, 4, 152, 0.3);
}

.homepage .select-bet {
  position: relative;
  width: fit-content;
  margin-top: -2px;
  font-family: var(--font-family);
  font-weight: 700;
  color: var(--white);
  font-size: 20px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
}

.homepage .heading-3 {
  width: fit-content;
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  white-space: nowrap;
  position: relative;
  font-family: var(--font-family);
  color: var(--dark);
  letter-spacing: 0;
}

.homepage .frame-7 {
  display: flex;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 100px;
  flex: 0 0 auto;
  border-top-width: 1px;
  border-top-style: solid;
  border-color: #04020f33;
  overflow-x: auto;
  overflow-y: hidden;
  transition: transform 0.5s ease;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.homepage .frame-7::-webkit-scrollbar {
  display: none;
}

@media (max-width: 768px) {
  .homepage .frame-7 {
    overflow-x: auto;
    /* top: 179px; */
    width: 100%;
    background-color: var(--white);
  }
}

@media (max-width: 480px) {
  .homepage .frame-7 {
    overflow-x: auto;
    /* top: 179px; */
    width: 100vw;
    background-color: var(--white);
    height: 84px;
  }

  .homepage .frame-8 {
    padding: 8px 8px !important;
    width: 230px !important;
  }

  .homepage .select-bet {
    font-size: 16px;
  }

  .homepage .cta-primary {
    padding-right: 16px;
    padding-left: 16px;
  }

  .homepage .heading-3 {
    font-size: 16px;
  }
}

.homepage .frame-7::-webkit-scrollbar {
  width: 0;
  display: none;
}

.homepage .frame-8 {
  display: flex;
  flex-direction: column;
  width: 260px;
  height: 100%;
  /* align-items: flex-start; */
  justify-content: flex-start;
  gap: 8px;
  padding: 16px 10px;
  position: relative;
  /* align-self: stretch; */
  background-color: var(--neon-green);
  border-right-width: 1px;
  border-right-style: solid;
  border-color: #04020f33;
  /* opacity: 0.8; */
  cursor: pointer;
  transition: background-color 0.3s;
}

.homepage .frame-8:hover {
  background-color: rgba(200, 255, 0, 0.6);
}

.homepage .heading-4 {
  align-self: stretch;
  font-weight: 600;
  font-size: 18px;
  line-height: 20px;
  position: relative;
  font-family: var(--font-family);
  color: var(--dark);
  letter-spacing: 0;
  line-height: 22px;
}

.homepage .frame-9 {
  display: flex;
  flex-direction: column;
  width: 260px;
  align-items: flex-start;
  gap: 8px;
  padding: 20px 10px;
  position: relative;
  align-self: stretch;
  background-color: var(--ligh-grey);
  border-right-width: 1px;
  border-right-style: solid;
  border-color: #04020f33;
  opacity: 0.8;
  cursor: pointer;
  transition: background-color 0.3s;
}

.homepage .frame-9:hover {
  background-color: rgba(200, 255, 0, 0.6);
}

.homepage .growl-message {
  display: flex;
  flex-direction: column;
  width: 420px;
  height: 100px;
  align-items: center;
  justify-content: space-around;
  gap: 56px;
  padding: 10px 15px;
  position: relative;
  background-color: var(--neon-green);
  border-radius: 16px;
  border: 1px solid;
  border-color: #e5e7e6;
}

.homepage .growl-message-bet {
  display: flex;
  flex-direction: column;
  width: 420px;
  height: 100px;
  align-items: center;
  justify-content: space-around;
  gap: 56px;
  padding: 10px 15px;
  position: relative;
  background-color: #f3f6f6;
  border-radius: 16px;
  border: 1px solid;
  border-color: #e5e7e6;
}

.homepage .frame-10 {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.homepage .frame-11 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  flex: 0 0 auto;
  padding-right: 16px;
}

.homepage .growl-curvback {
  padding: 0 !important;
  gap: 8px !important;
}

.homepage .normal {
  color: var(--purple);
  font-size: 14px;
  line-height: 18px;
  position: relative;
  width: fit-content;
  font-family: var(--font-family);
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
}

.homepage .normal-bet {
  color: #66736b;
  font-size: 16px;
  line-height: 18px;
  position: relative;
  width: fit-content;
  font-family: var(--font-family);
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
}

.homepage .normal-2 {
  color: var(--dark);
  font-size: 24px;
  line-height: 24px;
  position: relative;
  width: fit-content;
  font-family: var(--font-family);
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
}

.homepage .normal-2-bet {
  color: var(--dark);
  font-size: 18px;
  line-height: 24px;
  position: relative;
  width: fit-content;
  font-family: var(--font-family);
  font-weight: 500;
  letter-spacing: 0;
  white-space: wrap;
  width: 250px;
}

.homepage .cta-icon {
  display: inline-flex;
  height: 30px;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 16px;
  border: 2px solid;
  border-color: var(--purple);
  position: relative;
  flex: 0 0 auto;
  cursor: pointer;
  transition: background-color 0.3s;
}

.homepage .cta-icon:hover {
  background-color: var(--purple);
}

.homepage .cta-icon:hover .get-more-coins {
  color: var(--white);
}

.homepage .icon-plus-plus {
  position: relative;
  width: 10px;
  height: 10px;
  background-image: url(/assets/icons/ui/plus.svg);
  background-size: 100% 100%;
}

.homepage .growl-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 108px;
  padding-inline: 16px;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  overflow-x: scroll;
}

.homepage .get-more-coins {
  position: relative;
  width: fit-content;
  font-family: var(--font-family);
  font-weight: 900;
  color: var(--dark);
  font-size: 14px;
  text-align: center;
  letter-spacing: 0;
  line-height: 12px;
  white-space: nowrap;
  transition: color 0.3s;
}

.homepage .frame-12 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding-inline: 42px;
  padding-bottom: 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  max-width: 820px;
  flex: 0 0 auto;
}

.homepage .h2 {
  position: relative;
  align-self: stretch;
  font-family: var(--font-family);
  font-weight: 500;
  color: var(--purple);
  font-size: 24px;
  letter-spacing: 0;
  line-height: normal;
  padding: 16px 0 8px 0;
  margin: 0;
}

.homepage .here-s-a-fun-place {
  position: relative;
  align-self: stretch;
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--dark);
  font-size: 16px;
  letter-spacing: 0;
  line-height: normal;
}

.homepage .span {
  font-family: var(--font-family);
  font-weight: 400;
  color: #04020f;
  font-size: 18px;
  letter-spacing: 0;
}

.homepage .text-wrapper-3-wallet {
  font-weight: 600;
  font-size: 18px;
}

.text-wrapper-3 {
  position: absolute;
  height: 17px;
  top: 25px;
  left: 10px;
  font-family: var(--font-family);
  font-weight: 600;
  color: var(--purple);
  font-size: 14px;
  text-align: center;
  letter-spacing: 0px;
  line-height: normal;
}

.homepage .frame-13 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding-inline: 36px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.homepage .magazine-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding-inline: 42px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.homepage .magazine-block-home {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  overflow-y: auto;
}

.homepage .frame-14 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.homepage .div-wrapper {
  display: flex;
  width: 390px;
  align-items: center;
  gap: 10px;
  padding: 0px 16px 0px 0px;
  position: relative;
  flex: 0 0 auto;
}

.homepage .frame-15 {
  height: 47px;
  align-items: center;
  gap: 10px;
  padding: 10px 0px 10px 16px;
  flex: 1;
  flex-grow: 1;
  border-radius: 30px 0px 30px 0px;
  display: flex;
  position: relative;
}

.homepage .layer {
  width: 300px;
  left: -3px;
  position: absolute;
  height: 65px;
  top: -12px;
}

.homepage .image {
  position: relative;
  width: 40px;
  height: 40px;
  margin-top: -1.5px;
  margin-bottom: -1.5px;
  object-fit: cover;
}

.homepage .text-wrapper-4 {
  position: relative;
  width: fit-content;
  margin-top: -6.5px;
  margin-bottom: -4.5px;
  font-family: var(--font-family);
  font-weight: 700;
  color: var(--neon-green);
  font-size: 24px;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.homepage .text-wrapper-4 a {
  font-family: var(--font-family);
  font-weight: 700;
  color: var(--neon-green);
  font-size: 32px;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
}

.homepage .frame-16 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.homepage .text-wrapper-5-wallet {
  position: relative;
  flex: 1;
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--grey);
  font-size: 16px;
  letter-spacing: 0;
  line-height: normal;
}

.homepage .frame-17 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 9px;
  border: 2px solid;
  border-color: var(--neon-green);
  backdrop-filter: blur(13.59px) brightness(100%);
  -webkit-backdrop-filter: blur(13.59px) brightness(100%);
  cursor: pointer;
  transition: background-color 0.3s;
}

.homepage .frame-17:hover {
  background-color: rgba(200, 255, 0, 0.3);
}

.homepage .group {
  position: relative;
  width: 70px;
  height: 17px;
}

.homepage .element {
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--dark);
  font-size: 14px;
  letter-spacing: 0;
  line-height: normal;
}

.homepage .img {
  position: relative;
  width: 9.99px;
  height: 5.74px;
  margin-right: -0.75px;
}

.homepage .frame-18 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  overflow-y: auto;
}

.homepage .frame-19 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.homepage .frame-20 {
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 16px;
  display: flex;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

@media (max-width: 768px) {
  .homepage .frame-20 {
    justify-content: center;
    gap: 8px 8px;
  }
}

.homepage .frame-21 {
  flex-direction: column;
  width: 668px !important;
  height: 280px;
  align-items: flex-end;
  justify-content: space-between;
  padding: 8px 16px 16px 8px;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(4, 2, 15, 0.1) 0%, rgba(4, 2, 15, 0.7) 100%),
    url(/assets/images/backgrounds/bet-primary.webp) 50% 50% / cover;
  display: flex;
  position: relative;
  cursor: pointer;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

@media (max-width: 768px) {
  .homepage .frame-21 {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .homepage .frame-21 {
    height: 160px;
  }

  .homepage .magazine-block-home {
    padding: 0 16px 0 16px;
  }

  .homepage .growl-message-bet {
    width: 342px;
  }
}

.homepage .frame-21:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.homepage .frame-22 {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 6px;
  position: relative;
  flex: 0 0 auto;
}

.homepage .odds-wrapper {
  display: inline-flex;
  height: 24px;
  align-items: center;
  gap: 8px;
  padding: 4px 8px;
  position: relative;
  flex: 0 0 auto;
  background-color: var(--medium-grey);
  border-radius: 16px;
}

.homepage .odds {
  position: relative;
  width: fit-content;
  font-family: var(--font-family);
  font-weight: 400;
  color: transparent;
  font-size: 12px;
  text-align: center;
  letter-spacing: 0;
  line-height: 12px;
}

.homepage .text-wrapper-6 {
  color: #04020f;
}

.homepage .frame-23 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px;
  position: relative;
  flex: 0 0 auto;
  background-color: var(--neon-green);
  border-radius: 16px;
}

.homepage .text-wrapper-7 {
  position: relative;
  width: fit-content;
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--dark);
  font-size: 12px;
  text-align: center;
  letter-spacing: 0;
  line-height: 18px;
  white-space: nowrap;
}

.homepage .text-wrapper-8 {
  position: relative;
  align-self: stretch;
  font-family: var(--font-family);
  font-weight: 700;
  color: var(--white);
  font-size: 16px;
  letter-spacing: 0;
  line-height: normal;
}

.homepage .frame-24 {
  display: flex;
  flex-direction: column;
  width: 325px;
  height: 280px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 8px 8px 16px;
  position: relative;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(4, 2, 15, 0.1) 0%, rgba(4, 2, 15, 0.7) 100%),
    url(/assets/images/backgrounds/bet-secondary.webp) 50% 50% / cover;
  cursor: pointer;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

@media (max-width: 768px) {
  .homepage .frame-24 {
    width: calc(50% - 16px);
    min-width: 150px;
  }
}

@media (max-width: 480px) {
  .homepage .frame-24 {
    width: calc(51% - 8px);
    height: 160px;
  }

  .homepage .frame-12 {
    padding-inline: 16px;
    padding-bottom: 0px;
  }

  .homepage .frame-13 {
    padding-inline: 16px;
  }

  .homepage .magazine-section {
    padding-inline: 0px;
  }

  .homepage .magazine-headline {
    padding: 0 16px;
  }

  .container {
    padding-inline: 16px;
  }

  .homepage .heading-4 {
    align-self: stretch;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    font-family: var(--font-family);
    color: var(--dark);
    letter-spacing: 0;
    line-height: 18px;
  }

  .homepage .heading-2 {
    align-self: stretch;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    position: relative;
    font-family: var(--font-family);
    color: var(--dark);
    letter-spacing: 0;
  }

  .homepage .hero-description {
    align-self: stretch;
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    position: relative;
    font-family: var(--font-family);
    color: var(--dark);
    letter-spacing: 0;
  }
}

.homepage .frame-24:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Popular-predictions dynamic cards — rendered from /api/predictions/events/popular.
   The anchor inherits the .frame-21 / .frame-24 look so CSS stays DRY; we just
   strip the default link affordances so the card still reads as a tile. */
.homepage a.frame-21,
.homepage a.frame-24 {
  text-decoration: none;
  color: inherit;
}

.homepage a.frame-21:focus-visible,
.homepage a.frame-24:focus-visible {
  outline: 2px solid var(--neon-green);
  outline-offset: 3px;
}

/* Popular predictions flip tiles (JS renders div.ab-flip instead of anchor) */
.homepage .frame-21.ab-flip,
.homepage .frame-24.ab-flip {
  background: transparent;
  box-shadow: none;
  text-decoration: none;
  color: inherit;
  padding: 0;
  overflow: visible;
  display: block;
  position: relative;
}

.homepage .frame-21.ab-flip:hover,
.homepage .frame-24.ab-flip:hover {
  transform: none;
}

.homepage .frame-21.ab-flip .ab-flip-inner,
.homepage .frame-24.ab-flip .ab-flip-inner {
  height: 100%;
  min-height: 100%;
}

.homepage .frame-21.ab-flip .ab-flip-face.ab-flip-front {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  padding: 8px 16px 16px 8px;
}

.homepage .frame-24.ab-flip .ab-flip-face.ab-flip-front {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px 8px 16px;
}

.homepage .frame-21.ab-flip:focus-visible,
.homepage .frame-24.ab-flip:focus-visible {
  outline: 2px solid var(--neon-green);
  outline-offset: 3px;
  border-radius: 10px;
}

/* Skeleton shimmer while Polymarket payload is in flight. Reuses the card
   shell's dimensions so the layout doesn't jump when real content arrives. */
.homepage .prediction-card-skeleton {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.12) 50%, rgba(255, 255, 255, 0.04) 100%),
    linear-gradient(180deg, rgba(4, 2, 15, 0.4) 0%, rgba(4, 2, 15, 0.8) 100%);
  background-size: 400% 100%, 100% 100%;
  animation: predictionSkeletonShimmer 1.4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes predictionSkeletonShimmer {
  0% { background-position: 100% 0, 0 0; }
  100% { background-position: -100% 0, 0 0; }
}

/* Yes / No pill variants. Keep the existing .odds-wrapper geometry but recolour
   for the positive/negative sides so the card reads at a glance. */
.homepage .odds-wrapper.odds-yes {
  background-color: var(--neon-green);
}

.homepage .odds-wrapper.odds-yes .text-wrapper-6 {
  color: var(--dark);
  font-weight: 600;
}

.homepage .odds-wrapper.odds-no {
  background-color: rgba(255, 255, 255, 0.92);
}

.homepage .odds-wrapper.odds-no .text-wrapper-6 {
  color: var(--dark);
  font-weight: 600;
}

.homepage .frame-25 {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 5px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.homepage .liverpool-to-win {
  position: relative;
  width: fit-content;
  font-family: var(--font-family);
  font-weight: 700;
  color: var(--white);
  font-size: 16px;
  letter-spacing: 0;
  line-height: normal;
}

.homepage .frame-26 {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  position: relative;
  flex: 0 0 auto;
}

.homepage .link {
  font-weight: 600;
  color: var(--purple);
  line-height: 24px;
  position: relative;
  width: fit-content;
  font-family: var(--font-family);
  font-size: 16px;
  text-align: right;
  letter-spacing: 0;
  text-decoration: underline;
  white-space: nowrap;
  transition: color 0.3s;
}

.homepage .link:hover {
  color: #410498;
}

.homepage .arrow-icon {
  position: relative;
  width: 14px;
  height: 14px;
}

.homepage .vector-wrapper {
  position: relative;
  height: 14px;
  display: flex;
  align-items: center;
}

.homepage .vector {
  left: 2px;
  position: absolute;
  width: 11px;
  height: 9px;
  top: 2px;
}

.homepage .text-link-arrow {
  width: 20px;
  height: 20px;
}

.homepage .text-link-a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.homepage .text-link-a:hover {
  gap: 6px;
}

.homepage .frame-27 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  flex: 0 0 auto;
}

.homepage .magazine-headline {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  position: relative;
  flex: 0 0 auto;
}

.homepage .frame-28 {
  display: flex;
  height: 47px;
  align-items: center;
  gap: 10px;
  padding: 10px 0px 10px 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  border-radius: 30px 0px 30px 0px;
}

.homepage .layer-2 {
  width: 250px;
  left: -6px;
  position: absolute;
  height: 55px;
  top: -5px;
}

.homepage .frame-29 {
  display: flex;
  width: 470px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  flex: 0 0 auto;
}

.homepage .text-wrapper-9 {
  position: relative;
  flex: 1;
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--grey);
  font-size: 16px;
  letter-spacing: 0;
  line-height: normal;
}

.homepage .frame-30 {
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 16px 16px;
  display: flex;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

@media (max-width: 768px) {
  .homepage .frame-30 {
    justify-content: center;
  }
}

.homepage .frame-31 {
  width: 668px !important;
  height: 200px !important;
  align-items: center;
  justify-content: flex-end;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

@media (max-width: 768px) {
  .homepage .frame-31 {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .homepage .frame-31 {
    height: 160px;
    max-width: 343px;
  }

  .homepage .frame-32 {
    padding: 16px;
  }

  .homepage .frame-29 {
    width: auto;
  }
}

.homepage .frame-32 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding: 24px;
  position: relative;
  flex: 1;
  align-self: stretch;
  width: 100%;
  flex-grow: 1;
  border-radius: 10px;
  /* background:
    linear-gradient(0deg, rgba(4, 2, 15, 0.4) 0%, rgba(4, 2, 15, 0.4) 100%),
    url(/assets/images/backgrounds/blackjack.jpg) 50% 50% / cover; */
  cursor: pointer;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.homepage .frame-32:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.homepage .frame-32:hover .frame-33 {
  background-color: rgba(255, 255, 255, 0.2);
}

.homepage .text-wrapper-10 {
  position: relative;
  align-self: stretch;
  font-family: var(--font-family);
  font-weight: 700;
  color: var(--white);
  font-size: 24px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
}

.homepage .frame-33 {
  display: inline-flex;
  height: 24px;
  align-items: center;
  padding: 4px 12px;
  position: relative;
  border-radius: 16px;
  border: 1.5px solid;
  border-color: #ffffff;
  transition: background-color 0.3s;
}

.homepage .text-wrapper-11 {
  position: relative;
  width: fit-content;
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--white);
  font-size: 12px;
  text-align: center;
  letter-spacing: 0;
  line-height: 18px;
  white-space: nowrap;
}

.homepage .frame-34 {
  display: flex;
  flex-direction: column;
  width: 325px;
  height: 200px !important;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  position: relative;
}

@media (max-width: 768px) {
  .homepage .frame-34 {
    width: calc(50% - 16px);
    min-width: 150px;
  }
}

@media (max-width: 480px) {
  .homepage .frame-34 {
    width: calc(51% - 8px);
    height: 160px;
    max-width: 180px;
  }
}

.homepage .frame-35 {
  box-sizing: border-box;
  height: 200px !important;
  flex-direction: column;
  width: 325px;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding: 24px;
  border-radius: 10px;
  /* background:
    linear-gradient(0deg, rgba(4, 2, 15, 0.4) 0%, rgba(4, 2, 15, 0.4) 100%),
    url(/assets/images/backgrounds/roulette.webp) 50% 50% / cover; */
  display: flex;
  position: relative;
  cursor: pointer;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.homepage .frame-35:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.homepage .frame-35:hover .frame-36 {
  background-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 480px) {
  .homepage .frame-35 {
    width: 100%;
  }
}

.homepage .frame-36 {
  display: inline-flex;
  height: 24px;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  position: relative;
  border-radius: 16px;
  border: 1.5px solid;
  border-color: #ffffff;
  transition: background-color 0.3s;
}

.homepage .frame-37 {
  flex-direction: column;
  height: 200px;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding: 24px;
  align-self: stretch;
  width: 100%;
  border-radius: 10px;
  background:
    linear-gradient(0deg, rgba(4, 2, 15, 0.4) 0%, rgba(4, 2, 15, 0.4) 100%),
    url(/assets/images/backgrounds/roulette.webp) 50% 50% / cover;
  display: flex;
  position: relative;
  cursor: pointer;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.homepage .frame-37:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.homepage .frame-37:hover .frame-36 {
  background-color: rgba(255, 255, 255, 0.2);
}

.homepage .frame-38 {
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding: 24px;
  flex: 1;
  align-self: stretch;
  width: 100%;
  flex-grow: 1;
  border-radius: 10px;
  background:
    linear-gradient(0deg, rgba(4, 2, 15, 0.4) 0%, rgba(4, 2, 15, 0.4) 100%),
    url(/assets/images/backgrounds/roulette.webp) 50% 50% / cover;
  display: flex;
  position: relative;
  cursor: pointer;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.homepage .frame-38:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.homepage .frame-38:hover .frame-36 {
  background-color: rgba(255, 255, 255, 0.2);
}

.homepage .layer-3 {
  width: 240px;
  left: -6px;
  position: absolute;
  height: 55px;
  top: -5px;
}

.homepage .frame-39 {
  align-items: flex-start;
  gap: 18px;
  padding: 15px 15px;
  display: flex;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.homepage .frame-39::-webkit-scrollbar {
  display: none;
}

@media (max-width: 768px) {
  .homepage .frame-39 {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.homepage .frame-40 {
  width: 220px !important;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

@media (max-width: 768px) {
  .homepage .frame-40 {
    width: calc(50% - 16px);
    min-width: 230px;
  }
}

@media (max-width: 480px) {
  .homepage .frame-40 {
    width: 100%;
  }

  .homepage .frame-45 {
    padding: 0 16px 0 16px;
  }
}

.homepage .frame-41 {
  flex-direction: column;
  height: 120px;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 8px;
  padding: 16px;
  align-self: stretch;
  width: 100%;
  border-radius: 10px;
  background:
    linear-gradient(0deg, rgba(4, 2, 15, 0.4) 0%, rgba(4, 2, 15, 0.4) 100%),
    url(/assets/images/backgrounds/magazine.webp) 50% 50% / cover;
  display: flex;
  position: relative;
  cursor: pointer;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.homepage .frame-41:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.homepage .frame-magazine {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 16px;
  scroll-snap-type: x mandatory;
  /* Hide scrollbar for all browsers */
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

@media (max-width: 768px) {
  .homepage .frame-magazine {
    gap: 12px;
    min-height: 180px;
  }
}

.homepage .text-wrapper-12 {
  position: relative;
  align-self: stretch;
  font-family: var(--font-family);
  font-weight: 600;
  color: var(--white);
  font-size: 16px;
  letter-spacing: 0;
  line-height: normal;
}

.homepage .link-2 {
  font-weight: 400;
  color: var(--grey);
  line-height: 24px;
  position: relative;
  width: fit-content;
  font-family: var(--font-family);
  font-size: 16px;
  text-align: right;
  letter-spacing: 0;
  text-decoration: underline;
  white-space: nowrap;
  transition: color 0.3s;
}

.homepage .link-2:hover {
  color: var(--neon-green);
}

.homepage .vector-2 {
  left: 1px;
  position: absolute;
  width: 17px;
  height: 14px;
  top: 1px;
}

.homepage .frame-42 {
  flex-direction: column;
  height: 190px;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 16px;
  padding: 16px;
  align-self: stretch;
  width: 100%;
  border-radius: 10px;
  background:
    linear-gradient(0deg, rgba(4, 2, 15, 0.2) 0%, rgba(4, 2, 15, 0.2) 100%),
    url(/assets/images/backgrounds/magazine.webp) 50% 50% / cover;
  display: flex;
  position: relative;
  cursor: pointer;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.magazine-title {
  font-weight: 400;
  color: var(--dark);
  font-family: var(--font-family);
  font-size: 18px;
}

.homepage .frame-42:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.homepage .frame-43 {
  display: flex;
  flex-direction: column;
  width: 236px;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  margin-right: -192px;
}

.homepage .frame-44 {
  display: flex;
  flex-direction: column;
  width: 236px;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  margin-right: -444px;
}

.homepage .frame-45 {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  position: relative;
  flex: 0 0 auto;
}

.homepage .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* position: relative; */
  align-self: stretch;
  padding-inline: 42px;
  width: 100%;
  row-gap: 12px;
  flex: 0 0 auto;
}

.homepage .layer-4 {
  width: 290px;
  left: -6px;
  position: absolute;
  height: 70px;
}

.homepage .questions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
  /* max-width: 800px; */
  flex: 0 0 auto;
  border-radius: 8px 8px 0px 0px;
  overflow: hidden;
}

.homepage .FAQ-wrapper {
  display: flex;
  gap: 40px;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
}

.homepage .FAQ-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  /* padding: 24px 0px; */
  padding-top: 12px;
  padding-bottom: 12px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-color: #e5e7e6;
  cursor: pointer;
  transition: background-color 0.3s;
}

.homepage .div-3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  height: auto;
  flex: 1;
  flex-grow: 1;
}

.homepage .div-wrapper-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  color: #000000b1;
}

.homepage .how-to-get-started {
  position: relative;
  flex: 1;
  font-family: var(--font-family);
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0;
  line-height: normal;
}

.homepage .text-wrapper-13 {
  position: relative;
  flex: 1;
  font-family: var(--font-family);
  font-weight: 300;
  color: var(--grey);
  font-size: 14px;
  letter-spacing: 0;
  line-height: 17.5px;
}

.homepage .icons-plus {
  position: relative;
  width: 24px;
  height: 24px;
  padding-bottom: 8px;
  transition: transform 0.3s;
}

.homepage .FAQ-item:hover .icons-plus {
  transform: rotate(45deg);
}

.homepage .how-to-get-started-2 {
  position: relative;
  flex: 1;
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--dark);
  font-size: 14px;
  letter-spacing: 0;
  line-height: normal;
}

.homepage .text-wrapper-14 {
  font-weight: 500;
  color: #04020f;
}

.homepage .text-wrapper-15 {
  font-weight: 700;
  color: #04020f;
}

.homepage .CTA {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* padding: 32px 0px 0px; */
  align-self: stretch;
  width: 100%;
  position: relative;
  flex: 0 0 auto;
}

.homepage .subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.homepage .text-wrapper-16 {
  position: relative;
  flex: 1;
  font-family: var(--font-family);
  font-weight: 600;
  color: var(--purple);
  font-size: 16px;
  letter-spacing: 0;
  line-height: normal;
}

.homepage .CTA-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 0px 0px;
  align-self: stretch;
  width: 100%;
  position: relative;
  flex: 0 0 auto;
}

.homepage .cta-secondary {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  margin-top: -2px;
  margin-bottom: -2px;
  margin-left: -2px;
  background-color: var(--white);
  border-radius: 15px;
  border-style: solid;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-color: var(--purple);
  position: relative;
  flex: 0 0 auto;
  cursor: pointer;
  transition:
    background-color 0.3s,
    color 0.3s;
}

.homepage .cta-secondary:hover {
  background-color: var(--purple);
}

.homepage .cta-secondary:hover .select-bet-2 {
  color: var(--white);
}

.homepage .select-bet-2 {
  position: relative;
  width: fit-content;
  margin-top: -2px;
  font-family: var(--font-family);
  font-weight: 700;
  color: var(--purple);
  font-size: 18px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  transition: color 0.3s;
}

.homepage .div-4 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
}

.homepage .link-3 {
  font-weight: 600;
  color: var(--purple);
  line-height: 18px;
  position: relative;
  width: fit-content;
  font-family: var(--font-family);
  font-size: 16px;
  text-align: right;
  letter-spacing: 0;
  text-decoration: underline;
  white-space: nowrap;
  transition: color 0.3s;
}

.homepage .link-3:hover {
  color: #410498;
}

.homepage .footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 32px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: transparent;
  border-top-width: 1px;
  border-top-style: solid;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-color: var(--medium-grey);
  padding: 0 42px;
}

.homepage .frame-46 {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  padding: 24px 0px;
  position: relative;
  width: 100%;
  gap: 48px;
}

.homepage .frame-47 {
  display: flex;
  flex-direction: column;
  margin-top: -1px;
  font-weight: 400;
  color: var(--grey);
  font-size: 16px;
  white-space: nowrap;
  position: relative;
  font-family: var(--font-family);
  letter-spacing: 0;
  line-height: normal;
}

.homepage .text-wrapper-17 {
  padding-bottom: 16px;
  font-size: 14px;
  color: var(--grey);
}

.homepage .text-wrapper-18 {
  position: relative;
  width: fit-content;
  font-family: var(--font-family);
  font-weight: 600;
  color: var(--purple);
  font-size: 16px;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.3s;
  padding-bottom: 8px;
}

.homepage .text-wrapper-18:hover {
  color: #410498;
}

.homepage .frame-48 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  flex: 0 0 auto;
}

.homepage .text-wrapper-19 {
  position: relative;
  width: fit-content;
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--grey);
  font-size: 14px;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
  padding-bottom: 16px;
}

.homepage .text-wrapper-20 {
  /* align-items: center; */
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-direction: row;
  /* align-items: flex-start; */
}

.homepage .top-nav-desktop {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
}

.frame-8 {
  display: none;
  width: -webkit-fill-available;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  flex: 0 0 auto;
  /*background-color: var(--neon-green);*/
  padding: 0 20px;
}

/*.div-3 {
  position: relative;
  /*width: 57px;
  height: 36px;*/ /*
  color: var(--neon-green);
  display: flex;
  justify-content: center;
}*/

.rectangle {
  position: absolute;
  width: 57px;
  height: 4px;
  top: 61px;
  left: 0;
  background-color: var(--purple);
}

.hicon-bold-home {
  position: absolute;
  width: 18px;
  height: 18px;
  top: 5px;
  left: 20px;
}

.text-wrapper-3-wallet {
  height: 17px;
  font-family: var(--font-family);
  font-weight: 600;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
}

.frame-9 {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  top: 2px;
  left: 7px;
}

.text-wrapper-4 {
  position: relative;
  width: fit-content;
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--dark);
  font-size: 12px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
}

.group-2 {
  position: relative;
  width: 38px;
  height: 44px;
  top: 3px;
  left: 10px;
}

.vector {
  /*position: absolute;
  width: 24px;
  height: 20px;
  top: 0;
  left: 6px;*/
  position: relative;
  width: 24px;
  height: 23px;
}

.side-menu-icon {
  position: relative;
  width: 30px;
  height: 23px;
}

.text-wrapper-5 {
  position: absolute;
  height: 17px;
  top: 27px;
  left: 0;
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--dark);
  font-size: 14px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
}

.frame-69 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  /*position: relative;
  top: 1px;
  left: 6px;*/
}

/*.frame-69 .nav-main-button {
  text-decoration: none;
  font-family: var(--font-family);
  color: inherit;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.frame-69.selected {
  border-bottom: 4px solid var(--purple);
  content: "";
  display: flex;
  height: 50px;
}

.frame-69.selected .nav-main-button {
  gap: 3px !important;
}

.selected .text-wrapper-4 {
  text-decoration: none;
  font-family: var(--font-family);
  color: var(--purple);
  font-weight: 700;
}

.live-dealer {
  position: relative;
  width: 22px;
  height: 23px;
}

.home-icon {
  position: relative;
  width: 23px;
  height: 23px;
}*/

@media (min-width: 768px) {
  .homepage .text-wrapper-20 {
    height: 64px;
  }

  .homepage .frame-4 {
    height: 64px;
  }
}

/* Add responsive styles for mobile */
@media (max-width: 480px) {
  .homepage .rectangle {
    position: absolute;
    width: 100%;
    height: 370px;
    top: 0;
    left: 0;
    /* background-color: #c8ff00; */
    /* background: */
    /* linear-gradient(180deg, rgba(200, 255, 0, 0) 0%, rgba(200, 255, 0, 1) 100%), */
    /* url('/assets/images/hero/landing-hero.jpg'); */
    background-repeat: no-repeat;
    background-size: cover;
    /* background-color: #c8ff00; */
    /* background-position: 85%; */
  }

  .homepage .container {
    padding-inline: 20px;
  }

  .homepage .footer {
    padding: 0 16px 16% 16px;
  }

  /* .homepage .frame-4 {
    width: 100%;
    justify-content: right;
    padding: 16px 0px 0px;
  } */

  .homepage .growl-message {
    width: 100%;
  }

  .homepage .get-more-coins {
    font-size: 12px;
  }

  .homepage .normal-bet {
    font-size: 14px;
  }

  .homepage .normal-2-bet {
    width: 170px;
    font-size: 15px;
  }

  .homepage .CTA-wrapper {
    flex-direction: row;
    gap: 16px;
    align-items: centert;
  }

  .homepage .cta-secondary {
    width: 100%;
  }

  .frame-8 {
    display: flex;
  }

  .homepage .FAQ-wrapper {
    flex-direction: column;
  }
}

/* Mobile menu styles */
.mobile-menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    z-index: 100;
  }

  .homepage .frame-wrapper {
    display: none;
    /* flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: var(--neon-green);
    z-index: 99;
    padding: 16px;
    box-sizing: border-box;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  }

  .homepage .frame-2 {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .homepage .frame-3 {
    width: 100%;
    text-align: center;
    padding: 8px 0;
  }

  .homepage .rectangle-2,
  .homepage .rectangle-3 {
    display: none;
  }

  .homepage .text-wrapper {
    font-size: 16px;
    padding: 8px 0;
  }
}

.no-magazine-message {
  text-align: center;
  color: #8990ae;
  font-size: 2em;
  margin: 40px 0;
  font-weight: 600;
  background: #fffbe6;
  border-radius: 12px;
  padding: 32px 0;
  box-shadow: 0 2px 12px rgba(137, 144, 174, 0.08);
}

/* Toast/Message Styles */
.message-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.message {
  padding: 16px 24px;
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  pointer-events: auto;
  animation: slideIn 0.3s ease-out;
  min-width: 250px;
  max-width: 400px;
}

.message-success {
  background-color: #27ae60;
}

.message-error {
  background-color: #e74c3c;
}

.message-info {
  background-color: #3498db;
}

.message-warning {
  background-color: #f39c12;
}

@keyframes slideIn {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .message-container {
    top: 10px;
    right: 10px;
    left: 10px;
  }

  .message {
    min-width: auto;
    max-width: 100%;
  }
}

/* NEW Badge for Predicts Tab */
.new-badge {
  position: relative;
  top: -4px;
  right: 0px;
  background: linear-gradient(
    135deg,
    var(--dark-purple) 0%,
    #a57de2 50%,
    var(--purple) 100%
  );
  background-size: 200% 200%;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 4px;
  border-radius: 0 0 6px 6px;
  text-transform: uppercase;
  animation:
    pulse 2s ease-in-out infinite,
    shimmer 3s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (max-width: 768px) {
  .new-badge {
    font-size: 9px;
    padding: 2px 5px;
    right: -30px;
  }
}

@media (max-width: 480px) {
  .new-badge {
    font-size: 8px;
    padding: 1px 4px;
    right: -25px;
    top: -6px;
  }
}
