/* Copy Animation */
.base-color {
  color: hsl(var(--main)) !important;
}

.copyInput {
  display: inline-block;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}


.cookies-card {
  width: 520px;
  padding: 30px;
  color: #1E2337;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all .5s;
  border-radius: 8px;
  background: hsl(var(--background-color));
  border: 1px solid hsl(var(--border-color));
}

.cookies-card.hide {
  bottom: -500px !important;
}

.radius--10px {
  border-radius: 10px;
}

.cookies-card__icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: hsl(var(--base));
  background-color: hsl(var(--base)/0.2);
  font-size: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.cookies-card__content {
  margin-bottom: 0;
}

.cookies-btn {
  color: hsl(var(--heading-color));
  text-decoration: none;
  padding: 10px 35px;
  margin: 3px 5px;
  display: inline-block;
  border-radius: 999px;
}

.cookies-btn:hover {
  color: hsl(var(--base));
}


@media (max-width: 767px) {
  .cookies-card {
    width: 100%;
    left: 0;
    bottom: 0;
    font-size: 14px;
    padding: 15px;
  }
}




.hover-input-popup {
  position: relative;
}

.input-popup {
  display: none;
}

.hover-input-popup .input-popup {
  display: block;
  position: absolute;
  bottom: 130%;
  left: 50%;
  width: 280px;
  background-color: hsl(var(--section-bg));
  color: hsl(var(--heading-color));
  padding: 20px;
  border-radius: 5px;
  border: 1px solid hsl(var(--border-color));
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.input-popup::after {
  position: absolute;
  content: '';
  bottom: -19px;
  left: 50%;
  margin-left: -5px;
  border-width: 10px 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent hsl(var(--section-bg)) transparent;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.input-popup p {
  padding-left: 20px;
  position: relative;
}

.input-popup p::before {
  position: absolute;
  content: '';
  font-family: 'Line Awesome Free';
  font-weight: 900;
  left: 0;
  top: 4px;
  line-height: 1;
  font-size: 18px;
}

.input-popup p.error {
  text-decoration: line-through;
}

.input-popup p.error::before {
  content: "\f057";
  color: #ea5455;
}

.input-popup p.success::before {
  content: "\f058";
  color: #28c76f;
}



.show-filter {
  display: none;
}

@media(max-width:767px) {
  .responsive-filter-card {
    display: none;
    transition: none;
  }

  .show-filter {
    display: block;
  }
}

.gateway-card {
  padding: 15px;
}

.payment-card-title {
  padding: 13px 25px;
  text-align: center;
  background-color: hsl(var(--section-bg));
  border-radius: 5px;
  border: 0;
  margin-bottom: 0px;
  color: hsl(var(--white));
}

.payment-system-list {
  --thumb-width: 100px;
  --thumb-height: 40px;
  --radio-size: 12px;
  --border-color: hsl(var(--danger));
  --hover-border-color: hsl(var(--base));
  background-color: hsl(var(--section-bg));
  border-radius: 8px;
  height: 100%;

}


.payment-system-list.is-scrollable {
  max-height: min(388px, 70vh);
  overflow-x: auto;
  padding-block: 4px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;

}

.payment-system-list.is-scrollable::-webkit-scrollbar-thumb {
  background-color: hsl(var(--base));
  border-radius: 10px;
}

.payment-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 18px;
  transition: all 0.3s;
  border: 1px solid transparent;
  border-left: 3px solid transparent;
}

.payment-item:not(:last-child) {
  border-bottom: 1px solid hsl(var(--base)/0.1);
}

.payment-item:first-child {
  border-top-color: hsl(var(--base)/0.1);
  border-radius: 5px 5px 0 0;
}

.payment-item:has(.payment-item__radio:checked) {
  border-left: 3px solid var(--hover-border-color);
  border-radius: 0px;
}

.payment-item__check {
  border: 3px solid transparent;
}

.payment-item:has(.payment-item__radio:checked) .payment-item__check {
  border: 3px solid hsl(var(--base));
}

.payment-item__info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: calc(100% - var(--thumb-width))
}

