a {
  text-decoration: none;
}

svg {
  fill: #fdba32;
}

.pointer {
  cursor: pointer;
}

.center {
  text-align: center;
}

.flex {
  display: flex;
  align-items: center;
  gap: 5px;
}

.flex_center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex_between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex_col {
  flex-direction: column;
}

.w_full {
  width: 100%;
}

.block {
  display: block;
}

.hidden {
  display: none;
}

button {
  white-space: nowrap;
}

.mt-1 {
  margin-top: 4px;
}

.mt-2 {
  margin-top: 8px;
}

.mt-3 {
  margin-top: 12px;
}

.mt-4 {
  margin-top: 16px;
}

.mt-5 {
  margin-top: 20px;
}

.mb-1 {
  margin-bottom: 4px;
}

.mb-2 {
  margin-bottom: 8px;
}

.mb-3 {
  margin-bottom: 12px;
}

.mb-4 {
  margin-bottom: 16px;
}

.mb-5 {
  margin-bottom: 20px;
}

.btn {
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  font-family: 'LiKaiumKabboo', sans-serif;
}

.btn img {
  width: 30px;
  height: 30px;
  border-radius: 50px;
}

.card {
  padding: 2px;
  min-width: 0;
}

.card img {
  border-radius: 7px;
}

.logo-text {
  font-size: 30px;
  margin-top: -8px;
  transition: all 0.35s ease;
}

.logo-text:hover {
  transform: scale(1.05);
}

.game_grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.game_grid .alert {
  color: #d4af37;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  grid-column: 1 / -1;
  margin-top: 20px;
}

.game_card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  width: 100%;
  cursor: pointer;
}

.game_card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  aspect-ratio: 1.415;
  border-radius: 7px 7px 0 0;
}

.game_card:hover img {
  transform: scale(1.05);
}

/* .game_card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(0, 41, 14) 0%, rgba(0, 87, 30, 1) 100%);
  transform: translateX(-100%);
  transition: transform .4s ease;
  z-index: 1;
  opacity: 0.6;
} */

.game_card:hover::before {
  transform: translateX(0);
}

.game_card .card_btns {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: scale(0.7);
  transition: all .35s ease .15s;
  z-index: 2;
}

.game_card .card_btns .btn {
  width: 100px;
  padding: 6px;
}

@media (max-width: 600px) {
  .game_card .card_btns .btn {
    width: 95px;
  }
}

.game_card:hover .card_btns {
  opacity: 1;
  transform: scale(1);
}


@media (max-width: 900px) {
  .game_grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .btn {
    padding: 8px 16px;
    font-size: 15px;
  }

  .btn img {
    width: 27px;
    height: 27px;
  }
}

@media (max-width: 600px) {
  .game_grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
  }

  .btn {
    padding: 6px 10px;
    font-size: 14px;
  }

  .btn img {
    width: 22px;
    height: 22px;
  }

  .card {
    padding: 2px;
  }

  .logo-text {
    font-size: 24px;
  }

  .withdraw,
  .deposit {
    display: none;
  }
}


/* border start */
.gold_border_top,
.gold_border_bottom,
.gold_border_left,
.gold_border_right {
  position: relative;
}

