/* ----------------------------------------------- [ Font Families ] --------------------------------------------------- */

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* 
font-family: "Poppins", sans-serif;
Thin 100 / ExtraLight 200 / Light 300 / Regular 400 / Medium 500 / SemiBold 600 / Bold 700 / ExtraBold 800 / Black 900
*/

/* ------------------------------------------------ [ Variable CSS ] --------------------------------------------------- */

:root {
  /* colors ---------- */
  --Dark-Jungle-Green: #0f172a;
  --Smoky-Black: #0f0f0f;
  --Pear: #c7d326;
  --white: #ffffff;
  --Gray-X11: #b9b9b9;
  --Charleston-Green: #272727;
  --Persian-Green: #00b589;
  --White-Opacity: #ffffff1a;
  --Outer-Space: #454343;
  --Davys-Grey: #595757;
  --Venetian-Red: #f00;
  --Offcanvas-Overlay: #00000080;
}

/* ------------------------------------------------ [ Global CSS ] ---------------------------------------------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: none;
  outline: none;
  text-decoration: none;
  /* Disable Text Selection */
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
html {
  /* 10px = 1rem */
  font-size: 62.5%;
}
body {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  overflow-x: hidden;
  scroll-behavior: smooth;
  display: flex;
  justify-content: center;
  background-color: var(--Dark-Jungle-Green);
}
::before,
::after {
  box-sizing: border-box;
}
* > img {
  user-select: none;
  pointer-events: none;
  display: inline-block;
}
a {
  text-decoration: none;
  display: inline-block;
}
li {
  list-style: none;
}
#hidden {
  display: none;
}

/* Popup page */
#popup_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--Offcanvas-Overlay);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#popup {
  background-color: var(--Dark-Jungle-Green);
  padding: 6.5rem 0 0 0;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.3);
  border: 0.1rem solid var(--Davys-Grey);
  width: 80rem;
  max-width: 90%;
  height: 95%;
  max-height: 62rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
#popup button {
  position: absolute;
  top: 1.4rem;
  left: 2rem;
  background: var(--White-Opacity);
  color: var(--white);
  border: 0.1rem solid var(--Davys-Grey);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  font-size: 2rem;
}
#popup button:hover {
  background-color: var(--Dark-Jungle-Green);
}
#popup .adsense_placeholder {
  width: 100%;
  height: 100%;
  background-color: var(--White-Opacity);
  color: var(--Outer-Space);
  padding: 2rem;
  border-top: 0.1rem dashed var(--Davys-Grey);
  border-radius: 0rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
#popup .adsense_placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Primary Section */
.primary_section {
  width: 100%;
  max-width: 58rem;
  height: 100%;
  min-height: 100vh;
  background-color: var(--Smoky-Black);
}

/* Header Content */
header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10rem;
  color: var(--white);
  padding: 0 2rem;
}
header .menu_btn {
  display: none;
  font-size: 3.2rem;
  cursor: pointer;
}
header .overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--Offcanvas-Overlay);
  transition: opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 900;
}
header .overlay.visible {
  opacity: 1;
  pointer-events: auto;
}
header .off_canvas {
  display: none;
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100%;
  background: var(--Charleston-Green);
  color: var(--white);
  transition: left 0.3s ease;
  padding-top: 0.6rem;
  box-shadow: 0.2rem 0 0.5rem rgba(0, 0, 0, 0.3);
  z-index: 1000;
}
header .off_canvas.open {
  left: 0;
}
header .off_canvas .nav_links {
  display: flex;
  flex-direction: column;
  padding: 7rem 0;
}
header .off_canvas .nav_links a {
  padding: 3rem;
  border-bottom: 0.1rem solid var(--Gray-X11);
  color: var(--white);
  text-decoration: none;
  font-size: 2.5rem;
  transition: background 0.3s ease;
}
header .off_canvas .nav_links a:hover {
  background: var(--Background-gray3);
}
header .close_btn {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  font-size: 3.2rem;
  background: transparent;
  color: var(--white);
  border: none;
  cursor: pointer;
}
header .logo {
  color: var(--white);
  font-size: 3.5rem;
  cursor: pointer;
}

/* Main Content  */
.main_content {
  padding: 4rem 2rem 6rem 2rem;
}