.payment-item__check {
  width: var(--radio-size);
  height: var(--radio-size);
  border: 1px solid hsl(var(--base));
  display: inline-block;
  border-radius: 100%;

}

.payment-item__name {
  padding-left: 10px;
  width: calc(100% - var(--radio-size));
  transition: all 0.3s;
  color: hsl(var(--base-l-800));
}

.payment-item__thumb {
  width: var(--thumb-width);
  height: var(--thumb-height);
  text-align: right;
  padding-left: 10px;

  &:has(.text) {
    width: fit-content;
  }
}

.payment-item__thumb img {
  max-width: var(--thumb-width);
  max-height: var(--thumb-height);
  object-fit: cover;
}


.deposit-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.deposit-info__title {
  max-width: 50%;
  margin-bottom: 0px;
  text-align: left;
}

.deposit-info__title .text {
  color: hsl(var(--base-l-800));
}

.deposit-info__input {
  max-width: 50%;
  text-align: right;
  width: 100%;
}

.deposit-info__input-select {
  border: 1px solid hsl(var(--border-color));
  width: 100%;
  border-radius: 5px;
  padding-block: 6px;
}

.deposit-info__input-group {
  border: 1px solid hsl(var(--border-color));
  border-radius: 5px;

  .deposit-info__input-group-text {
    align-self: center;
    padding-left: 5px;
  }

}

.deposit-info__input-group .form--control {
  padding: 5px;
  border: 0;
  height: 35px;
  text-align: right;
}

.deposit-info__input-group .form--control:focus {
  box-shadow: unset;
}

.info-text .text,
.deposit-info__input .text {
  font-size: 14px;

}

.deposit-info__title .text.has-icon {
  display: flex;
  align-items: center;
  gap: 5px
}

.total-amount {
  border-top: 1px solid hsl(var(--border-color));
}

.total-amount .deposit-info__title {
  font-weight: 600;
}

.payment-item__btn {
  border: 0;
  border-block: 1px solid hsl(var(--border-color));
  border-bottom: 0;
  color: hsl(var(--base-l-800));
  background-color: hsl(var(--section-bg));
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  font-weight: 700;
}

.payment-item:hover+.payment-item__btn {
  border-top-color: hsl(var(--base)/0.1);
}

button .spinner-border {
  --bs-spinner-width: 1.5rem;
  --bs-spinner-height: 1.5rem;
}

.pricing-card-pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.pricing-card-pricing__old {
  font-size: 18px;
  font-weight: 600;
  color: hsl(var(--heading-color)/0.45);
  margin: 0;
}

.pricing-card-pricing__old del {
  text-decoration-thickness: 3px;
  text-decoration-color: hsl(var(--danger));
}

@media (max-width: 575px) {
  .pricing-card-pricing__old {
    font-size: 16px;
  }
  .pricing-card-pricing {
    gap: 4px;
  }
}

