/* 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 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.copied::after {
  position: absolute;
  top: 8px;
  right: 12%;
  width: 100px;
  display: block;
  content: "COPIED";
  font-size: 1em;
  padding: 5px 5px;
  color: #fff;
  background-color: #ff7000;
  border-radius: 3px;
  opacity: 0;
  will-change: opacity, transform;
  animation: showcopied 1.5s ease;
}

@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  50% {
    opacity: 0.7;
    transform: translateX(40%);
  }

  70% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
  }
}

.cookies-card {
  width: 520px;
  padding: 30px;
  color: #fdfdfd;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all 0.5s;
  background: #261a0f;
  border-radius: 5px;
}

.cookies-card.hide {
  bottom: -500px !important;
}

.radius--10px {
  border-radius: 10px;
}

.cookies-card__icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #6e6f70;
  color: #fff;
  font-size: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.cookies-card__content {
  margin-bottom: 0;
}

.cookies-btn {
  color: #363636;
  text-decoration: none;
  padding: 10px 35px;
  margin: 3px 5px;
  display: inline-block;
  border-radius: 999px;
}

.cookies-btn:hover {
  color: #363636;
}

@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: #1a1a1a;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  -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 #1a1a1a 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;
  }
}

/* ////////////////// select 2 css //////////////// */
.select2-dropdown {
  border: 0 !important;
  margin-top: 8px !important;
  border-radius: 5px !important;
  box-shadow: 0 3px 9px rgba(50, 50, 9, 0.05),
    6px 4px 19px rgb(115 103 240 / 20%);
}

.select2-search--dropdown {
  padding: 10px 10px !important;
  border-color: #ced4da !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border-color: #ced4da !important;
  padding: 10px 20px;
}

.select2-results__option.select2-results__option--selected,
.select2-results__option--selectable,
.select2-container--default .select2-results__option--disabled {
  padding: 12px 14px !important;
  border-bottom: 1px solid #eee;
}

.select2-results__option.select2-results__message {
  text-align: center !important;
  padding: 12px 14px !important;
}

.select2-container--default
  .select2-results
  > .select2-results__options::-webkit-scrollbar {
  width: 8px;
  border-radius: 5px;
}

.select2-container--default
  .select2-results
  > .select2-results__options::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 5px;
}

.select2-container--default
  .select2-results
  > .select2-results__options::-webkit-scrollbar-thumb {
  background: #ddd;
}

.select2-container--default
  .select2-results
  > .select2-results__options::-webkit-scrollbar-thumb:hover {
  background: #ddd;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  display: none;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow:after {
  position: absolute;
  right: 10px;
  top: 0;
  content: "\f107";
  font-family: "Line Awesome Free";
  font-weight: 900;
  transition: 0.3s;
}

.select2-container--default .select2-selection--single {
  border-color: #ced4da !important;
  border-width: 2px !important;
  border-radius: 0.375rem !important;
  padding: 0.375rem 0.75rem !important;
  height: 100% !important;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  top: 8px !important;
}

.select2-container--default.select2-container--open
  .select2-selection--single
  .select2-selection__arrow:after {
  transform: rotate(-180deg);
}

.select2-results__option:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.select2-results__option:first-child {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.select2-results__option.select2-results__option--selected,
.select2-container--default
  .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #f1f1f1 !important;
  color: #000 !important;
}

.select2-container--default
  .select2-search--dropdown
  .select2-search__field:focus {
  border-color: #ed1569 !important;
  box-shadow: 0 0 25px rgba(115, 103, 240 0.071) !important;
  outline: 0 !important;
}

.select2-dropdown .country-flag {
  width: 25px;
  height: 25px;
  border-radius: 8px;
}

.select2-dropdown .gateway-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0px !important;
}

.select2-dropdown .gateway-subtitle {
  font-size: 12px;
  margin-bottom: 0px !important;
}
.select2-container--open .select2-selection.select2-selection--single,
.select2-container--open .select2-selection.select2-selection--multiple {
  border-color: hsl(var(--base)) !important;
  border-radius: 0.375rem !important;
}

.gateway-card {
  padding: 15px;
}

button .spinner-border {
  --bs-spinner-width: 1.5rem;
  --bs-spinner-height: 1.5rem;
}

label.required:after {
  content: "*";
  color: #dc3545 !important;
  margin-left: 2px;
}

