/* =========================================================
   WHY CHOOSE OUR GAME
========================================================= */

.Why_Choose_Our_Game {
  margin: 90px 0 70px;
  position: relative;
  overflow: hidden;
}

.Why_Choose_Our_Game .roulette_game_wrapper {
  width: 100%;
  margin-top: 45px;
}

.Why_Choose_Our_Game .roulette_game_card {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 25px 22px;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 196, 0, 0.45);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45),
    inset 0 0 80px rgba(255, 196, 0, 0.05);
    isolation: isolate;
    transition: border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.Why_Choose_Our_Game .roulette_overlay {
  position: absolute;
  inset: 0;

  z-index: -1;

  background: linear-gradient(
    90deg,
    rgba(5, 0, 12, 0.98) 0%,
    rgba(10, 0, 20, 0.92) 35%,
    rgba(15, 0, 25, 0.72) 55%,
    rgba(10, 0, 15, 0.3) 80%,
    rgba(0, 0, 0, 0.05) 100%
  );
}


.Why_Choose_Our_Game .roulette_game_card > .row {
  position: relative;
  z-index: 4;

  width: 100%;

  margin-left: 0;
  margin-right: 0;
}

/* =========================================================
   LEFT CONTENT
========================================================= */

.Why_Choose_Our_Game .roulette_content {
  position: relative;
  z-index: 5;

  width: 100%;
  max-width: 560px;

  padding: 20px 15px 20px 10px;

  opacity: 0;
  transform: translateX(-40px);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

/* ACTIVE CONTENT */

.Why_Choose_Our_Game.active .roulette_content {
  opacity: 1;
  transform: translateX(0);
}

/* =========================================================
   BADGE
========================================================= */

.Why_Choose_Our_Game .roulette_badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  border-radius: 30px;
  background: rgba(255, 196, 0, 0.08);
  border: 1px solid rgb(160, 209, 223);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(255, 196, 0, 0.08);
}


.Why_Choose_Our_Game .live_dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 0 4px rgba(255, 30, 30, 0.12),
    0 0 12px rgba(255, 30, 30, 0.8);

  animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.25);
    opacity: 0.65;
  }
}

.Why_Choose_Our_Game .roulette_content h2 {
  margin: 20px 0 15px;

  font-size: 42px;
  line-height: 1.1;
  font-weight: 800;

  color: #ffffff;

  text-transform: capitalize;

  background: linear-gradient(90deg, #ffffff 0%, #82cde7 60%, #0db6ee 100%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.Why_Choose_Our_Game .roulette_content > p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 1.8;
}


.Why_Choose_Our_Game .roulette_features {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 10px;
  margin-top: 28px;
}


.Why_Choose_Our_Game .roulette_feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.Why_Choose_Our_Game .roulette_feature:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 196, 0, 0.5);
  background: rgba(255, 196, 0, 0.06);
}


.Why_Choose_Our_Game .roulette_feature > span {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  background: rgb(12 187 240 / 18%);
  border: 1px solid rgb(12 187 236 / 32%);
}

.Why_Choose_Our_Game .roulette_feature strong {
  display: block;

  color: #ffffff;

  font-size: 12px;
  font-weight: 700;

  line-height: 1.3;
}


.Why_Choose_Our_Game .roulette_feature small {
  display: block;

  margin-top: 2px;

  color: rgba(255, 255, 255, 0.5);

  font-size: 10px;

  line-height: 1.3;
}

.Why_Choose_Our_Game .play_btn {
    display: flex;
    justify-content: center;
    margin-top: 32px;
    position: relative;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.7s ease 0.35s,
    transform 0.7s ease 0.35s;
}

.Why_Choose_Our_Game.active .play_btn {
  opacity: 1;

  transform: translateY(0);
}

/* BUTTON TEXT */

.Why_Choose_Our_Game .play_btn .btn_text {
  font-size: 16px;
  font-weight: 700;

  padding: 12px 28px !important;

  letter-spacing: 0.5px;
}


.Why_Choose_Our_Game .roulette_phone_wrapper {
    position: relative;
    z-index: 4;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0 10px 15px;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s ease 0.2s,
    transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.Why_Choose_Our_Game.active .roulette_phone_wrapper {
  opacity: 1;
  transform: translateX(0);
}


.Why_Choose_Our_Game .roulette_phone {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 25px 30px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 25px rgba(255, 196, 0, 0.08));

  transition: transform 0.5s ease;
}