/* Header enhancements for authenticated users */
.header-auth-item .btn--base {
  background: linear-gradient(130deg, hsl(var(--base)), hsl(var(--base-two)));
  border: 0;
  color: #fff;
  box-shadow: 0 16px 32px hsl(var(--base) / 0.2);
  font-weight: 700;
  padding-inline: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header-auth-item .btn--base:hover,
.header-auth-item .btn--base:focus {
  color: #fff;
  box-shadow: 0 18px 34px hsl(var(--base) / 0.24);
  transform: translateY(-1px);
}

.header-auth-balance .btn {
  background: #fff;
  color: #1a1a1a;
  border-radius: 14px;
  font-weight: 700;
  padding: 10px 18px;
  box-shadow: 0 16px 30px hsl(var(--base) / 0.15);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid hsl(var(--white) / 0.4);
}

.header-auth-balance .btn.btn-outline--base {
  background: #fff !important;
  color: #1a1a1a !important;
  border-color: hsl(var(--base) / 0.3) !important;
  box-shadow: 0 16px 30px hsl(var(--base) / 0.12);
}

.header-auth-balance .btn .icon svg {
  width: 18px;
  height: 18px;
  color: currentColor;
}

.header-auth-balance .btn:hover,
.header-auth-balance .btn:focus {
  color: #000;
  background: #fff;
  transform: translateY(-1px);
}

.service-grid-section {
  background: hsl(var(--section-bg));
}

@media (max-width: 991.98px) {
  .service-grid-section {
    display: none;
  }
}

.service-grid-section .section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px 26px;
  border-radius: 20px;
  border: 1px solid hsl(var(--border-color));
  background: #fff;
  text-decoration: none;
  color: hsl(var(--heading-color));
  box-shadow: 0 12px 28px hsl(var(--base) / 0.08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover,
.service-card:focus,
.service-card.is-active {
  transform: translateY(-6px);
  border-color: hsl(var(--base));
  box-shadow: 0 18px 36px hsl(var(--base) / 0.18);
}

.service-card.is-active {
  background: hsl(var(--base) / 0.08);
}

.service-card__credit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  background: hsl(var(--base) / 0.12);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: hsl(var(--base));
  margin-bottom: 16px;
}

.service-card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
  color: hsl(var(--heading-color));
}

.service-card__desc {
  margin-bottom: 0;
  color: hsl(var(--body-color));
}

.service-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: hsl(var(--base));
  transition: gap .25s ease;
}

.service-card__cta::after {
  content: '\f061';
  font-family: 'Line Awesome Free';
.prompt-list-item.is-active {
  border-radius: 14px;
  border: 1px solid hsl(var(--base));
  background: hsl(var(--base) / 0.08);
}

  font-weight: 900;
  font-size: 13px;
}

.service-card:hover .service-card__cta,
.service-card:focus .service-card__cta,
.service-card.is-active .service-card__cta {
  gap: 10px;
}

.prompt-list-item.is-active {
  border-radius: 14px;
  border: 1px solid hsl(var(--base));
  background: hsl(var(--base) / 0.08);
}

.banner-credit-note-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.banner-credit-note {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-radius: 999px;
  background: hsl(var(--base) / 0.12);
  color: hsl(var(--heading-color));
  font-weight: 600;
  box-shadow: 0 12px 28px hsl(var(--base) / 0.1);
}

.banner-credit-note__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(120deg, hsl(var(--base)), hsl(var(--base-two)));
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.banner-credit-note__text {
  font-size: 15px;
  font-weight: 600;
}

.banner-credit-note__link {
  color: #008dff;
  text-decoration: underline;
  font-weight: 700;
}

.banner-credit-note__link:hover,
.banner-credit-note__link:focus {
  color: #006dcc;
}

@media (max-width: 575px) {
  .service-card {
    padding: 24px 22px;
  }

  .service-grid-section .section-heading {
    margin-bottom: 36px;
  }

  .banner-credit-note-wrapper {
    margin-top: 16px;
  }

  .banner-credit-note {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 20px;
    padding: 14px;
  }

  .banner-credit-note__text {
    font-size: 14px;
  }
}

/* ====================== Blog Details Refresh ====================== */
.blog-details {
  position: relative;
  padding: clamp(24px, 4vw, 48px);
  border-radius: 24px;
  background: linear-gradient(140deg, hsl(var(--white)/0.12), hsl(var(--section-bg)) 72%);
  border: 1px solid hsl(var(--white) / 0.12);
  box-shadow: 0 32px 60px hsl(var(--black) / 0.18);
  display: grid;
  gap: clamp(28px, 3vw, 44px);
}

.blog-details::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid hsl(var(--base) / 0.12);
  opacity: 0.7;
}