.header .nav-right a {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 5px 10px;
  border-radius: 4px;
}

.btn--dark:hover {
  color: #363636 !important;
  background-color: #ea5455 !important;
  box-shadow: 0 0 10px 2px #ea54558c !important;
}

.dw-web3 {
  --dw-surface: rgba(255, 255, 255, 0.06);
  --dw-surface-2: rgba(255, 255, 255, 0.04);
  --dw-border: rgba(255, 255, 255, 0.14);
  --dw-border-2: rgba(255, 255, 255, 0.09);
  --dw-text: rgba(255, 255, 255, 0.9);
  --dw-muted: rgba(255, 255, 255, 0.68);
  background: radial-gradient(1200px 600px at 20% -10%, rgba(124, 58, 237, 0.35), rgba(0, 0, 0, 0) 60%),
    radial-gradient(900px 500px at 85% 0%, rgba(6, 182, 212, 0.28), rgba(0, 0, 0, 0) 60%),
    linear-gradient(180deg, #040617 0%, #020c25 60%, #010716 100%);
  color: var(--dw-text);
}

.dw-web3 .dw-header .header__bottom {
  background: rgba(3, 10, 34, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--dw-border-2);
}

.dw-web3 .dw-header.menu-fixed .header__bottom {
  background: rgba(3, 10, 34, 0.82);
}

.dw-web3 .dw-nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid var(--dw-border);
  background: var(--dw-surface-2);
  color: #fff;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  white-space: nowrap;
}

.dw-btn:hover {
  color: #fff;
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.dw-btn--primary {
  border-color: transparent;
  background: linear-gradient(135deg, hsl(var(--base)) 0%, #7c3aed 55%, #06b6d4 100%);
  box-shadow: 0 18px 50px rgba(124, 58, 237, 0.25);
}

.dw-btn--primary:hover {
  background: linear-gradient(135deg, hsl(var(--base)) 0%, #8b5cf6 55%, #22d3ee 100%);
  box-shadow: 0 22px 60px rgba(34, 211, 238, 0.18), 0 18px 50px rgba(124, 58, 237, 0.25);
}

.dw-btn--ghost {
  background: rgba(255, 255, 255, 0.03);
}

.dw-btn--lg {
  padding: 12px 18px;
  border-radius: 16px;
  font-size: 16px;
}

.dw-btn--block {
  width: 100%;
}

.dw-hero {
  position: relative;
}

.dw-hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 520px at 18% 28%, rgba(172, 122, 53, 0.18), rgba(0, 0, 0, 0) 60%),
    radial-gradient(900px 520px at 85% 30%, rgba(6, 182, 212, 0.18), rgba(0, 0, 0, 0) 60%),
    linear-gradient(180deg, rgba(1, 7, 22, 0.3), rgba(1, 7, 22, 0.78));
  pointer-events: none;
}

.dw-hero__orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.55;
  pointer-events: none;
  animation: dwFloat 10s ease-in-out infinite;
}

.dw-hero__orb--a {
  left: -120px;
  top: 80px;
  background: radial-gradient(circle at 30% 30%, rgba(124, 58, 237, 0.75), rgba(124, 58, 237, 0));
}

.dw-hero__orb--b {
  right: -140px;
  top: 40px;
  animation-delay: -3s;
  background: radial-gradient(circle at 30% 30%, rgba(6, 182, 212, 0.65), rgba(6, 182, 212, 0));
}

@keyframes dwFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -18px, 0) scale(1.03);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.dw-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--dw-border-2);
  color: var(--dw-muted);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

.dw-hero__sub {
  color: var(--dw-muted);
  max-width: 56ch;
}

.dw-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.dw-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.dw-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dw-border-2);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  font-size: 13px;
}

.dw-hero-card {
  border-radius: 22px;
  border: 1px solid var(--dw-border-2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}

.dw-hero-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 18px 10px;
}

.dw-hero-card__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dw-hero-card__logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid var(--dw-border-2);
}

.dw-hero-card__name {
  font-weight: 700;
  line-height: 1.1;
}

.dw-hero-card__tag {
  font-size: 13px;
  color: var(--dw-muted);
}

.dw-hero-card__chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--dw-border-2);
  background: rgba(0, 0, 0, 0.12);
  color: rgba(255, 255, 255, 0.82);
}

.dw-hero-card__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 12px 18px 18px;
}