.Why_Choose_Our_Game .roulette_game_card:hover .roulette_phone {
  transform: scale(1.025);
}


.Why_Choose_Our_Game .roulette_glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(40px);
  opacity: 0;
  transition: opacity 1s ease;
}

.Why_Choose_Our_Game.active .roulette_glow {
  opacity: 1;
}

.Why_Choose_Our_Game .roulette_game_card:hover {
  border-color: rgba(255, 196, 0, 0.8);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(255, 196, 0, 0.08),
    inset 0 0 80px rgba(255, 196, 0, 0.04);
}

@media (min-width: 992px) and (max-width: 1199px) {
  .Why_Choose_Our_Game {
    margin: 70px 0 60px;
  }

  .Why_Choose_Our_Game .roulette_game_wrapper {
    margin-top: 35px;
  }

  .Why_Choose_Our_Game .roulette_game_card {
    padding: 40px 30px;
  }
  .Why_Choose_Our_Game .roulette_content {
    padding: 15px 10px;
  }

  .Why_Choose_Our_Game .roulette_content h2 {
    font-size: 36px;
  }

  .Why_Choose_Our_Game .roulette_content > p {
    font-size: 14px;
    line-height: 1.7;
  }

  .Why_Choose_Our_Game .roulette_features {
    gap: 7px;
    margin-top: 22px;
  }

  .Why_Choose_Our_Game .roulette_feature {
    padding: 8px 9px;
  }

  .Why_Choose_Our_Game .roulette_feature > span {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .Why_Choose_Our_Game .roulette_feature strong {
    font-size: 11px;
  }

  .Why_Choose_Our_Game .roulette_feature small {
    font-size: 9px;
  }

  .Why_Choose_Our_Game .play_btn {
    margin-top: 25px;
  }

  .Why_Choose_Our_Game .roulette_phone_wrapper {
    padding-left: 0;
  }

  .Why_Choose_Our_Game .roulette_phone {
    max-width: 510px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .Why_Choose_Our_Game {
    margin: 60px 0;
  }

  .Why_Choose_Our_Game .roulette_game_wrapper {
    margin-top: 35px;
  }

  .Why_Choose_Our_Game .roulette_game_card {

    padding: 35px 25px;
    border-radius: 22px;
  }



  .Why_Choose_Our_Game .roulette_overlay {
    background: linear-gradient(
      90deg,
      rgba(5, 0, 12, 0.98) 0%,
      rgba(8, 0, 15, 0.88) 45%,
      rgba(8, 0, 15, 0.35) 100%
    );
  }

  .Why_Choose_Our_Game .roulette_content {
    padding: 10px 10px 10px 0;
  }

  .Why_Choose_Our_Game .roulette_badge {
    font-size: 10px;
    padding: 7px 12px;
  }

  .Why_Choose_Our_Game .roulette_content h2 {
    font-size: 32px;
    margin: 16px 0 12px;
  }

  .Why_Choose_Our_Game .roulette_content > p {
    font-size: 13px;
    line-height: 1.6;
  }

  .Why_Choose_Our_Game .roulette_features {
    gap: 6px;
    margin-top: 20px;
  }

  .Why_Choose_Our_Game .roulette_feature {
    min-width: 0;
    padding: 7px 8px;
    gap: 7px;
  }

  .Why_Choose_Our_Game .roulette_feature > span {
    width: 26px;
    height: 26px;
    font-size: 13px;
  }

  .Why_Choose_Our_Game .roulette_feature strong {
    font-size: 10px;
  }

  .Why_Choose_Our_Game .roulette_feature small {
    font-size: 8px;
  }

  .Why_Choose_Our_Game .play_btn {
    margin-top: 22px;
  }

  .Why_Choose_Our_Game .play_btn .btn_text {
    font-size: 14px;
    padding: 10px 22px !important;
  }

  .Why_Choose_Our_Game .roulette_phone_wrapper {
    padding: 0;
  }

}

@media (min-width: 576px) and (max-width: 767px) {
  .Why_Choose_Our_Game {
    margin: 50px 0;
  }

  .Why_Choose_Our_Game .roulette_game_wrapper {
    margin-top: 30px;
  }

  .Why_Choose_Our_Game .roulette_game_card {
    min-height: auto;
    padding: 35px 25px;
    border-radius: 20px;
  }

  .Why_Choose_Our_Game .roulette_game_card > .row {
    min-height: auto;
  }

  .Why_Choose_Our_Game .roulette_overlay {
    background: linear-gradient(
      180deg,
      rgba(5, 0, 12, 0.98) 0%,
      rgba(8, 0, 15, 0.85) 45%,
      rgba(8, 0, 15, 0.35) 100%
    );
  }

  .Why_Choose_Our_Game .roulette_content {
    max-width: 100%;

    padding: 0 10px;

    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .Why_Choose_Our_Game .roulette_badge {
    font-size: 10px;

    padding: 7px 12px;
  }

  .Why_Choose_Our_Game .roulette_content h2 {
    font-size: 32px;
  }

  .Why_Choose_Our_Game .roulette_content > p {
    max-width: 550px;

    font-size: 14px;

    line-height: 1.6;
  }

  .Why_Choose_Our_Game .roulette_features {
    width: 100%;

    justify-content: center;

    gap: 7px;
  }

  .Why_Choose_Our_Game .roulette_feature {
    min-width: 0;

    flex: 1;

    padding: 8px 9px;
  }

  .Why_Choose_Our_Game .roulette_feature > span {
    width: 27px;
    height: 27px;

    font-size: 12px;
  }

  .Why_Choose_Our_Game .roulette_feature strong {
    font-size: 10px;
  }

  .Why_Choose_Our_Game .roulette_feature small {
    font-size: 8px;
  }

  .Why_Choose_Our_Game .play_btn {
    justify-content: center;

    margin-top: 22px;
  }

  .Why_Choose_Our_Game .roulette_phone_wrapper {
    padding: 25px 0 0;

    margin-top: 10px;
  }




}

@media (min-width: 0px) and (max-width: 575px) {
  .Why_Choose_Our_Game {
    margin: 40px 0 50px !important;
  }

  .Why_Choose_Our_Game .roulette_game_wrapper {
    margin-top: 25px;
  }

  .Why_Choose_Our_Game .roulette_game_card {
    min-height: auto;
    padding: 28px 15px 20px;
    border-radius: 16px;
  }

  .Why_Choose_Our_Game .roulette_game_card > .row {
    min-height: auto;
  }

  .Why_Choose_Our_Game .roulette_overlay {
    background: linear-gradient(
      180deg,
      rgba(5, 0, 12, 0.99) 0%,
      rgba(8, 0, 15, 0.88) 42%,
      rgba(8, 0, 15, 0.3) 100%
    );
  }

  /* CONTENT */

  .Why_Choose_Our_Game .roulette_content {
    width: 100%;
    max-width: 100%;
    padding: 0 5px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .Why_Choose_Our_Game .roulette_badge {
    font-size: 9px;
    padding: 6px 11px;
    letter-spacing: 1px;
  }

  .Why_Choose_Our_Game .roulette_content h2 {
    margin: 13px 0 10px;
    font-size: 27px;
    line-height: 1.15;
  }

  .Why_Choose_Our_Game .roulette_content > p {
    max-width: 340px;
    font-size: 12px;
    line-height: 1.55;
  }

  /* FEATURES */

  .Why_Choose_Our_Game .roulette_features {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 16px;
  }

  .Why_Choose_Our_Game .roulette_feature {
    min-width: 0;
    flex: 1;
    padding: 7px 5px;
    gap: 5px;
    border-radius: 7px;
  }

  .Why_Choose_Our_Game .roulette_feature > span {
    width: 22px;
    height: 22px;
    font-size: 10px;
  }

  .Why_Choose_Our_Game .roulette_feature strong {
    font-size: 8px;
    line-height: 1.2;
  }

  .Why_Choose_Our_Game .roulette_feature small {
    font-size: 7px;
    line-height: 1.2;
  }

  .Why_Choose_Our_Game .play_btn {
    justify-content: center;
    margin-top: 18px;
  }

  .Why_Choose_Our_Game .play_btn .btn_text {
    font-size: 12px;
    padding: 9px 20px !important;
  }

.Why_Choose_Our_Game .roulette_phone_wrapper {
    width: 100%;
    padding: 20px 0 0;
    margin-top: 5px;
    height: 300px;
}

  .Why_Choose_Our_Game .roulette_glow_one {
    width: 180px;
    height: 180px;

    right: 0;
  }

}
