:root {
  --game-bg: #1e2637;
  --game-card: #1e293b;
  --game-accent: #f97316;
  --game-yellow: #facc15;
}

body {
  color: white;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  overflow-x: hidden;
  background: var(--game-bg);
}

.glass-panel {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.orange-gradient {
  background: linear-gradient(to bottom, #fb923c, #f97316);
}

.blue-gradient {
  background: linear-gradient(to bottom, #38bdf8, #0ea5e9);
}

.nav-glow {
  box-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.logo-text {
  text-shadow:
    0 2px 0 #1e40af,
    0 4px 0 #1e3a8a;
  -webkit-text-stroke: 1px #1e40af;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-float-delayed {
  animation: float 4s ease-in-out infinite;
  animation-delay: 1s;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.bg-game-bg-blur {
  background: rgba(15, 23, 42, 0.8);
}

.border-white-20 {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.border-white-10 {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.cursor-pointer {
  cursor: pointer;
}

.bg-gradient-dark {
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent);
}

.text-game-accent {
  color: var(--game-accent) !important;
}

.ring-white-20 {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.category-container {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 10px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.game-btn-glossy {
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: white !important;
  font-weight: 800;
  text-transform: capitalize;
  padding: 4px 14px; /* Reduced padding */
  font-size: 0.85rem; /* Reduced font size */
  box-shadow:
    inset 0 3px 0 rgba(255, 255, 255, 0.3),
    0 3px 6px rgba(0, 0, 0, 0.4);
  transition: transform 0.1s active;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px; /* Reduced min-width */
}

.footer-btn-glossy {
  border-radius: 16px;
  padding: 8px;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  color: rgba(var(--bs-secondary-rgb),var(--bs-text-opacity))!important;
}

.footer-btn-glossy:hover,
.footer-btn-glossy:focus {
  color: #fff !important;
}
.footer-btn-glossy.active {
  background: transparent;
  box-shadow: none;
  border: none;
  color: #fff !important;
}

.game-btn-glossy.btn-glossy-inactive {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.4) !important;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Entrance Animations */
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.animate-slide-down {
  animation: slideDown 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.animate-slide-up {
  animation: slideUp 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.animate-slide-in-right {
  animation: slideInRight 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.animate-scale-in {
  animation: scaleIn 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Logo Neon Pulse */
@keyframes neonPulse {
  0%,
  100% {
    text-shadow:
      0 0 10px rgba(255, 255, 255, 0.5),
      0 2px 0 #1e40af,
      0 4px 0 #1e3a8a;
  }
  50% {
    text-shadow:
      0 0 20px rgba(255, 255, 255, 0.8),
      0 2px 0 #1e40af,
      0 4px 0 #1e3a8a,
      0 0 30px rgba(255, 255, 255, 0.4);
  }
}

.logo-bash-pulse {
  animation: neonPulse 2s ease-in-out infinite;
}

/* Button Squish Effect */
.btn-squish:active {
  transform: scale(0.92) !important;
  transition: transform 0.1s ease;
}

.fade-in-trigger {
  animation: fadeIn 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Staggered Grid Animation */
.game-card-item {
  opacity: 0;
  transform: translateY(20px);
}

.fade-in-trigger .game-card-item {
  animation: cardFadeIn 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.fade-in-trigger .game-card-item:nth-child(1) {
  animation-delay: 0.05s;
}
.fade-in-trigger .game-card-item:nth-child(2) {
  animation-delay: 0.1s;
}
.fade-in-trigger .game-card-item:nth-child(3) {
  animation-delay: 0.15s;
}
.fade-in-trigger .game-card-item:nth-child(4) {
  animation-delay: 0.2s;
}
.fade-in-trigger .game-card-item:nth-child(5) {
  animation-delay: 0.25s;
}
.fade-in-trigger .game-card-item:nth-child(6) {
  animation-delay: 0.3s;
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Icon Pop Animation */
.icon-pop {
  animation: iconPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes iconPop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.4);
  }
  100% {
    transform: scale(1);
  }
}

/* Enhanced Card Hover */
.game-card-hover {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.game-card-hover:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.4),
    0 10px 10px -5px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 77, 0, 0.4) !important;
}

.game-card-hover:hover img {
  transform: scale(1.1);
}

.game-card-hover img {
  transition: transform 0.5s ease;
}

.game-btn-glossy:active {
  transform: translateY(2px);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.3),
    0 2px 4px rgba(0, 0, 0, 0.4);
}

.btn-glossy-orange {
  background: linear-gradient(to bottom, #ff7e33, #ff4d00);
}

.btn-glossy-yellow {
  background: linear-gradient(to bottom, #ffb300, #ff8c00);
}

.btn-glossy-gold {
  background: linear-gradient(to bottom, #ffcc00, #ffa200);
}

.btn-glossy-inactive {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
  color: #94a3b8 !important;
}

/* From Uiverse.io by Allyhere */
.btn-donate {
  --clr-font-main: hsla(0 0% 20% / 100);
  --btn-bg-1: hsla(194 100% 69% / 1);
  --btn-bg-2: hsla(217 100% 56% / 1);
  --btn-bg-color: hsla(360 100% 100% / 1);
  --radii: 0.5em;
  cursor: pointer;
  padding: 0.9em 1.4em;
  min-width: 120px;
  min-height: 44px;
  font-size: var(--size, 1rem);
  font-weight: 500;
  background-size: 280% auto;
  background-image: linear-gradient(
    325deg,
    var(--btn-bg-2) 0%,
    var(--btn-bg-1) 55%,
    var(--btn-bg-2) 90%
  );
  border: none;
  border-radius: var(--radii);
  color: var(--btn-bg-color);
  box-shadow:
    0px 0px 20px rgba(71, 184, 255, 0.5),
    0px 5px 5px -1px rgba(58, 125, 233, 0.25),
    inset 4px 4px 8px rgba(175, 230, 255, 0.5),
    inset -4px -4px 8px rgba(19, 95, 216, 0.35);
}

.btn-donate:hover {
  background-position: right top;
}

.btn-donate:is(:focus, :focus-visible, :active) {
  outline: none;
  box-shadow:
    0 0 0 3px var(--btn-bg-color),
    0 0 0 6px var(--btn-bg-2);
}

/* Bootstrap Overrides */
.btn-orange {
  background: linear-gradient(to bottom, #fb923c, #f97316);
  border: none;
  color: white;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-orange:active {
  transform: scale(0.95);
}

.btn.btn-squish {
  background: transparent;
}

.games_title,
.agent_tabs_main {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 6px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.agent_tabs_main {
  display: flex;
  align-items: center;
}

.games_title_main .games_title a,
.btn.btn-primary,
.agent_tabs_main a {
  cursor: pointer;
  padding: 0.9em 0.9em;
  min-height: 25px;
  font-size: 14px;
  font-family: var(--primary-700) !important;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: white;
  font-weight: 800;
  text-transform: capitalize;
  box-shadow:
    inset 0 3px 0 rgba(255, 255, 255, 0.3),
    0 3px 6px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  background: #333a4a;
  justify-content: center;
}

.games_title_main .games_title a:hover,
.btn.btn-primary:hover {
  background-position: right top;
  color: white;
}

.games_title_main .games_title a:is(:focus, :focus-visible, :active),
.btn.btn-primary {
  background: linear-gradient(to bottom, #ff7e33, #ff4d00);
}

@media (prefers-reduced-motion: reduce) {
  .games_title_main .games_title a {
    transition: linear;
  }
}

.games_title_main .games_title .active,
.btn.btn-primary,
.btn.btn-primary:is(:focus, :focus-visible, :active),
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.agent_tabs_main a.active {
  color: white !important;
  background: linear-gradient(to bottom, #ff7e33, #ff4d00);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active {
  box-shadow: initial;
}

.btn.btn-primary {
  min-width: 100px;
}

.gmaes_card_main .gmaes_card_single article h4 {
  color: white;
}

.gmaes_card_main .gmaes_card_single {
  background: #131a2c;
}

.games_title_main .games_title {
  gap: initial;
  overflow: auto;
}

.games_title {
  padding: 10px 5px;
}

.games_title a,
.agent_tabs_main a {
  margin: 0px 5px;
}

.gmaes_card_main .gmaes_card_single .game_video {
  display: flex;
  justify-content: center;
}

.gmaes_card_main .game_video {
  position: relative;
}

.overlays {
  position: absolute; /* Sit on top of the page content */
  width: 100%; /* Full width (cover the whole page) */
  height: 100%; /* Full height (cover the whole page) */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7); /* Black background with opacity */
  z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
  cursor: pointer; /* Add a pointer on hover */
}

.gmaes_card_main .gmaes_card_single {
  border-radius: 20px;
}

.card.glass-effect {
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  color: #6b7280;
  transition: color 0.3s;
}

.vtg-settings__input {
  padding: 0.8rem 1rem 0.8rem 2.8rem;
}

input.vtg-settings__input:-webkit-autofill,
input.vtg-settings__input:-webkit-autofill:hover,
input.vtg-settings__input:-webkit-autofill:focus,
input.vtg-settings__input:-webkit-autofill:active,
.vtg-authLogin__input:-webkit-autofill,
.vtg-authLogin__input:-webkit-autofill:hover
.vtg-authLogin__input:-webkit-autofill:focus
.vtg-authLogin__input:-webkit-autofill:active {
  -webkit-text-fill-color: white !important;
  transition: background-color 5000s ease-in-out 0s;
  box-shadow: 0 0 0 1000px #151c2d inset !important;
  border: 1px solid #333a4a !important;
  background: transparent !important;
}

main {
  overflow: auto;
  padding-bottom: 40px;
}

.vtg-mall__btn--buy {
  font-family: var(--primary-700) !important;
  font-size: 14px !important;
}

.vtg-cw__inner,
.vtg-cw {
  margin-top: 18px;
}

.games_title_main .games_title a,
.agent_tabs_main a {
  font-size: 13px;
  overflow: hidden;
  letter-spacing: -0.5px;
}

.games_title_main .games_title a {
  width: fit-content;
  min-width: unset;
  white-space: nowrap;
}

.vtg-chw__empty {
  min-height: 250px;
}

.custom-pagination .pagination-item a {
  border-radius: 50%;
  color: #555555;
  border: 1px solid #343a49;
  background: transparent;
}

.custom-pagination .pagination-item.active .pagination-link,
.custom-pagination .pagination-item.active .pagination-link:hover,
.custom-pagination .pagination-item.active .pagination-link:focus {
  color: white;
  background: transparent !important;
  border: 1px solid white;
}

.agent-tabs-dropdown {
  position: relative;
  cursor: pointer;
  user-select: none;
  width: 100%;
  display: flex;
  align-items: center;
  font-family: var(--primary-400) !important;
}

.dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  font-family: var(--primary-400) !important;
  z-index: 999;
  border: 1px solid #333a4a;
  background: #151c2d;
  backdrop-filter: blur(25px);
  border-radius: 25px;
  font-size: 14px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.dropdown-list a {
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  display: block;
}

.dropdown-list a:hover,
.dropdown-list a.active {
  background: var(--Stroke-Line, #343a49);
}

.vtg-cw__tableBody td {
  word-break: normal !important;
}

.vtg-cw__history {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.bg_top {
  background: transparent !important;
}

.form-note {
  font-size: 12px;
  margin-top: 5px;
}

select.vtg-settings__input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url(../img/down_arrow.svg);
  background-position: calc(100% - 18px) 50%;
  background-size: 18px 18px;
  background-repeat: no-repeat;
  padding-right: 46px;
}

.lang_main .dropdown-menu .langu_lists li a:hover,
.lang_main .dropdown-menu .langu_lists li a:focus,
.btn-squish:hover,
.btn-squish:focus {
  color: #ffde26;
}

.lang_main .dropdown-menu {
  border-radius: 15px;
  border: 1px solid #333a4a;
  background: #151c2d;
  backdrop-filter: blur(25px);
  padding-bottom: 10px;
  padding-top: 10px;
  top: 22px !important;
}

.text-muted {
  color: #999999 !important;
}

.vtg-settings__headerBack {
  justify-content: flex-start !important;
  width: 30px !important;
}

.text-danger {
  color: #ff6d6d !important;
}

.btn-secondary {
  cursor: pointer;
  padding: 0.9em 0.9em;
  min-height: 25px;
  font-size: 14px;
  font-family: var(--primary-700) !important;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: white;
  text-transform: capitalize;
  box-shadow:
    inset 0 3px 0 rgba(255, 255, 255, 0.3),
    0 3px 6px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  background: #333a4a;
  justify-content: center;
  border: 1px solid var(--Stroke-Line, #343a49);
  background: var(--Stroke-Line, #343a49);
}

.btn.btn-secondary {
  min-width: 100px;
}

.status-page {
  padding: 1.5rem 0 2.5rem;
}

.status-card {
  padding: 10px;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--Stroke-Line, #343a49);
  background: var(--Dark-bg, #1d2536);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.status-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.5);
}

.status-icon span {
  font-size: 32px;
  color: #ff6d6d;
}

.status-title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.status-message {
  color: #9ca3af;
  font-size: 14px;
  margin-bottom: 1.5rem;
}

.deposit-pay-card {
  padding: 10px;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--Stroke-Line, #343a49);
  background: var(--Dark-bg, #1d2536);
  padding: 1.5rem;
  margin-bottom: 1rem;
}
.deposit-pay-card .payment-info {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}
.deposit-pay-card .payment-info strong {
  display: inline-block;
  min-width: 8rem;
  color: #999;
}
.deposit-pay-card .payment-info span:not(.payment-value) {
  color: #fff !important;
  font-weight: 500;
}
.deposit-pay-card .payment-info .payment-value {
  color: #fff !important;
  font-weight: 500;
}
.deposit-pay-card .payment-info #bankName,
.deposit-pay-card .payment-info #accountNum,
.deposit-pay-card .payment-info #accountName,
.deposit-pay-card .payment-info #depositAmount,
.deposit-pay-card .payment-info #remarks {
  color: #fff !important;
  font-weight: 500;
}
.qr-code-wrap {
  text-align: center;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
.qr-code-wrap #qrCodeContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.qr-code-wrap #qrCodeContainer canvas {
  max-width: 256px;
  width: 256px;
  height: 256px;
  border-radius: 8px;
  background: #fff;
  padding: 10px;
  display: block;
}
.qr-code-wrap #qrCodeContainer table {
  margin: 0 auto;
  border-radius: 8px;
  background: #fff;
  padding: 10px;
}
.qr-code-wrap .qr-caption {
  color: #999;
  font-size: 12px;
  margin-top: 0.5rem;
}
.payment-link-btn {
  margin-top: 1rem;
}
.countdown-timer-wrap {
  text-align: center;
  margin-bottom: 1rem;
  padding: 0.75rem;
  border: 1px solid #333a4a;
  background: #151c2d;
  backdrop-filter: blur(25px);
  border-radius: 8px;
}
.countdown-timer-wrap .countdown-label {
  color: #999;
  font-size: 12px;
  margin: 0 0 0.25rem 0;
}
.countdown-timer-wrap .countdown-display {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  font-variant-numeric: tabular-nums;
}

.vtg-settings__header {
  padding-top: 14px!important;
}

.vtg-sectionTitle--spaced {
  margin-top: 25px!important;
}

.vtg-quick {
  padding-bottom: 30px!important;
}

.status-icon.success-vtg span {
  font-size: 32px;
  color: #22c55e;
}

.status-icon.success-vtg {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.5);
}

.games_title_main .games_title a{
  padding: 0.6em 0.9em!important;
}

.agent_tabs_main a {
  padding: 1em 0.9em!important;
  letter-spacing: initial!important;
  width: 50%;
  display: block;
  text-align: center;
}

.only-play {
  position: absolute;
  /* background: linear-gradient(
      to top,
      rgba(255,255,255,0.45) 0%,
      rgba(255,255,255,0.35) 12%,
      rgba(255,255,255,0.25) 28%,
      rgba(255,255,255,0.15) 45%,
      rgba(255,255,255,0) 65%
  ); */
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  justify-content: center;
  z-index: 9;
  padding-top: 160px!important;
  padding-bottom: 10px!important;
}

.only-play button {
  min-width: 140px!important;
}

.gmaes_card_main .gmaes_card_single .game_video {
  border-radius: 20px;
}

.gmaes_card_main .gmaes_card_single .game_video button img {
  width: 19px;
  margin-left: 10px;
}


.gmaes_card_single {
  position: relative;
}

.gmaes_card_main .gmaes_card_single article p, .gmaes_card_main .gmaes_card_single article .game-desc-html {
  color: white;
}

.game_video .img-thumbnailss {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gmaes_card_main .gmaes_card_single .game_video {
  height: calc(var(--vh, 1vh) * 80 - 296px - env(safe-area-inset-bottom, 0px));
  min-height: 180px;
}

.info_btn svg {
  width: 12px;
}

.info_btn {
  color: #FFDE26;
}

.vtg-authLogin__input {
  font-size: 14px;
}

.vtg-settings__headerDivider {
  margin-bottom: 15px!important;
}

.agent_tabs_main {
  margin-bottom: 5px;
}

.card_details_main .single_card {
  padding: 16px 14px 14px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.tabs_content {
  padding: 16px 14px 14px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.swiper {
  width: 100%;
  margin-bottom: 0px;
}


.swiper-pagination {
  bottom: 20px !important;
  display: flex;
  justify-content: center;
  gap: 5px;
}


.swiper-pagination-bullet {
  width: 40px;
  height: 4px;
  border-radius: 20px;
  background: #8ea2c0;     
  opacity: 1;
  transition: all 0.4s ease;
}

/* active bar */
.swiper-pagination-bullet-active {
  background: #ff7e33;
  width: 40px;
}

.lines {
  height: 50px;
  width: 3px;
  display: block;
}

.orange-line {
  background: #FF6D6D;
}

.yellow-line {
  background: #FFDE26;
}

.ultimate-pass-value {
  font-family: var(--primary-700);
  font-size: 20px;
}

.text-gray {
  color: #999999!important;
}

.ultimate-pass-table {
  height: 300px;
}

.vtg-quick__item {
  text-align: center;
}

.quick-icon{
  width: 27px;
  height: 27px;
  color: #cfd8e3;   /* same grey tone */
  margin-bottom: 10px;
  transition: 0.25s ease;
}

.vtg-quick__item:hover .quick-icon{
  color: #ffffff;
  transform: translateY(-3px);
}

.settings_top {
  background: #1E2637 url(../img/settings_bg.png) center 77px/ 351px 16% no-repeat;
}

.games_title_main .games_title,
.games_title_main {
  width: 100%;
}

.swiper {
  margin-bottom: 0px;
}

.games_main {
  margin-top: 3px;
}

.banner-contaienrs {
  height: 19vh; 
  width: 100%;
}

.gmaes_card_main .gmaes_card_single article p, .gmaes_card_main .gmaes_card_single article .game-desc-html {
  color: white;
  height: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.gmaes_card_main .gmaes_card_single article {
  padding: 10px 20px;
}

.gmaes_card_main .gmaes_card_single article h4 {
  margin: 0 0 0.2rem;
}

.gmaes_card_main .gmaes_card_single article p, .gmaes_card_main .gmaes_card_single article .game-desc-html {
  font-size: 12px;
}

.games_title_main {
  margin-bottom: 3px;
}

.vtg-task__action--secondary {
  white-space: nowrap;
}

.vtg-coming-soon-btn {
  background: linear-gradient(to bottom, #ff7e33, #ff4d00)!important;
  border-radius: 25px!important;
}

.vtg-coming-soon-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 2rem;
}
.vtg-coming-soon-box {
    text-align: center;
    max-width: 360px;
}
.vtg-coming-soon-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.vtg-coming-soon-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.vtg-coming-soon-desc {
    color: #aaa;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}
.vtg-coming-soon-btn {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.info_btn_icon:hover > svg path {
  fill: black!important;
}


@media (min-height: 750px) {

    .gmaes_card_main .gmaes_card_single .game_video {
      min-height: 244px;
      max-height: 244px;
    }

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