.gold_border_top::before,
.gold_border_bottom::after {
  content: "";
  position: absolute;
  background: linear-gradient(to right, #77530a, #ffd277, #77530a, #77530a, #ffd277, #77530a);
  background-size: 250%;
  left: 0;
  width: 100%;
  height: 2px;
}

.gold_border_top::before {
  top: 0;
}

.gold_border_bottom::after {
  bottom: 0;
}

.gold_border_left::before,
.gold_border_right::after {
  content: "";
  position: absolute;
  background: linear-gradient(to bottom, #77530a, #ffd277, #77530a, #77530a, #ffd277, #77530a);
  background-size: 100% 250%;
  top: 0;
  height: 100%;
  width: 2px;
}

.gold_border_left::before {
  left: 0;
}

.gold_border_right::after {
  right: 0;
}

.gold_border_top.animate::before,
.gold_border_bottom.animate::after {
  animation: shineMove 1s linear infinite;
}

.gold_border_left.animate::before,
.gold_border_right.animate::after {
  animation: shineMoveVertical 1s linear infinite;
}

@keyframes shineMove {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 100% center;
  }
}

@keyframes shineMoveVertical {
  0% {
    background-position: center 0%;
  }

  100% {
    background-position: center 100%;
  }
}

/* gold bg start */
.gold_bg {
  background: linear-gradient(to right, #77530a, #ffd277, #77530a, #77530a, #ffd277, #77530a);
  background-size: 250%;
}

.gold_bg.vertical {
  background: linear-gradient(to bottom, #77530a, #ffd277, #77530a, #77530a, #ffd277, #77530a);
  background-size: 100% 250%;
}

.gold_bg.animate,
.gold_bg:hover {
  animation: shineMove 1s linear infinite;
}

.gold_bg.vertical.animate,
.gold_bg.vertical:hover {
  animation: shineMoveVertical 1s linear infinite;
}


/* gold text */
.gold_text {
  background: linear-gradient(to right, #d8a338, #ffe3ab, #dfad4a, #f3bd52, #ffe4ad, #d6a84b);
  background-size: 250%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold_text.animate {
  animation: shineMove 1s linear infinite;
}

.gold_border {
  position: relative;
  border: none;
  border-radius: 10px;
  background: linear-gradient(to right, #77530a, #ffd277, #77530a, #77530a, #ffd277, #77530a);
  background-size: 250%;
  transition-duration: 1s;
}

.gold_border:hover,
.gold_border.animate,
.gold_border.animate .gold_text,
.gold_border:hover .gold_text,
.card.gold_border.animate {
  /* animation: shineMove 1s linear infinite; */
}

.gold_border::before {
  position: absolute;
  content: "";
  border-radius: 8px;
  z-index: 0;
}

.btn.gold_border::before {
  left: 2px;
  top: 2px;
  right: 2px;
  bottom: 2px;
}

.card.gold_border::before {
  left: 2px;
  top: 2px;
  right: 2px;
  bottom: 2px;
}

.gold_border>* {
  position: relative;
  z-index: 1;
}

/* skin */
.gold_border::before {
  background: linear-gradient(90deg, rgb(0, 41, 14) 0%, rgba(0, 87, 30, 1) 100%);
}

.gold_border.olive::before {
  background: linear-gradient(90deg, rgba(31, 19, 0, 1) 0%, rgba(71, 48, 0, 1) 100%);
}

.gold_border.blue::before {
  background: linear-gradient(90deg, rgba(6, 0, 46, 1) 0%, rgba(8, 0, 82, 1) 100%);
}

.gold_border.purple::before {
  background: linear-gradient(90deg, rgb(18, 0, 29) 0%, rgba(42, 0, 66, 1) 100%);
}

.gold_border.red::before {
  background: linear-gradient(90deg, rgba(38, 0, 0, 1) 0%, rgba(77, 0, 0, 1) 100%);
}

.gold_border.success::before {
  background: linear-gradient(90deg, rgb(0, 102, 29) 0%, rgb(43, 167, 78) 100%);
}

.gold_border.danger::before {
  background: linear-gradient(90deg, rgba(38, 0, 0, 1) 0%, rgba(77, 0, 0, 1) 100%);
}

.gold_border.warning::before {
  background: linear-gradient(90deg, rgba(59, 42, 0, 1) 0%, rgba(115, 82, 0, 1) 100%);
}


:root {
  --modal-width: 350px;
  --modal-height: auto;
}

/* modal */
.modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  background: rgba(0, 0, 0, 0.6);
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.show {
  visibility: visible;
  opacity: 1;
}

.modal>.content {
  position: relative;
  width: 100%;
  max-width: var(--modal-width);
  max-height: var(--modal-height);
  padding: 28px;
  margin: 16px;
  transform: translateY(-30px);
  transition: transform 0.3s ease;
  border-radius: 10px;
  background: linear-gradient(to right, #77530a, #ffd277, #77530a, #77530a, #ffd277, #77530a);
  background-size: 250%;
  /* animation: shineMove 1s linear infinite; */
}

.modal>.content::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 9px;
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url("/assets/image/bg-image.jpg");
  background-size: 160px 160px;
  background-position: center;
  background-repeat: repeat;
  z-index: -1;
}

.modal.show .content {
  transform: translateY(0);
}

.modal .content .close {
  position: absolute;
  top: -23px;
  right: -2px;
  border-radius: 40px;
  fill: #f9b301;
  color: #f9b301;
  font-size: 13px;
  cursor: pointer;
  align-items: center;
  width: 22px;
  height: 22px;
  justify-content: center;
  display: flex;
  background: linear-gradient(90deg, rgb(7, 140, 51) 0%, rgba(0, 87, 30, 1) 100%);
}


.modal_sub_title {
  font-family: "Agbalumo", system-ui;
  text-align: center;
  font-size: 13px;
  opacity: 0.9;
  color: #fdba32;
  margin-bottom: 15px;
}

.modal .input-group {
  display: flex;
  align-items: center;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 14px;
  border: 1px solid #d6a84b;
  background: rgba(0, 0, 0, 0.2);
}

.modal .input-group span {
  margin-right: 8px;
}

.modal .input-group input {
  background: transparent;
  border: none;
  outline: none;
  color: #fdba32;
  font-weight: 800;
  font-size: 14px;
  width: 100%;
}

.options {
  display: flex;
  justify-content: end;
  font-size: 12px;
  margin-bottom: 15px;
  color: #fdba32;
}

.login-btn {
  width: 100%;
}

:root {
  --drawer-width: 100%;
}

/* Drawer */
.drawer {
  position: fixed;
  top: var(--top-height);
  left: 0;
  width: 100%;
  z-index: 1;
  display: flex;
  justify-content: end;
  visibility: hidden;
  opacity: 0;
  background: rgba(0, 0, 0, 0.6);
  transition: all 0.4s ease;
}

.drawer.show {
  visibility: visible;
  opacity: 1;
}

.drawer>.content {
  width: 100%;
  height: calc(100vh - var(--top-height));
  max-width: calc(var(--drawer-width) - var(--sidebar-width));
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 87, 30, 1) transparent;
  transform: translateX(100%);
  transition: all 0.4s ease;
  background: linear-gradient(rgba(0, 0, 0, 0.6)), url("/assets/image/bg-image.jpg");
}

.drawer.show .content {
  transform: translateX(0);
}

.drawer>.content>.head {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 20px;
  background: #062609;
}

.drawer>.content>.body {
  padding: 10px 20px 12px;
}

.drawer .content .close {
  color: #ffbe3d;
  cursor: pointer;
  height: 32px;
  width: 32px;
  padding: 0px 5px;
  margin-left: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* banner slider */
.banner_slider {
  border-radius: 16px;
  overflow: hidden;
}

.banner_slider .swiper-slide {
  height: 280px;
}

.banner_slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner_slider .swiper-pagination-bullet {
  background: #fff;
  opacity: .5;
  width: 24px;
  height: 6px;
  border-radius: 3px !important;
}

.banner_slider .swiper-pagination-bullet-active {
  background: #00ffb3;
  opacity: 1;
}

/* category card */
.category_slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  line-height: 1;
  gap: 5px;
  min-width: fit-content;
}

.category_slider .swiper-slide .gold_border::before {
  background: #19763a !important;
}

.category_slider .swiper-slide .category_card .gold_text {
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
}

.provider_wrapper .swiper-slide .provider_card .gold_text {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.category_card {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 14px;
  line-height: 1;
}

.category_card img {
  width: 100%;
  height: 45px;
  border-radius: 5px;
}

@media (max-width: 600px) {
  .category_card {
    height: 24px;
    flex-direction: row;
    gap: 3px;
  }

  .category_card img {
    width: 40px;
    height: 32px;
  }
}

/* provider card */
.provider_wrapper {
  border: 2px solid #e0aa3d;
  padding: 5px !important;
  border-radius: 12px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.provider_wrapper .swiper-button-prev,
.provider_wrapper .swiper-button-next {
  width: 30px;
  height: 30px;
  background: linear-gradient(90deg, rgb(7, 140, 51) 0%, rgb(7, 140, 51) 100%);
  border-radius: 50px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
  z-index: 10;
}

.provider_wrapper .swiper-button-prev {
  left: 0;
}

.provider_wrapper .swiper-button-next {
  right: 0;
}

.provider_wrapper .swiper-button-prev::after,
.provider_wrapper .swiper-button-next::after {
  font-size: 14px;
  color: #fdba32;
  font-weight: 900;
}

.provider_card {
  font-size: 12px;
  line-height: 1;
}

/* game section slider */
.game-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.game-section .section-header .slider_btns {
  display: flex;
  align-items: center;
  gap: 4px;
}

.game-section .swiper-wrapper .swiper-slide {
  margin-top: 14px;
}

.game-section .section-header .slider_btns .swiper-button-prev,
.game-section .section-header .slider_btns .swiper-button-next {
  position: static;
  width: 32px;
  height: 30px;
  background: linear-gradient(90deg, rgb(7, 140, 51) 0%, rgba(0, 87, 30, 1) 100%);
  border-radius: 5px;
  margin-top: 2px;
}

.game-section .section-header .slider_btns .swiper-button-prev::after,
.game-section .section-header .slider_btns .swiper-button-next::after {
  font-size: 14px;
  color: #fdba32;
  font-weight: 900;
}

/* profile css */
.profile .content .input_group {
  max-width: 320px;
}

.input_group {
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  border-radius: 8px;
  padding: 8px;
  border: 1px solid #d6a84b;
  background: rgba(0, 0, 0, 0.2);
  margin-bottom: 12px;
  color: #fdba32;
}

.input_group span {
  margin-right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  fill: #fdba32;
}

.input_group input {
  background: transparent;
  border: none;
  outline: none;
  padding: 2px;
  color: #fdba32;
  font-size: 16px;
  width: 100%;
}

.vip_card {
  border-radius: 12px;
  padding: 24px 28px;
  background: rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

.vip_card .user_image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  padding: 16px;
  overflow: hidden;
  margin: 0 auto 30px;
  text-align: center;
  box-shadow: 0px 0px 14px rgb(0, 41, 14);
}

.vip_card .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.vip_card .vip_badge {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 2px 16px;
  border-radius: 30px;
  display: inline-block;
}

.vip_card .bronze {
  background: linear-gradient(90deg, #74432f, #68431e);
}

.vip_card .silver {
  background: linear-gradient(90deg, #828789, #b4b0b0);
}

.vip_card .gold {
  background: linear-gradient(90deg, #9f792d, #d8a338);
}

.vip_card .platinum {
  background: linear-gradient(90deg, #476d95, #387ec9);
}

.vip_card .vip {
  background: linear-gradient(90deg, #6b0c0c, #8f0b0b);
  color: #f9b301;
}

.bronze::before {
  content: "🥉 ";
}

.silver::before {
  content: "🥈 ";
}

.gold::before {
  content: "🥇 ";
}

.platinum::before {
  content: "💎 ";
}

.vip::before {
  content: "⭐ ";
}

.vip_card .grid {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid #49443b;
  border-radius: 8px;
  line-height: 1;
}

.vip_card .header h3 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.vip_card .label {
  color: #c3ab7a;
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 500;
}

.vip_card .value {
  font-size: 24px;
  font-weight: 700;
  color: #ffd277;
}

.vip_card .progress-container {
  height: 10px;
  background: #2a2a44;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 6px;
}

.vip_card .progress-bar {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #22c55e, #86efac);
  border-radius: 5px;
}

.vip_card .progress-text {
  font-size: 16px;
  color: #86efac;
  font-weight: 600;
}

.vip_card .remaining {
  color: #f87171;
}

.profile_home_menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 8px;
}

.profile_home_menu .menu_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  line-height: 1;
  background: rgba(0, 0, 0, 0.2);
  padding: 10px;
  border-radius: 12px;
  cursor: pointer;
}


.profile {
  display: flex;
}

.profile .profile_sidebar {
  width: 220px;
  padding: 16px;
  position: relative;
  overflow: auto;
}

.profile .content {
  flex: 1;
  padding: 16px 30px;
  overflow: hidden;
}

.profile .content h2 {
  font-size: 24px;
  margin-bottom: 16px;
  text-align: center;
}

.profile .content .btn {
  padding: 12px 20px;
  font-size: 15px;
}

.profile_sidebar::after {
  content: "";
  position: absolute;
  background: linear-gradient(to bottom, #77530a, #ffd277, #77530a, #77530a, #ffd277, #77530a);
  background-size: 100% 250%;
  top: 0;
  right: 0;
  height: 100%;
  width: 2px;
}

.profile_sidebar .tab-btn {
  width: 100%;
  text-align: start;
  margin-bottom: 8px;
}


.payment_method {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.payment_method .method {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  color: #d6a84b;
  border: 1px solid #fdb9325c;
  background: linear-gradient(90deg, rgb(0, 41, 14) 0%, rgba(0, 87, 30, 1) 100%);
  position: relative;
  transition: 0.3s ease;
}

.payment_method .method input {
  display: none;
}

.payment_method .method .radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #fdb932;
  position: relative;
  flex-shrink: 0;
  margin-right: 5px;
}

.payment_method .method .radio::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #fdb932;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 0.2s ease;
}

.payment_method .method img {
  width: 20px;
  border-radius: 2px;
}

.payment_method .method input:checked+.radio::after {
  transform: translate(-50%, -50%) scale(1);
}

.payment_method .method:has(input:checked) {
  color: #ffd700;
  border: 1px solid #fdba32;
}

.content .note {
  padding: 12px 16px;
  border-radius: 8px;
  margin: 16px 0;
  font-size: 14px;
  color: #f3bd52;
  background: #fbdbd53c;
  border: 1px solid #d6a84b;
}

.amount_section .amount_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 10px;
  margin: 4px 0 16px;
}

.amount_section .amount_grid button {
  height: 38px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1px solid #d8a338;
  position: relative;
  background: transparent;
  color: #f3bd52;
  overflow: hidden;
}

.amount_section .amount_grid button span {
  position: absolute;
  top: 0;
  right: -4px;
  font-size: 10px;
  background: #d8a338;
  color: #f1f1f1;
  padding: 1px 6px;
  border-bottom-left-radius: 8px
}

.amount_section .limit {
  font-size: 12px;
  margin-bottom: 10px;
  font-weight: 600;
}

.profile_section .verify_input_field {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.profile_section .verify_input_field .verify_btn {
  padding: 10px;
  border-radius: 8px;
  color: #f3bd52;
  font-size: 16px;
  border: 1px solid #d6a84b;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}


@media (max-width: 900px) {
  .profile {
    display: flex;
  }

  .profile .profile_sidebar {
    width: 200px;
    padding: 16px;
  }

  .profile .content {
    padding: 16px 20px;
  }

  .profile .content h2 {
    font-size: 20px;
    margin-bottom: 12px;
  }
}

@media (max-width: 600px) {
  .profile .content h2 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .profile {
    display: flex;
    flex-direction: column;
  }

  .profile .profile_sidebar {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    position: relative;
  }

  .profile_sidebar::after {
    content: none;
  }

  .profile_sidebar::before {
    content: "";
    position: absolute;
    background: linear-gradient(to right, #77530a, #ffd277, #77530a, #77530a, #ffd277, #77530a);
    background-size: 250%;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
  }

  .profile_sidebar .btn {
    margin-bottom: 0;
    padding: 8px;

  }

  .profile .content {
    padding: 16px;
  }

  .input_group {
    max-width: 100%;
  }

  .profile .content .btn {
    display: block;
    width: 100%;
    max-width: fit-content;
    margin: auto;
  }
}


.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-btn {
  background: #77530a81;
}

.tab-btn.active {
  background: linear-gradient(to right, #77530a, #ffd277, #77530a, #77530a, #ffd277, #77530a);
  background-size: 250%;
}

/* profile tab stepper */
.profile_section .stepper {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 500px;
  margin: 30px auto;
}

.profile_section .stepper .step {
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile_section .stepper .circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 3px solid #e0e0e0;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}

.profile_section .stepper .step.completed .circle {
  background: #d8a338;
  border-color: #d8a338;
}

.profile_section .stepper .step.completed .circle::after {
  content: "✓";
}

.profile_section .stepper .line {
  flex: 1;
  height: 3px;
  background: #e0e0e0;
  transition: 0.3s;
}

.profile_section .stepper .line.active {
  background: #d8a338;
}


/* table */
.history_tab {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
}

.history_tab_btn {
  padding: 8px 16px;
  border: 1px solid #043609;
  color: #dcdcdc;
  background: linear-gradient(90deg, rgb(7, 140, 51) 0%, rgba(0, 87, 30, 1) 100%);
  cursor: pointer;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}

.history_tab_btn.active,
.history_tab_btn:hover {
  color: #f3bd52;
}

.history_tab_content {
  display: none;
  margin-top: 10px;
}

.history_tab_content.active {
  display: block;
}

.table_wrapper {
  overflow-x: auto;
}

.table_wrapper .table {
  width: 100%;
  border: 1px solid #FFD700;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 8px;
  overflow: hidden;
}

.table_wrapper .table:last-child {
  border-bottom: none;
}

.table_wrapper .table thead th {
  color: #f9b301;
  background-color: rgba(0, 0, 0, 0.2);
  text-align: left;
  font-size: 15px;
  padding: 6px 12px;
  border-bottom: 1px solid #FFD700;
}

.table_wrapper .table tbody tr td {
  padding: 4px 12px;
  font-size: 14px;
  color: #ffd277;
  border-bottom: 1px solid #FFD700;
}

.table_wrapper .table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 8px;
}

.table_wrapper .table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 8px;
}

.social_media {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.social_media a img {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 !important;
  filter: contrast(150%);
}

.social_media a:hover {
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .social_media {
    right: 5px;
  }

  .social_media a img {
    height: 36px;
    width: 36px;
  }
}


/*  */
.modal-header {
  background: linear-gradient(90deg, rgb(1, 69, 24) 0%, rgba(0, 87, 30, 1) 100%);
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.modal-header p {
  line-height: 1.3;
}

.warning-text {
  margin-bottom: 16px;
  color: #f9b301;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
}

.wallet-box {
  padding: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #f3bd52;
  background: #fbdbd53c;
  border: 2px solid #d6a84b;
  margin-bottom: 16px;
}

.deposit-form label {
  font-weight: bold;
  display: block;
}

/* Offer card */
.offer_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 16px;
}

.offer_card {
  width: 100%;
  height: fit-content;
  border: 1px solid #d6a84b;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.offer_card img {
  border-radius: 0;
}

.offer_card_info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  padding: 6px 10px;
}

.offer_card_info p {
  line-height: 1;
}

@media (max-width: 600px) {
  .offer_grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
    padding: 12px;
  }
}

.inviteModal_trophy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #043609;
  padding: 12px;
  border: 2px solid #062609;
  border-radius: 12px;
  margin-bottom: 16px;
}

.inviteModal_trophy img {
  width: 100px;
  height: auto;
}



.share-section {
  display: flex;
  justify-content: center;
  padding: 12px;
}

.share-container {
  margin-top: 16px;
}

.share-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 8px 0 18px;
}

.share-icons .icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: 0.3s ease;
  text-decoration: none;
}

.share-icons .icon:hover {
  transform: translateY(-4px);
  opacity: 0.9;
}

.fb {
  background: #1877f2;
}

.x {
  background: #111;
}

.tg {
  background: #0088cc;
}

.wa {
  background: #25d366;
}

.msg {
  background: #34a853;
}

.copy-box {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
}

.copy-box input {
  flex: 1;
}


.leaderboard {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 16px;
  background: linear-gradient(90deg, rgb(7, 140, 51) 0%, rgba(0, 87, 30, 1) 100%);
  padding: 12px;
  border-radius: 12px;
}

.rank_card {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rank_card .image {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.rank_card .image img {
  border-radius: 50%;
}

.rank_card .rank_number {
  position: absolute;
  top: -4px;
  left: 0px;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  color: gold;
}

.user_info .phone,
.user_info .amount {
  line-height: 1.3;
  color: goldenrod
}


.leaderboard-wrapper {
  width: 100%;
  height: 120px;
  overflow: hidden;
}

.swiper {
  height: 100%;
}

.leaderboard_user_list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 8px;
  border-radius: 20px;
  color: #d8a338;
  margin-bottom: 5px;
}

.leaderboard_user_list p {
  line-height: 1;
  padding: 0 8px;
  text-align: center;

}

@media (max-width: 600px) {
  .leaderboard {
    flex-direction: column;
    gap: 12px;
  }

  .leaderboard-wrapper {
    height: 150px;
  }
}

.ajaxres-container {
  position: fixed;
  max-width: 350px;
  z-index: 201;
  right: 0;
}

.ajaxres-container>div {
  position: relative;
}

#ajaxresults {
  position: absolute;
  top: 10px;
  right: 30px;
  width: 350px;
  max-width: calc(100%-30px);
  z-index: 9999;
}

#ajaxresults>div {
  padding: 10px 30px 10px 15px;
  margin-bottom: 10px;
  width: 100%;
  position: relative;
  border: 1px solid;
  border-radius: 3px;
}

@media only screen and (max-width: 400px) {
  .ajaxres-container {
    max-width: 200px;
  }

  #ajaxresults {
    width: 200px;
  }
}

#ajaxresults>div>i.fa-xmark {
  position: absolute;
  right: 10px;
  top: calc(50% - 7px);
  cursor: pointer;
  color: inherit !important;
}

#ajaxresults .success {
  color: #058840;
  background-color: #d5f1e3;
  border-color: #c1ead3;
}

#ajaxresults .danger {
  color: #a91b3e;
  border-color: #ffc5d4;
  background-color: #f6d1dc;
}

#ajaxresults .warning {
  color: #a07700;
  border-color: #f6e7b1;
  background-color: #ffeeb1;
}

#ajaxresults .info {
  color: #484848;
  border-color: #dddddd;
  background-color: #e4e4e4;
}

.errnotediv {
  overflow: auto;
  line-height: 16px;
  color: #d91111;
  font-size: 13px;
}


.login_input_group {
  margin-bottom: 12px;
}

.login_input_group .input_group {
  margin-bottom: 0;
}

.login_input_group .errnotediv {
  line-height: 14px;
  font-weight: 500;
  color: #d91111;
  font-size: 13px;
  margin-top: 4px;
  overflow: hidden;
}


/* pagination */
.pagination_wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.pagination {
  list-style: none;
  display: flex;
  gap: 6px;
  padding: 8px 12px;
  background: #00000050;
  border-radius: 50px;
  border: 1px solid #d4af37;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.pagination li,
.pagination li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;
  color: #d4af37;
  border: 1px solid #d4af37;
  transition: 0.3s ease;
  cursor: pointer;
}


.pagination li:hover,
.pagination li.active {
  background: #d4af37;
  color: #000;
}

.pagination li span:hover,
.pagination li span.active {
  background: #d4af37;
  color: #000;
  cursor: default;
}

.page_arrow {
  font-size: 18px;
}

@media (max-width: 600px) {
  .pagination {
    gap: 4px;
    padding: 5px 8px;
  }

  .pagination li,
  .pagination li span {
    width: 25px;
    height: 25px;
    font-size: 11px;
    font-weight: 500;
  }
}




.rebet_info {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.rebet_info img {
  margin: 12px 0;
}

.rebet_info button {
  padding: 12px;
  width: 120px;
  line-height: 1;
  font-size: 16px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(45deg, gold, orange);
  font-weight: 600;
  cursor: pointer;
}

.rebet_info .claim_card {
  display: flex;
  width: 100%;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.4);
  color: gold;
  padding: 12px;
  line-height: 1.3;
  border-radius: 12px;
  margin-top: 16px;
}

.none {
  display: none;
}






.sm_pagination_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 4px;
  border-radius: 40px;
  background: rgba(0, 0, 0, 0.3);
  width: fit-content;
  margin: auto;
  margin-top: 6px;
}