.dw-feature {
  display: flex;
  gap: 10px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--dw-border-2);
  background: rgba(255, 255, 255, 0.04);
}

.dw-feature__icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  flex: 0 0 auto;
}

.dw-feature__title {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.15;
}

.dw-feature__desc {
  margin-top: 4px;
  font-size: 12px;
  color: var(--dw-muted);
  line-height: 1.35;
}

.dw-hero-card__footer {
  padding: 0 18px 18px;
}

@media (max-width: 991px) {
  .dw-hero__orb {
    display: none;
  }
  .dw-hero-card__grid {
    grid-template-columns: 1fr;
  }
}

.dw-section__head {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.dw-section__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--dw-border-2);
  color: var(--dw-muted);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

.dw-section__title {
  margin-top: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.dw-section__sub {
  margin-top: 10px;
  color: var(--dw-muted);
}

.dw-web3 .dw-games.section--bg {
  background: transparent;
}

.dw-web3 .game-card {
  border-radius: 22px;
  border: 1px solid var(--dw-border-2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.dw-web3 .game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.6);
}

.dw-web3 .game-card__thumb {
  position: relative;
  overflow: hidden;
}

.dw-web3 .game-card__thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transform: scale(1);
  transition: transform 280ms ease;
}

.dw-web3 .game-card:hover .game-card__thumb img {
  transform: scale(1.04);
}

.dw-web3 .game-card__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(1, 7, 22, 0.85) 100%);
  pointer-events: none;
}

.dw-web3 .game-card__content {
  padding: 16px 16px 18px;
}

.dw-web3 .game-card .game-name {
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.dw-web3 .game-card .dw-btn {
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 14px;
}

.dw-web3 .game-card .dw-btn--primary {
  box-shadow: 0 14px 40px rgba(124, 58, 237, 0.22);
}

.dw-web3 .game-card.style--two .game-card__thumb img {
  height: 200px;
}

.dw-web3 .d-widget {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border-color: var(--dw-border-2);
  border-radius: 22px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.5);
}

.dw-web3 .dashbaord-widget-card {
  gap: 14px;
}

.dw-web3 .d-widget-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.65), rgba(6, 182, 212, 0.45));
  color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 45px rgba(124, 58, 237, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.dw-web3 .d-widget-invest .d-widget-icon,
.dw-web3 .d-widget-win .d-widget-icon,
.dw-web3 .d-widget-balance .d-widget-icon {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.65), rgba(6, 182, 212, 0.45));
  box-shadow: 0 18px 45px rgba(34, 211, 238, 0.16), 0 18px 45px rgba(124, 58, 237, 0.18);
}

.dw-web3 .d-widget-content {
  padding-left: 0;
  width: auto;
}

.dw-web3 .d-widget-content p {
  color: var(--dw-muted);
  margin-bottom: 6px;
  font-weight: 600;
}

.dw-web3 .d-widget .title {
  font-weight: 900;
  letter-spacing: -0.02em;
}

.dw-web3 .table {
  color: rgba(255, 255, 255, 0.86);
}

.dw-web3 .table thead tr th {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.75), rgba(6, 182, 212, 0.55));
  color: rgba(255, 255, 255, 0.95);
  border-bottom: 0;
}

.dw-web3 .table tbody {
  background: transparent;
}

.dw-web3 .table tbody tr {
  background: rgba(255, 255, 255, 0.03);
}

.dw-web3 .table tbody tr td {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dw-web3 .modal-content.section--bg {
  background: linear-gradient(180deg, rgba(3, 10, 34, 0.85), rgba(3, 10, 34, 0.65));
  border: 1px solid var(--dw-border-2);
  border-radius: 20px;
}

.dw-ticker {
  margin-top: 26px;
  padding-bottom: 6px;
  position: relative;
  z-index: 3;
}

.dw-web3 .dw-ticker .tradingview-widget-container {
  border-radius: 18px;
  border: 1px solid var(--dw-border-2);
  background: rgba(3, 10, 34, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
}

.dw-web3 .dw-ticker .tradingview-widget-copyright {
  display: none;
}

.dw-web3 .dw-top-ticker {
  padding: 8px 0;
  background: rgba(3, 10, 34, 0.55);
  border-bottom: 1px solid var(--dw-border-2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.dw-web3 .dw-top-ticker .tradingview-widget-container {
  border-radius: 16px;
  border: 1px solid var(--dw-border-2);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}