/* Common Quiz-Container MCQ's Style */
.quiz_container {
  margin-bottom: 6rem;
}
.quiz_container .quiz {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.quiz_container .question {
  color: var(--white);
  text-align: center;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.048rem;
}
.quiz_container .answer_btns_cont {
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  max-width: 100%;
}
.quiz_container .answer_btns_cont .answer_button {
  height: 100%;
  min-height: 7.5rem;
  padding: 1.2rem;
  border-radius: 1rem;
  border: 0.2rem solid var(--Outer-Space);
  background: var(--Charleston-Green);
  cursor: pointer;
  color: var(--white);
  font-size: 2rem;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.04rem;
}
.answer_button:disabled {
  opacity: 1;
  background-color: inherit;
  color: inherit;
}
.quiz_container .hidden {
  display: none;
}

/* Home Quiz-Container Result Style */
#home_quiz_result {
  width: 100%;
  background-color: var(--Charleston-Green);
  border: 0.2rem solid var(--Outer-Space);
  border-radius: 2.4rem;
  padding: 2.4rem;
  margin-bottom: 4rem;
}
#home_quiz_result h2 {
  color: var(--Pear);
  font-size: 4rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.088rem;
  margin-bottom: 1.6rem;
}
#home_quiz_result .your_coins {
  background-color: var(--Outer-Space);
  height: 100%;
  min-height: 9.6rem;
  padding: 2.2rem 2rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  word-wrap: break-word;
  align-items: center;
  border-radius: 2rem;
  margin-bottom: 3rem;
}
#home_quiz_result .your_coins img {
  width: 3.5rem;
}
#home_quiz_result .your_coins .vertical_line {
  width: 0.2rem;
  height: 6rem;
  background-color: var(--Davys-Grey);
}
#home_quiz_result .your_coins p {
  color: var(--white);
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.052rem;
}
#home_quiz_result .your_coins p span {
  color: var(--Persian-Green);
}
#home_quiz_result .play_more_para {
  color: var(--white);
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.042rem;
  margin-bottom: 3rem;
}
#home_quiz_result .lets_start_btn {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  cursor: initial;
}
#home_quiz_result .lets_start_btn button {
  width: 100%;
  height: 5.6rem;
  border-radius: 12.8rem;
  background: var(--Persian-Green);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem 1.6rem;
  gap: 0.8rem;
  flex-shrink: 0;
  color: var(--white);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.048rem;
  cursor: pointer;
}

/* Common Game-Quiz Result Container Style */
.game_quiz_result_container {
  width: 100%;
  background-color: var(--Charleston-Green);
  border: 0.2rem solid var(--Outer-Space);
  border-radius: 2.4rem;
  padding: 2.4rem;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.game_quiz_result_container h2 {
  color: var(--Pear);
  text-align: center;
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.088rem;
}
.game_quiz_result_container .completed {
  color: var(--white);
  text-align: center;
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.042rem;
  margin-bottom: 4rem;
}
.game_quiz_result_container .your_coins {
  color: var(--white);
  text-align: center;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 4rem;
}
.game_quiz_result_container .your_coins .bolder {
  color: var(--Persian-Green);
  font-weight: 700;
}
.result_buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 1.5rem;
}
.game_quiz_result_container .claim_now_btn,
.game_quiz_result_container .play_now_btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: initial;
}
.game_quiz_result_container .claim_now_btn button,
.game_quiz_result_container .play_now_btn button {
  width: 100%;
  height: 5.6rem;
  border-radius: 12.8rem;
  background: var(--Persian-Green);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem 1.6rem;
  gap: 0.8rem;
  flex-shrink: 0;
  color: var(--white);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.048rem;
  cursor: pointer;
}

/* ------------------------- Home Page main content ------------------------- */

/* Guidelines section */
.home_main .guidelines {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 6rem;
}
.home_main .guidelines h2 {
  text-align: center;
  color: var(--Pear);
  font-size: 4rem;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.08rem;
}
.home_main .guidelines p {
  text-align: center;
  color: var(--Gray-X11);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.032rem;
}