.sm_pagination_wrapper .page_btn {
  border: none;
  background: transparent;
  font-size: 10px;
  cursor: pointer;
  border-radius: 50%;
  min-width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fdba32;
  font-weight: 600;
}

.sm_pagination_wrapper .page_btn:hover {
  background: #058840;
}

.sm_pagination_wrapper .page_btn.active {
  background: #3b82f6;
  color: white;
  font-weight: 600;
}

.sm_pagination_wrapper .page_btn.prev,
.sm_pagination_wrapper .page_btn.next {
  font-size: 12px;
}

.sm_pagination_wrapper .dots {
  line-height: 1.2;
  color: #fdba32;
}



.messenger {
  position: fixed;
  right: 20px;
  bottom: 50px;
  z-index: 50;
  cursor: pointer;
}

.messenger img {
  height: 44px;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  overflow: hidden;
}

.footer-support-container {
  position: fixed;
  right: 65px;
  bottom: 50px;
  background: rgb(11 76 33);
  height: 500px;
  width: 100%;
  max-width: 350px;
  border-radius: 12px;
  z-index: 21;
  overflow-y: auto;
  scroll-behavior: smooth;
}

@media (max-width: 600px) {
  .messenger {
    right: 5px;
    bottom: 70px;
  }

  .footer-support-container {
    right: 50px;
    bottom: 75px;
    max-width: 300px;
  }
}


.alert {
  margin-top: 10px;
  padding: 12px 16px;
  border-radius: 5px;
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1.2;
  text-align: center;
  z-index: 99999;

  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0px 5px rgba(0, 0, 0, 0.5);
}

/* success */
.alert-success {
  color: #00c51a;
  background: #00ff0a1c;
}

/* danger */
.alert-danger {
  color: #ff4b5c;
  background: #ff001759;
}

/* warning */
.alert-warning {
  color: #fff351;
  background: #fff9004f;
}

/* info */
.alert-info {
  color: #b065ff;
  background: #d500e157;
}

/* primary */
.alert-primary {
  color: #377dff;
  background: #0035ff63;
}

/* light */
.alert-light {
  color: #d9e7ff;
  background: #5962736b;
}