.blog-details__top {
  display: grid;
  gap: 12px;
  text-align: center;
}

.blog-details__title {
  margin: 0;
  font-size: clamp(1.75rem, 1.2vw + 1.6rem, 2.35rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: hsl(var(--heading-color));
}

.blog-details__date {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: hsl(var(--body-color));
  opacity: 0.82;
}

.blog-share {
  padding: 5px;
  border-radius: 16px;
  background: hsl(var(--white) / 0.06);
  border: 1px solid hsl(var(--white) / 0.1);
  display: flex;
  justify-content: center;
}

.blog-share .social-list {
  gap: 14px;
}

.blog-share .social-list__link {
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  color: hsl(var(--heading-color));
  background: hsl(var(--white));
  border: 0;
  box-shadow: 0 16px 30px hsl(var(--black) / 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-share .social-list__link i {
  font-size: 0.95rem;
  color: hsl(var(--base));
}

.blog-share .social-list__link:hover,
.blog-share .social-list__link:focus {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px hsl(var(--base) / 0.24);
  color: hsl(var(--base));
}

.blog-details__thumb {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 28px 48px hsl(var(--black) / 0.22);
}

.blog-details__thumb img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.blog-details__thumb:hover img {
  transform: scale(1.04);
}

.blog-details__content {
  display: grid;
  gap: clamp(20px, 3vw, 32px);
  font-size: clamp(1rem, 0.25vw + 1rem, 1.08rem);
  line-height: 1.85;
  color: hsl(var(--body-color));
}

.blog-details__content > * {
  margin: 0;
}

.blog-details__content .content-item > * + * {
  margin-top: clamp(12px, 1.1vw, 18px);
}

.blog-details__content .content-item :is(h2, h3, h4, h5, h6) {
  color: hsl(var(--heading-color));
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: clamp(12px, 1.6vw, 18px);
}

.blog-details__content .content-item h2 {
  font-size: 26px;
  margin-top:10px;
}

.blog-details__content .content-item h3 {
  font-size: 18px;
  margin-top:10px;
}

.blog-details__content .content-item h4 {
  font-size: clamp(1.3rem, 0.6vw + 1.1rem, 1.6rem);
}

.blog-details__content .content-item h5 {
  font-size: clamp(1.15rem, 0.5vw + 0.95rem, 1.35rem);
}

.blog-details__content .content-item h6 {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-details__content .content-item p {
  margin: 0;
  color: inherit;
}

.blog-details__content .content-item a {
  color: hsl(var(--base));
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: hsl(var(--base) / 0.4);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.blog-details__content .content-item a:hover,
.blog-details__content .content-item a:focus {
  text-decoration-color: hsl(var(--base));
}

.blog-details__content .content-item ul,
.blog-details__content .content-item ol {
  padding-left: clamp(20px, 6vw, 32px);
  display: grid;
  gap: 12px;
}

.blog-details__content .content-item li {
  position: relative;
}

.blog-details__content .content-item ul li::marker {
  color: hsl(var(--base));
}

.blog-details__content .content-item ol li::marker {
  font-weight: 600;
  color: hsl(var(--base));
}

.blog-details__content blockquote {
  margin: clamp(22px, 3vw, 36px) 0;
  padding: clamp(26px, 3.2vw, 40px);
  background: linear-gradient(135deg, hsl(var(--white)), hsl(var(--section-bg)) 90%);
  border-radius: 20px;
  border: 0;
  position: relative;
  color: hsl(var(--heading-color));
  box-shadow: 0 26px 48px hsl(var(--black) / 0.14);
}

.blog-details__content blockquote::before {
  content: "\201C";
  position: absolute;
  top: clamp(18px, 2vw, 24px);
  left: clamp(18px, 2vw, 26px);
  font-size: clamp(2.5rem, 2.6vw, 3.4rem);
  color: hsl(var(--base));
  opacity: 0.25;
}

.blog-details__content blockquote p {
  position: relative;
  z-index: 1;
  font-size: clamp(1.05rem, 0.4vw + 1rem, 1.2rem);
  font-weight: 600;
  color: inherit;
}

.blog-details__content blockquote cite {
  display: block;
  margin-top: 14px;
  font-size: 0.95rem;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: hsl(var(--base));
}

.blog-details__content img,
.blog-details__content figure {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 26px 48px hsl(var(--black) / 0.15);
}

.blog-details__content figure {
  margin: clamp(22px, 3vw, 36px) 0;
}

.blog-details__content figcaption {
  margin-top: 10px;
  font-size: 0.9rem;
  color: hsl(var(--body-color));
  opacity: 0.8;
  text-align: center;
}

.blog-details__content pre {
  margin: clamp(18px, 3vw, 28px) 0;
  padding: clamp(18px, 3vw, 28px);
  background: hsl(var(--black) / 0.75);
  color: hsl(var(--white));
  border-radius: 18px;
  font-size: 0.95rem;
  overflow: auto;
  box-shadow: inset 0 0 0 1px hsl(var(--white) / 0.08);
}

.blog-details__content code {
  font-family: "Fira Code", "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  background: hsl(var(--white) / 0.1);
  padding: 0.2em 0.5em;
  border-radius: 8px;
  color: hsl(var(--base));
}

.blog-details__content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: clamp(22px, 3vw, 36px) 0;
  font-size: 0.95rem;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 16px 32px hsl(var(--black) / 0.12);
}

.blog-details__content table thead {
  background: hsl(var(--base) / 0.2);
  color: hsl(var(--heading-color));
}

.blog-details__content table :is(th, td) {
  padding: 14px 18px;
  border-bottom: 1px solid hsl(var(--white) / 0.08);
}

.blog-details__content table tbody tr:nth-child(2n) {
  background: hsl(var(--white) / 0.04);
}

.blog-details__content table tbody tr:last-child td {
  border-bottom: 0;
}

.blog-details__content hr {
  opacity: 0.2;
  border-color: hsl(var(--white) / 0.15);
  margin: clamp(24px, 3vw, 40px) 0;
}

.blog-details__content .highlight {
  padding: clamp(16px, 2.5vw, 24px);
  border-radius: 16px;
  background: hsl(var(--base) / 0.1);
  border: 1px solid hsl(var(--base) / 0.25);
}

.blog-details__content .note,
.blog-details__content .warning,
.blog-details__content .info {
  padding: clamp(16px, 2.5vw, 22px);
  border-radius: 16px;
  border: 1px solid hsl(var(--white) / 0.14);
  background: hsl(var(--white) / 0.05);
}

.blog-details__content .warning {
  border-color: hsl(var(--warning));
  background: hsl(var(--warning) / 0.08);
}

.blog-details__content .info {
  border-color: hsl(var(--base));
  background: hsl(var(--base) / 0.08);
}

.blog-details__content .note {
  border-color: hsl(var(--success));
  background: hsl(var(--success) / 0.08);
}

@media (max-width: 991px) {
  .blog-details {
    padding: clamp(20px, 6vw, 32px);
    border-radius: 20px;
    gap: 28px;
  }

  .blog-share {
    padding: 16px;
  }
}

@media (max-width: 767px) {
  .blog-details {
    padding: clamp(18px, 6vw, 26px);
    border-radius: 18px;
  }

  .blog-share {
    padding: 14px;
  }

  .blog-share .social-list {
    justify-content: center;
  }

  .blog-share .social-list__link {
    width: 100%;
    justify-content: center;
  }

  .blog-details__content {
    font-size: 1rem;
  }

  .blog-details__content .content-item ul,
  .blog-details__content .content-item ol {
    padding-left: 20px;
  }

  .blog-details__content table {
    display: block;
    overflow-x: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .blog-share .social-list__link,
  .blog-details__thumb img {
    transition: none;
  }
}