/* New quiz Button */
.home_main .new_quiz_btn {
  width: 100%;
  margin-bottom: 9rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: initial;
}
.home_main .new_quiz_btn button {
  width: 100%;
  max-width: 30rem;
  height: 5.8rem;
  border-radius: 12.8rem;
  background: var(--Pear);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem 1.6rem;
  gap: 0.8rem;
  flex-shrink: 0;
  color: var(--Dark-Jungle-Green);
  font-size: 3.2rem;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.064rem;
  cursor: pointer;
}

/* Additional information section */
.home_main .additional_info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  margin-bottom: 6rem;
}
.home_main .additional_info h2 {
  text-align: center;
  color: var(--Pear);
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.064rem;
}
.home_main .additional_info div {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 2rem;
}
.home_main .additional_info div p {
  color: var(--Gray-X11);
  font-size: 2rem;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.04rem;
}

/* Recent Winners Button */
.home_main .recent_btn {
  width: 100%;
  margin-bottom: 9rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: initial;
}
.home_main .recent_btn button {
  width: 100%;
  max-width: 30rem;
  height: 5.8rem;
  border-radius: 12.8rem;
  border: 0.1rem solid var(--Persian-Green);
  background: var(--White-Opacity);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem 1.6rem;
  gap: 0.8rem;
  flex-shrink: 0;
  color: var(--white);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.048rem;
  cursor: pointer;
}

/* key points section */
.home_main .key_points {
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
}
.home_main .key_points div {
  display: flex;
  align-items: flex-start;
}
.home_main .key_points div img {
  width: 2.4rem;
  height: 2.4rem;
  margin-right: 2.8rem;
}
.home_main .key_points div p {
  color: var(--Gray-X11);
  font-size: 2rem;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.04rem;
  margin-top: -0.2rem;
}

/* ------------------------- Terms Page main content ------------------------ */

.terms_details_container {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

/* Heading */
.terms_main h2 {
  text-align: center;
  color: var(--Pear);
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.088rem;
}

/* Details */
.terms_main .terms_details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.terms_main .terms_details h3 {
  color: var(--Persian-Green);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.088rem;
}
.terms_main .terms_details p {
  color: var(--white);
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: -0.042rem;
}

/* ------------------------ Privacy Page main content ----------------------- */

.privacy_main .privacy_details_container {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

/* Heading */
.privacy_main h2 {
  text-align: center;
  color: var(--Pear);
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.088rem;
}

/* Details */
.privacy_main .privacy_details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.privacy_main .privacy_details h3 {
  color: var(--Persian-Green);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.088rem;
}
.privacy_main .privacy_details p {
  color: var(--white);
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: -0.042rem;
}

/* ------------------------- Rules Page main content ------------------------ */

.rules_main .rules_details_container {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

/* Heading */
.rules_main h2 {
  text-align: center;
  color: var(--Pear);
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.088rem;
}

/* Details */
.rules_main .rules_details {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.rules_main .rules_details div {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
.rules_main .rules_details p {
  color: var(--white);
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: -0.042rem;
  margin-top: -1.1rem;
}
.rules_main .rules_details div i {
  color: var(--white);
  font-size: 1.6rem;
}

/* ----------------------- New-Quiz Page Main Content ----------------------- */

.newquiz_page_main {
  display: flex;
  flex-direction: column;
}

/* Heading */
.newquiz_page_main .heading h2 {
  text-align: center;
  font-size: 3.4rem;
  color: var(--Pear);
  margin-bottom: 6rem;
}

/* Games Quiz Cards */
.newquiz_page_main .quiz_cards {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
.newquiz_page_main .quiz_cards .quiz_card {
  display: flex;
  flex-direction: column;
  padding: 3rem 2.4rem;
  width: 100%;
  border-radius: 2.4rem;
  border: 0.2rem solid var(--Outer-Space);
  background-color: var(--Charleston-Green);
  position: relative;
}
.newquiz_page_main .quiz_card .top {
  display: flex;
  gap: 2rem;
}
.newquiz_page_main .quiz_card .top .left_cont {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.newquiz_page_main .quiz_card .top .left_cont img {
  width: 100%;
}
.newquiz_page_main .quiz_card .top .right_cont {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.5rem 0;
}
.newquiz_page_main .quiz_card .top .right_cont .live {
  position: absolute;
  right: 1rem;
  top: 1rem;
  display: inline-flex;
  padding: 0.2rem 0.8rem;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  border-radius: 0.8rem;
  background: var(--Venetian-Red);
  color: white;
  font-size: 1.3rem;
}
.newquiz_page_main .quiz_card .top .right_cont .live img {
  width: 1.4rem;
}
.newquiz_page_main .quiz_card .top .right_cont h2 {
  color: var(--Pear);
  font-size: 2.8rem;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.064rem;
  text-decoration-line: underline;
}
.newquiz_page_main .quiz_card .top .right_cont .game_details .price {
  color: white;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.048rem;
}
.newquiz_page_main .quiz_card .top .right_cont .game_details .price span {
  color: var(--Persian-Green);
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.048rem;
}
.newquiz_page_main .quiz_card .top .right_cont .game_details .win_declare {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -0.032rem;
}
.newquiz_page_main .quiz_card .top .right_cont .entry_price {
  color: var(--white);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.048rem;
}
.newquiz_page_main .quiz_card .top .right_cont .entry_price span {
  color: var(--Persian-Green);
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.048rem;
}
.newquiz_page_main .quiz_card .bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}
.newquiz_page_main .quiz_card .bottom .online_users {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  align-self: flex-end;
  height: 100%;
  min-height: 2.4rem;
  padding: 0.2rem 1rem;
  gap: 0.4rem;
  border-radius: 5.3rem;
  background: var(--Outer-Space);
  color: white;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -0.02rem;
}
.newquiz_page_main .quiz_card .bottom .online_users img {
  width: 1.4rem;
}
.newquiz_page_main .quiz_card .bottom .play_btn button {
  display: flex;
  width: 100%;
  max-width: 20rem;
  height: 5.6rem;
  padding: 0.8rem 3.6rem;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  border-radius: 12.8rem;
  background: var(--Persian-Green);
  color: var(--white);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.048rem;
  cursor: pointer;
}

/* Recent Winners Button */
.newquiz_page_main .recent_btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: initial;
  margin-top: 9rem;
}
.newquiz_page_main .recent_btn button {
  width: 100%;
  max-width: 30rem;
  height: 5.8rem;
  border-radius: 12.8rem;
  border: 0.1rem solid var(--Persian-Green);
  background: var(--White-Opacity);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem 1.6rem;
  gap: 0.8rem;
  flex-shrink: 0;
  color: var(--white);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.048rem;
  cursor: pointer;
}

/* ---------------------- Games Main Content (Football) --------------------- */
/* ---------------------- Games Main Content (Cricket) ---------------------- */

/* Play Game Quiz Container */
.game_main .play_game_quiz_cont {
  width: 100%;
  background-color: var(--Charleston-Green);
  border: 0.2rem solid var(--Outer-Space);
  border-radius: 2.4rem;
  padding: 2.4rem;
  margin-bottom: 9rem;
}
.game_main .play_game_quiz_cont .your_coins {
  background-color: var(--Outer-Space);
  height: 100%;
  min-height: 9.6rem;
  padding: 2.2rem 2rem;
  display: flex;
  gap: 2rem;
  word-wrap: break-word;
  align-items: center;
  border-radius: 2rem;
  margin-bottom: 3rem;
}
.game_main .play_game_quiz_cont .your_coins img {
  width: 3.5rem;
  margin-left: 1rem;
}
.game_main .play_game_quiz_cont .your_coins .vertical_line {
  width: 0.2rem;
  height: 6rem;
  background-color: var(--Davys-Grey);
}
.game_main .play_game_quiz_cont .your_coins .play_and_win {
  color: var(--white);
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.052rem;
}
.game_main .play_game_quiz_cont .your_coins .play_and_win span {
  color: var(--Persian-Green);
}
.game_main .play_game_quiz_cont .your_coins .view_rank {
  color: var(--Pear);
  font-size: 2rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.04rem;
  text-decoration: underline;
}
.game_main .play_game_quiz_cont .play_more_para {
  color: var(--white);
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.042rem;
  margin-bottom: 3rem;
}
.game_main .play_game_quiz_cont .key_points {
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
  margin-bottom: 2.4rem;
}
.game_main .play_game_quiz_cont .key_points div {
  display: flex;
  align-items: flex-start;
}
.game_main .play_game_quiz_cont .key_points div img {
  width: 2.4rem;
  height: 2.4rem;
  margin-right: 2.4rem;
}
.game_main .play_game_quiz_cont .key_points div p {
  color: var(--Gray-X11);
  font-size: 1.8rem;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -0.036rem;
  margin-top: -0.3rem;
}
.game_main .play_game_quiz_cont .play_btn {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  cursor: initial;
}
.game_main .play_game_quiz_cont .play_btn button {
  width: 100%;
  height: 5.6rem;
  border-radius: 12.8rem;
  background: var(--Persian-Green);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem 1.6rem;
  gap: 0.8rem;
  flex-shrink: 0;
  color: var(--white);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.048rem;
  cursor: pointer;
}

/* Rules Details */
.game_main .rules_details {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 9rem;
}
.game_main .rules_details div {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
.game_main .rules_details p {
  font-size: 2rem;
  color: var(--white);
  line-height: 1.8;
  margin-top: -0.8rem;
}
.game_main .rules_details div i {
  color: var(--white);
  font-size: 1.2rem;
}

/* Quiz Rules Button */
.game_main .quiz_rule_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: initial;
}
.game_main .quiz_rule_btn button {
  color: var(--Pear);
  background-color: transparent;
  text-decoration: underline;
  font-size: 2.8rem;
  font-weight: 600;
  cursor: pointer;
}

/* Recent Winners Button */
.game_main .recent_btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: initial;
  margin-top: 3rem;
}
.game_main .recent_btn button {
  width: 100%;
  max-width: 30rem;
  height: 5.8rem;
  border-radius: 12.8rem;
  border: 0.1rem solid var(--Persian-Green);
  background: var(--White-Opacity);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem 1.6rem;
  gap: 0.8rem;
  flex-shrink: 0;
  color: var(--white);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.048rem;
  cursor: pointer;
}

/* -------------------- Game Quiz Main Content (Football) ------------------- */
/* -------------------- Game Quiz Main Content (Cricket) -------------------- */

/* Game Quiz Head */
.game_quiz_main .game_quiz_head {
  width: 100%;
  border-radius: 2.4rem;
  padding: 2.4rem;
  border: 0.2rem solid var(--Outer-Space);
  background: var(--Charleston-Green);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-bottom: 9rem;
}

/* MCQs Quiz Section */
.game_quiz_main .game_quiz_head .left_cont {
  flex: 1;
  width: 16.4rem;
  height: 10.4rem;
  border-radius: 1.4rem;
  background-color: red;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.game_quiz_main .game_quiz_head .left_cont img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.game_quiz_main .game_quiz_head .right_cont {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.game_quiz_main .game_quiz_head .right_cont .game_name {
  color: var(--white);
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.064rem;
}
.game_quiz_main .game_quiz_head .right_cont .game_name span {
  color: var(--Pear);
}
.game_quiz_main .game_quiz_head .right_cont .game_price {
  color: var(--Persian-Green);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.048rem;
}

/* Play New Game Button */
.game_quiz_main .play_new_game_btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: initial;
  padding-top: 3rem;
}
.game_quiz_main .play_new_game_btn button {
  width: 100%;
  max-width: 30rem;
  height: 5.8rem;
  border-radius: 12.8rem;
  background: var(--Pear);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem 1.6rem;
  gap: 0.8rem;
  flex-shrink: 0;
  color: var(--Dark-Jungle-Green);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.064rem;
  cursor: pointer;
}

/* ------------------------ Winners page main content ----------------------- */

/* Winner card */
.winners_page_main .winners_cards_cont {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
.winners_page_main .win_card {
  display: flex;
  gap: 3rem;
  border-radius: 2.4rem;
  border: 0.2rem solid var(--Outer-Space);
  background: var(--Charleston-Green);
  padding: 2.4rem;
}
.winners_page_main .win_card .left_cont {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.winners_page_main .win_card .left_cont img {
  width: 100%;
}
.winners_page_main .win_card .right_cont {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.2rem;
}
.winners_page_main .win_card .right_cont h2 {
  color: var(--Pear);
  font-size: 2rem;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.04rem;
  text-decoration: underline;
}
.winners_page_main .win_card .right_cont div {
  display: flex;
  flex-direction: column;
  gap: 0rem;
}
.winners_page_main .win_card .right_cont div .prize_pool {
  color: var(--white);
  font-size: 2rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.048rem;
}
.winners_page_main .win_card .right_cont div .prize_pool span {
  font-weight: 700;
}
.winners_page_main .win_card .right_cont div .total_winner {
  color: var(--Persian-Green);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.04rem;
}
.winners_page_main .win_card .right_cont .check_winner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 5rem;
  border-radius: 12.8rem;
  background: var(--Persian-Green);
  padding: 0.8rem 1.56rem;
  gap: 0.8rem;
  flex-shrink: 0;
  color: var(--white);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.048rem;
}

/* Play New Game Button */
.winners_page_main .play_new_game_btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: initial;
  margin-top: 9rem;
}
.winners_page_main .play_new_game_btn button {
  width: 100%;
  max-width: 30rem;
  height: 5.8rem;
  border-radius: 12.8rem;
  background: var(--Pear);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem 1.6rem;
  gap: 0.8rem;
  flex-shrink: 0;
  color: var(--Dark-Jungle-Green);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.064rem;
  cursor: pointer;
}

/* --------------------- Winners-List page main content --------------------- */

/* Heading */
.winners_list_page_main h2 {
  text-align: center;
  color: var(--Pear);
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.088rem;
  margin-bottom: 6rem;
}

/* Winners List card */
.winners_list_page_main .winners_list_cards_cont {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
.winners_list_page_main .winners_list_card {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2.4rem;
  border: 0.2rem solid var(--Outer-Space);
  background: var(--Charleston-Green);
  padding: 0 2.4rem;
}
.winners_list_page_main .winners_list_card .left_cont span {
  color: var(--Pear);
  font-size: 7rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.16rem;
}
.winners_list_page_main .winners_list_card .vertical_line {
  width: 0.2rem;
  height: 6rem;
  margin: 0 3.5rem;
  background-color: var(--Davys-Grey);
}
.winners_list_page_main .winners_list_card .treasure_img {
  margin-right: 3.5rem;
  width: 100%;
  max-width: 7rem;
}
.winners_list_page_main .winners_list_card .right_cont {
  flex: 3;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.winners_list_page_main .winners_list_card .right_cont .name {
  color: var(--white);
  font-size: 2rem;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.04rem;
  word-break: break-word;
}
.winners_list_page_main .winners_list_card .right_cont img {
  width: 100%;
  max-width: 9.9rem;
}
.winners_list_page_main .winners_list_card .right_cont .coins {
  color: var(--Persian-Green);
  font-size: 2rem;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.04rem;
  word-break: break-word;
}

/* Recent Winners Button */
.winners_list_page_main .recent_btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: initial;
  margin-top: 9rem;
}
.winners_list_page_main .recent_btn button {
  width: 100%;
  max-width: 30rem;
  height: 5.8rem;
  border-radius: 12.8rem;
  border: 0.1rem solid var(--Persian-Green);
  background: var(--White-Opacity);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem 1.6rem;
  gap: 0.8rem;
  flex-shrink: 0;
  color: var(--white);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.048rem;
  cursor: pointer;
}

/* Play New Game Button */
.winners_list_page_main .play_new_game_btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: initial;
  margin-top: 3rem;
}
.winners_list_page_main .play_new_game_btn button {
  width: 100%;
  max-width: 30rem;
  height: 5.8rem;
  border-radius: 12.8rem;
  background: var(--Pear);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem 1.6rem;
  gap: 0.8rem;
  flex-shrink: 0;
  color: var(--Dark-Jungle-Green);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.064rem;
  cursor: pointer;
}

/* ---------------------------- Responsive Style ---------------------------- */

@media screen and (max-width: 480px) {
  html {
    font-size: 52.5%;
  }
  header {
    justify-content: space-between;
  }
  .menu_btn,
  .overlay,
  .off_canvas {
    display: initial !important;
  }
}

@media screen and (max-width: 420px) {
  html {
    font-size: 48%;
  }
}

@media screen and (max-width: 380px) {
  html {
    font-size: 42%;
  }
}
