/* 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;
}

.payment-card-title {
  padding: 13px 25px;
  text-align: center;
  background-color: #ed1569;
  border-radius: 5px;
  border: 0;
  margin-bottom: 0px;
  color: #fff;
}

.payment-system-list {
  --thumb-width: 100px;
  --thumb-height: 40px;
  --radio-size: 12px;
  --border-color: #cccccf59;
  --hover-border-color: #ed1569;
  background-color: transparent;
  border-radius: 5px;
  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: #ed1569;
  border-radius: 10px;
}

.payment-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 18px;
  border: 1px solid #fff;
  border-top-color: var(--border-color);
  transition: all 0.3s;
  border-left: 3px solid transparent;
}

.payment-item:first-child {
  border-top-color: #fff;
  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;
}

.payment-item:has(.payment-item__radio:checked) .payment-item__check {
  border: 3px solid #ed1569;
}

.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 #ed1569;
  display: inline-block;
  border-radius: 100%;
}

.payment-item__name {
  padding-left: 10px;
  width: calc(100% - var(--radio-size));
  transition: all 0.3s;
}

.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;
  border-radius: 5px;
}

.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__input {
  max-width: 50%;
  text-align: right;
  width: 100%;
}

.deposit-info__input-select {
  border: 1px solid var(--border-color);
  width: 100%;
  border-radius: 5px;
  padding-block: 6px;
}

.deposit-info__input-group {
  border: 1px solid 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;
  background: unset;
}

.deposit-info__input-group .form--control:focus {
  box-shadow: unset;
  border: none;
  background: 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 var(--border-color);
}

.total-amount .deposit-info__title {
  font-weight: 500;
}

.payment-item__btn {
  border: 0;
  border-block: 1px solid var(--border-color);
  border-bottom: 0;
  background: transparent;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  font-weight: 500;
}

.payment-item:hover + .payment-item__btn {
  border-top-color: #fff;
}

.payment-item__btn p,
span {
  color: #b5b5b5;
}

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;
}

/* ================= HERO 2026 ================= */

.hero-2026 {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.hero-2026__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
}

.hero-2026__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(109,252,155,0.15), transparent 40%);
}

.hero-2026__content {
    position: relative;
    z-index: 2;
}

.hero-2026__badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    margin-bottom: 20px;
}

.hero-2026__title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.hero-2026__text {
    color: #9aa4b2;
    margin-bottom: 25px;
}

/* buttons */
.btn-primary {
    padding: 12px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #6dfc9b, #3ee7ff);
    color: #04100b;
    font-weight: 700;
    margin-right: 10px;
}

.btn-outline {
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.2);
}

/* stats */
.hero-2026__stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.hero-2026__stats div strong {
    font-size: 20px;
}

.hero-2026__stats span {
    display: block;
    color: #888;
}

/* right card */
.hero-2026__card {
    position: relative;
    z-index: 2;

    padding: 30px;
    border-radius: 18px;

    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);

    border: 1px solid rgba(255,255,255,0.1);
}

.hero-2026__card-title {
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-2026__card-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

/* DASHBOARD 2026 */

.dashboard-2026 {
    position: relative;
}

.dashboard-2026__hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
    padding: 30px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(109,252,155,0.14), transparent 35%),
        rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.32);
}

.dashboard-2026__badge {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(109,252,155,0.10);
    color: #8dffb0;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.dashboard-2026__hero h2 {
    color: #fff;
    margin-bottom: 8px;
}

.dashboard-2026__hero p {
    color: rgba(238,246,255,0.66);
    margin: 0;
    max-width: 650px;
}

.dashboard-2026__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.dashboard-2026__btn,
.dashboard-2026__small-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 11px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    color: #fff !important;
    font-weight: 800;
}

.dashboard-2026__btn.primary {
    background: linear-gradient(135deg, #6dfc9b, #3ee7ff);
    color: #04100b !important;
    border: none;
}

.dashboard-2026__small-btn.danger {
    color: #ff8a8a !important;
    border-color: rgba(255,114,114,0.25);
}

.dashboard-2026__notice {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 26px;
    padding: 22px;
    border-radius: 20px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.10);
}

.dashboard-2026__notice.danger {
    border-color: rgba(255,114,114,0.25);
}

.dashboard-2026__notice.warning {
    border-color: rgba(255,193,7,0.25);
}

.dashboard-2026__notice h4 {
    color: #fff;
    margin-bottom: 8px;
}

.dashboard-2026__notice p {
    color: rgba(238,246,255,0.68);
    margin: 0;
}

.dashboard-2026__notice a {
    color: #6dfc9b;
    font-weight: 700;
}

.dashboard-stat-2026 {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 24px;
    border-radius: 22px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.30);
    display: flex;
    align-items: center;
    gap: 18px;
}

.dashboard-stat-2026::before {
    content: "";
    position: absolute;
    inset: auto -40px -50px auto;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(109,252,155,0.10);
}

.dashboard-stat-2026__icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(109,252,155,0.11);
    color: #6dfc9b;
    font-size: 28px;
    flex-shrink: 0;
}

.dashboard-stat-2026__content span {
    color: rgba(238,246,255,0.62);
    font-weight: 700;
    font-size: 13px;
}

.dashboard-stat-2026__content h3 {
    color: #fff;
    margin: 4px 0;
    font-size: 28px;
}

.dashboard-stat-2026__content small {
    color: rgba(238,246,255,0.45);
}

.dashboard-stat-2026.deposit .dashboard-stat-2026__icon {
    background: rgba(90,167,255,0.12);
    color: #8ecaff;
}

.dashboard-stat-2026.withdraw .dashboard-stat-2026__icon {
    background: rgba(255,193,7,0.12);
    color: #ffd166;
}

.dashboard-stat-2026.win .dashboard-stat-2026__icon {
    background: rgba(124,58,237,0.18);
    color: #c4b5fd;
}

.dashboard-stat-2026.loss .dashboard-stat-2026__icon {
    background: rgba(255,114,114,0.12);
    color: #ff8a8a;
}

.dashboard-2026__section-head {
    margin: 12px 0 24px;
}

.dashboard-2026__section-head span {
    color: #6dfc9b;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
}

.dashboard-2026__section-head h3 {
    color: #fff;
    margin-top: 5px;
}

.dashboard-game-2026 {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    border-radius: 24px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 18px 45px rgba(0,0,0,0.32);
}

.dashboard-game-2026__thumb,
.dashboard-game-2026__thumb img {
    width: 100%;
    height: 100%;
}

.dashboard-game-2026__thumb img {
    min-height: 280px;
    object-fit: cover;
    transition: 0.35s ease;
}

.dashboard-game-2026::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 25%, rgba(0,0,0,0.88)),
        radial-gradient(circle at top right, rgba(109,252,155,0.16), transparent 36%);
    z-index: 1;
}

.dashboard-game-2026__content {
    position: absolute;
    z-index: 2;
    left: 18px;
    right: 18px;
    bottom: 18px;
}

.dashboard-game-2026__content span {
    display: inline-flex;
    padding: 5px 10px;
    margin-bottom: 9px;
    border-radius: 999px;
    background: rgba(109,252,155,0.14);
    color: #8dffb0;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.dashboard-game-2026__content h4 {
    color: #fff;
    margin-bottom: 12px;
}

.dashboard-game-2026__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.dashboard-game-2026__actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: #fff !important;
    font-weight: 800;
}

.dashboard-game-2026__actions a:first-child {
    background: linear-gradient(135deg, #6dfc9b, #3ee7ff);
    color: #04100b !important;
}

.dashboard-game-2026:hover img {
    transform: scale(1.08);
    filter: brightness(0.72);
}

.dashboard-2026__empty {
    padding: 35px;
    border-radius: 20px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.10);
    text-align: center;
}

@media (max-width: 991px) {
    .dashboard-2026__hero {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ================= SOFT BUTTONS 2026 ================= */

.hero-2026__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* base */
.hero-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 54px;
    padding: 0 26px;

    border-radius: 14px;
    font-weight: 700;
    font-size: 14px;

    text-decoration: none;
    transition: all 0.25s ease;
}

/* PRIMARY SOFT */
.hero-btn--soft {
    background: #0f1b2f;
    color: #eaf2ff;

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.05),
        0 8px 18px rgba(0,0,0,0.4);
}

.hero-btn--soft:hover {
    transform: translateY(-2px);

    background: #13223b;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.08),
        0 14px 28px rgba(0,0,0,0.55);
}

/* subtle accent line */
.hero-btn--soft::after {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 20px;
    right: 20px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #6dfc9b, #3ee7ff);
    opacity: 0.6;
}

/* OUTLINE BUTTON */
.hero-btn--outline {
    background: transparent;
    color: rgba(238,246,255,0.75);

    border: 1px solid rgba(255,255,255,0.18);
}

.hero-btn--outline:hover {
    color: #fff;

    border-color: rgba(109,252,155,0.35);
    background: rgba(109,252,155,0.05);

    transform: translateY(-2px);
}

/* focus (важно для UX) */
.hero-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(109,252,155,0.2);
}

/* ========================================================
   JOYSINO — AURORA GLASS SITE-WIDE REDESIGN
   Drop this CSS at the bottom of custom.css or load it
   after all other stylesheets.
   ======================================================== */

/* =========================
   1. STATISTICS SECTION
   (blue bar → dark glass)
   ========================= */
.statistics-section.section--bg {
    padding: 50px 0 !important;
    position: relative !important;
    z-index: 1 !important;
    border-top: 1px solid rgba(124, 58, 237, 0.3) !important;
    border-bottom: 1px solid rgba(124, 58, 237, 0.3) !important;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(6, 182, 212, 0.06), transparent) !important;
    background-color: rgba(2, 12, 37, 0.95) !important;
}

/* Remove the blue triangular shapes */
.statistics-section .shape-1,
.statistics-section .shape-2 {
    display: none !important;
}

/* Stat card icons */
.stat-card__icon i,
.stat-card__icon svg,
.stat-card .stat-card__icon {
    color: #7c3aed !important;
}

.stat-card__content .numbers {
    font-size: 26px !important;
    font-weight: 700 !important;
    color: #fff !important;
    background: linear-gradient(135deg, #ffffff, rgba(6, 182, 212, 0.85)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    white-space: nowrap !important;
}

.stat-card__content .title {
    color: rgba(255, 255, 255, 0.55) !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    white-space: nowrap !important;
}


/* =========================
   2. GAME CARDS
   (add hover effects, fix backgrounds)
   ========================= */
.game-card {
    border-radius: 16px !important;
    overflow: hidden !important;
    background-color: rgba(10, 15, 40, 0.9) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.game-card:hover {
    transform: translateY(-6px) scale(1.02) !important;
    border-color: rgba(124, 58, 237, 0.4) !important;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(124, 58, 237, 0.15) !important;
}

.game-card__thumb {
    overflow: hidden !important;
    background-color: #0a0f28 !important;
    position: relative !important;
}

.game-card__thumb img {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s !important;
    background-color: #0a0f28 !important;
}

.game-card:hover .game-card__thumb img {
    transform: scale(1.08) !important;
    filter: brightness(1.1) !important;
}

/* Gradient overlay on hover */
.game-card::before {
    position: absolute !important;
    content: "" !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(to bottom, transparent 40%, rgba(2, 6, 23, 0.95) 100%) !important;
    z-index: 1 !important;
    transition: opacity 0.4s !important;
}

.game-card:hover::before {
    background: linear-gradient(to bottom, rgba(124, 58, 237, 0.08) 0%, rgba(2, 6, 23, 0.98) 100%) !important;
}

.game-card__content {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    padding: 20px !important;
    text-align: center !important;
    z-index: 2 !important;
}

.game-card__content .game-name {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin-bottom: 4px !important;
}

/* Play Now / Demo buttons in game cards */
.game-card .cmn-btn.play_btn,
.game-card .cmn-btn {
    background: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%) !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    border: none !important;
    border-radius: 10px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    padding: 10px 16px !important;
    transition: all 0.3s !important;
    text-transform: uppercase !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
}

.game-card .cmn-btn.play_btn:hover,
.game-card .cmn-btn:hover {
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4) !important;
    transform: translateY(-1px) !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

.game-card .cmn-btn-two.play_btn,
.game-card .cmn-btn-two {
    background: rgba(255, 255, 255, 0.03) !important;
    color: rgba(255, 255, 255, 0.78) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.78) !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    border-radius: 10px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    padding: 10px 16px !important;
    transition: all 0.3s !important;
    text-transform: uppercase !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    box-shadow: none !important;
}

.game-card .cmn-btn-two.play_btn:hover,
.game-card .cmn-btn-two:hover {
    border-color: rgba(124, 58, 237, 0.35) !important;
    background: rgba(124, 58, 237, 0.06) !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    box-shadow: none !important;
}


/* =========================
   3. HERO SECTION
   (upgraded buttons & overlay)
   ========================= */
.hero-2026__overlay {
    position: absolute !important;
    inset: 0 !important;
    background: radial-gradient(circle at top, rgba(124, 58, 237, 0.15), transparent 40%) !important;
}

/* Hero Sign Up button — gradient fill */
.hero-btn.hero-btn--soft {
    background: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 14px !important;
    padding: 14px 28px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3) !important;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.hero-btn.hero-btn--soft:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.4) !important;
    background: linear-gradient(135deg, #06b6d4 0%, #7c3aed 100%) !important;
}

.hero-btn.hero-btn--soft::after {
    display: none !important;
}

/* Hero Sign In button — outline */
.hero-btn.hero-btn--outline {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.8) !important;
    border: 1px solid rgba(124, 58, 237, 0.4) !important;
    border-radius: 14px !important;
    padding: 14px 28px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.hero-btn.hero-btn--outline:hover {
    color: #fff !important;
    border-color: rgba(124, 58, 237, 0.7) !important;
    background: rgba(124, 58, 237, 0.1) !important;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.15) !important;
}

.hero-btn:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2) !important;
}

/* Hero Live Stats card */
.hero-2026__card {
    border: 1px solid rgba(124, 58, 237, 0.15) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(30px) !important;
    border-radius: 22px !important;
    box-shadow:
        0 0 0 1px rgba(124, 58, 237, 0.06),
        0 20px 60px rgba(0, 0, 0, 0.3) !important;
}

.hero-2026__card-item strong {
    color: #7c3aed !important;
}

.hero-2026__badge {
    background: rgba(124, 58, 237, 0.12) !important;
    border: 1px solid rgba(124, 58, 237, 0.2) !important;
    color: #a78bfa !important;
}


/* =========================
   4. HEADER / NAVIGATION
   ========================= */
.header .nav-right a {
    color: #ffffff !important;
    text-transform: uppercase !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    padding: 8px 18px !important;
    border-radius: 10px !important;
    transition: all 0.3s !important;
    letter-spacing: 0.3px !important;
}

/* Login button */
.header .nav-right a:first-child {
    background: transparent !important;
    border: 1px solid rgba(124, 58, 237, 0.35) !important;
    color: #a78bfa !important;
}

.header .nav-right a:first-child:hover {
    border-color: rgba(124, 58, 237, 0.7) !important;
    background: rgba(124, 58, 237, 0.08) !important;
    color: #c4b5fd !important;
}

/* Register button */
.header .nav-right a:nth-child(2) {
    background: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%) !important;
    color: #fff !important;
    border: none !important;
    margin-left: 10px !important;
}

.header .nav-right a:nth-child(2):hover {
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.35) !important;
    transform: translateY(-1px) !important;
}

/* Menu links hover */
.header .main-menu li a:hover,
.header .main-menu li a:focus {
    color: #7c3aed !important;
}

.header .main-menu li .sub-menu {
    border-color: rgba(124, 58, 237, 0.3) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
}

/* Fixed header on scroll */
.header.menu-fixed {
    background: rgba(2, 12, 37, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(124, 58, 237, 0.1) !important;
}


/* =========================
   5. GLOBAL ACCENT OVERRIDES
   (replace green with purple-cyan)
   ========================= */

/* Links — scoped so buttons keep their own text color on hover */
a:hover {
    color: #7c3aed !important;
}
a.cmn-btn:hover,
a.cmn-btn-two:hover,
a.nav-btn:hover,
a.hero-btn:hover,
a.dash-v2__btn:hover,
a[class*="btn--"]:hover {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

.text--base {
    color: #7c3aed !important;
}

.base--color {
    color: #7c3aed !important;
}

.base--bg {
    background-color: #7c3aed !important;
}

/* Scroll-to-top button */
.scroll-to-top {
    background: linear-gradient(135deg, #7c3aed, #06b6d4) !important;
    border-radius: 14px !important;
    border: none !important;
}

/* Main CTA buttons (site-wide, outside game cards) */
.cmn-btn {
    background: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%) !important;
    color: #fff !important;
    border-radius: 12px !important;
    border: none !important;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    font-weight: 700 !important;
    -webkit-text-fill-color: #fff !important;
}

.cmn-btn:hover {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    box-shadow: 0 6px 25px rgba(124, 58, 237, 0.35) !important;
    background: linear-gradient(135deg, #06b6d4 0%, #7c3aed 100%) !important;
    transform: translateY(-2px) !important;
}

.cmn-btn-two {
    border: 1px solid rgba(124, 58, 237, 0.4) !important;
    border-radius: 12px !important;
    transition: all 0.3s !important;
}

.cmn-btn-two:hover {
    box-shadow: 0px 0px 15px 3px rgba(124, 58, 237, 0.25),
        inset 0px 0px 10px 2px rgba(124, 58, 237, 0.2) !important;
    border-color: rgba(124, 58, 237, 0.7) !important;
}

/* Section headers */
.section-title {
    background: linear-gradient(135deg, #ffffff 60%, rgba(6, 182, 212, 0.8) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}


/* =========================
   6. FAQ SECTION
   ========================= */
.cmn-accordion .card {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 14px !important;
    margin-bottom: 12px !important;
    overflow: hidden !important;
    transition: all 0.3s !important;
}

.cmn-accordion .card:hover {
    border-color: rgba(124, 58, 237, 0.25) !important;
}

.cmn-accordion .card-header {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

.cmn-accordion .card-header .acc-btn {
    background: rgba(124, 58, 237, 0.08) !important;
    color: rgba(255, 255, 255, 0.85) !important;
    padding: 16px 22px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    border: none !important;
    width: 100% !important;
    text-align: left !important;
    transition: all 0.3s !important;
}

.cmn-accordion .card-header .acc-btn:hover,
.cmn-accordion .card-header .acc-btn:not(.collapsed) {
    background: rgba(124, 58, 237, 0.15) !important;
    color: #fff !important;
}

.cmn-accordion .card-body {
    padding: 0 22px 18px !important;
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
}


/* =========================
   7. TESTIMONIALS
   ========================= */
.testimonial-card__content,
.testimonial-card__content::before {
    border-color: rgba(124, 58, 237, 0.3) !important;
}

.testimonial-slider .slick-arrow {
    background: linear-gradient(135deg, #7c3aed, #06b6d4) !important;
    border-radius: 12px !important;
}


/* =========================
   8. CHOOSE US / WHY SECTION
   ========================= */
.choose-card__icon {
    color: #7c3aed !important;
}

.choose-card:hover {
    border-color: rgba(124, 58, 237, 0.5) !important;
    box-shadow: 0 5px 20px rgba(124, 58, 237, 0.2) !important;
}


/* =========================
   9. FOOTER
   ========================= */
.footer-widget .subscribe-form .subscribe-btn {
    background: linear-gradient(135deg, #7c3aed, #06b6d4) !important;
    border: none !important;
    border-radius: 10px !important;
    color: #fff !important;
    font-weight: 700 !important;
    transition: all 0.3s !important;
}

.footer-widget .subscribe-form .subscribe-btn:hover {
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3) !important;
}


/* =========================
   10. FORM ELEMENTS (GLOBAL)
   ========================= */
/* Override colored input-group-text from color.php */
.input-group-text {
    background-color: rgba(124, 58, 237, 0.15) !important;
    border-color: rgba(124, 58, 237, 0.2) !important;
    color: #7c3aed !important;
}

.form-control:focus {
    box-shadow: 0px 0px 4px rgba(124, 58, 237, 0.4) !important;
    border: 0.5px solid rgba(124, 58, 237, 0.5) !important;
}


/* =========================
   11. TABLES
   ========================= */
.table.style--two thead,
.table thead tr th {
    background: linear-gradient(135deg, #7c3aed, #06b6d4) !important;
    color: #fff !important;
}


/* =========================
   12. MISC ELEMENTS
   ========================= */

/* Cookie banner */
.cookies-card {
    background: rgba(10, 15, 35, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(124, 58, 237, 0.15) !important;
    border-radius: 16px !important;
}

.cookies-card__icon {
    background: linear-gradient(135deg, #7c3aed, #06b6d4) !important;
    border-radius: 50% !important;
}

/* Scrollbar */
*::-webkit-scrollbar-thumb {
    background: rgba(124, 58, 237, 0.4) !important;
    border-radius: 8px !important;
}

/* Pagination */
.pagination .page-item .page-link::after {
    background: linear-gradient(135deg, #7c3aed, #06b6d4) !important;
}

.page-item.active .page-link {
    color: #7c3aed !important;
}

/* Modal */
.modal-header {
    background: linear-gradient(135deg, #7c3aed, #06b6d4) !important;
}

/* Winner items */
.winner-item:hover {
    border-color: rgba(124, 58, 237, 0.5) !important;
    box-shadow: 0 0 5px rgba(124, 58, 237, 0.3) !important;
}

.winner-item::after {
    border: 2px solid rgba(124, 58, 237, 0.4) !important;
    box-shadow: 0 0 5px 2px rgba(124, 58, 237, 0.2) !important;
}

.winner-item::before {
    background-color: rgba(124, 58, 237, 0.1) !important;
}

/* Work / How-to cards */
.work-card__icon .step-number {
    background: linear-gradient(135deg, #7c3aed, #06b6d4) !important;
}

.work-card__icon i {
    color: #7c3aed !important;
}

/* Contact items */
.contact-item i {
    color: #7c3aed !important;
}

.contact-item:hover {
    background-color: rgba(124, 58, 237, 0.08) !important;
}

/* Verification code */
.verification-code span {
    border: solid 1px rgba(124, 58, 237, 0.4) !important;
    color: #7c3aed !important;
}

/* Payment item */
.payment-item__check {
    border: 1px solid rgba(124, 58, 237, 0.3) !important;
}

.payment-item:has(.payment-item__radio:checked) .payment-item__check {
    border: 3px solid #7c3aed !important;
}

/* Select2 */
.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    border-color: #7c3aed !important;
}

/* Dashboard widget */
.d-widget-balance .d-widget-icon {
    background: linear-gradient(135deg, #7c3aed, #06b6d4) !important;
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.3) !important;
}

/* Profile */
.profile-thumb .avatar-edit label {
    background: linear-gradient(135deg, #7c3aed, #06b6d4) !important;
    color: #fff !important;
}

/* Custom file upload */
.custom--file-upload ~ label {
    background: linear-gradient(135deg, #7c3aed, #06b6d4) !important;
}

/* Nice select */
.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    background-color: rgba(124, 58, 237, 0.15) !important;
}

/* Copied toast */
.copied::after {
    background-color: #7c3aed !important;
}

/* Accordion accent */
.single-select.active::after {
    background-color: #7c3aed !important;
}


/* ================================================================
   COMPREHENSIVE HOMEPAGE REDESIGN 2026
   Modern, polished, responsive design for mobile + desktop
   ================================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
    --primary: #7c3aed;
    --primary-light: #a78bfa;
    --primary-dark: #5b21b6;
    --accent: #06b6d4;
    --accent-light: #67e8f9;
    --bg-dark: #020c25;
    --bg-card: rgba(255,255,255,0.035);
    --bg-card-hover: rgba(255,255,255,0.065);
    --border-subtle: rgba(255,255,255,0.06);
    --border-hover: rgba(124,58,237,0.4);
    --text-primary: #ffffff;
    --text-secondary: rgba(238,246,255,0.65);
    --text-muted: rgba(238,246,255,0.4);
    --glass-blur: blur(20px);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --radius-xl: 28px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-card: 0 8px 32px rgba(0,0,0,0.25);
    --shadow-card-hover: 0 20px 60px rgba(0,0,0,0.35), 0 0 30px rgba(124,58,237,0.12);
    --gradient-primary: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
    --gradient-reverse: linear-gradient(135deg, #06b6d4 0%, #7c3aed 100%);
}

/* ---------- SMOOTH SCROLL & SELECTION ---------- */
html {
    scroll-behavior: smooth;
}

::selection {
    background: rgba(124,58,237,0.35);
    color: #fff;
}

/* ---------- SECTION SUBTITLE BADGES ---------- */
.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(124,58,237,0.1);
    border: 1px solid rgba(124,58,237,0.2);
    color: var(--primary-light);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.section-subtitle i {
    font-size: 14px;
}

.section-subtitle--light {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.85);
}

/* ---------- SECTION HEADER ENHANCEMENT ---------- */
.section-header {
    margin-bottom: 55px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 38px !important;
    font-weight: 800 !important;
    letter-spacing: -0.5px !important;
    line-height: 1.2 !important;
}

/* ================================================================
   HERO SECTION — COMPLETE REDESIGN
   ================================================================ */
.hero-2026 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-2026__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.25) saturate(0.6);
    transform: scale(1.05);
    animation: heroBgFloat 20s ease-in-out infinite alternate;
}

@keyframes heroBgFloat {
    0% { transform: scale(1.05) translateY(0); }
    100% { transform: scale(1.08) translateY(-10px); }
}

.hero-2026__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(124,58,237,0.2), transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(6,182,212,0.12), transparent 40%),
        radial-gradient(ellipse at 50% 100%, rgba(0,0,0,0.5), transparent 60%),
        linear-gradient(180deg, rgba(2,12,37,0.3) 0%, rgba(2,12,37,0.7) 100%);
    z-index: 1;
}

/* Floating particles */
.hero-2026__particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.hero-2026__particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(124,58,237,0.5);
    animation: particleFloat 8s ease-in-out infinite;
}

.hero-2026__particles span:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 7s; }
.hero-2026__particles span:nth-child(2) { left: 25%; top: 60%; animation-delay: 1s; animation-duration: 9s; background: rgba(6,182,212,0.4); width: 6px; height: 6px; }
.hero-2026__particles span:nth-child(3) { left: 45%; top: 30%; animation-delay: 2s; animation-duration: 8s; }
.hero-2026__particles span:nth-child(4) { left: 60%; top: 70%; animation-delay: 3s; animation-duration: 10s; background: rgba(6,182,212,0.3); }
.hero-2026__particles span:nth-child(5) { left: 80%; top: 15%; animation-delay: 4s; animation-duration: 7.5s; width: 5px; height: 5px; }
.hero-2026__particles span:nth-child(6) { left: 15%; top: 80%; animation-delay: 1.5s; animation-duration: 9.5s; background: rgba(6,182,212,0.35); }
.hero-2026__particles span:nth-child(7) { left: 70%; top: 45%; animation-delay: 2.5s; animation-duration: 8.5s; }
.hero-2026__particles span:nth-child(8) { left: 90%; top: 55%; animation-delay: 0.5s; animation-duration: 11s; background: rgba(124,58,237,0.3); width: 3px; height: 3px; }
.hero-2026__particles span:nth-child(9) { left: 35%; top: 90%; animation-delay: 3.5s; animation-duration: 7s; }
.hero-2026__particles span:nth-child(10) { left: 55%; top: 10%; animation-delay: 4.5s; animation-duration: 10s; background: rgba(6,182,212,0.5); width: 5px; height: 5px; }

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
    25% { transform: translateY(-40px) translateX(15px); opacity: 0.8; }
    50% { transform: translateY(-20px) translateX(-10px); opacity: 0.5; }
    75% { transform: translateY(-50px) translateX(20px); opacity: 0.7; }
}

.hero-2026 .container {
    position: relative;
    z-index: 3;
}

.min-vh-80 {
    min-height: 80vh;
}

/* Hero Content */
.hero-2026__content {
    padding-right: 30px;
}

.hero-2026__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    margin-bottom: 28px;
    border-radius: 999px;
    background: rgba(124,58,237,0.12) !important;
    border: 1px solid rgba(124,58,237,0.25) !important;
    color: var(--primary-light) !important;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: badgePulse 3s ease-in-out infinite;
}

.hero-2026__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34,197,94,0.6);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(124,58,237,0); }
    50% { box-shadow: 0 0 0 8px rgba(124,58,237,0.08); }
}

.hero-2026__title {
    font-size: 52px !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 22px;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 50%, rgba(167,139,250,0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-2026__text {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 480px;
}

/* Hero Buttons */
.hero-2026__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 54px;
    padding: 0 30px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition-smooth);
    overflow: hidden;
    border: none;
}

.hero-btn i {
    font-size: 18px;
}

.hero-btn--primary {
    background: var(--gradient-primary) !important;
    color: #fff !important;
    box-shadow: 0 6px 25px rgba(124,58,237,0.35);
}

.hero-btn--primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gradient-reverse);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-btn--primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 40px rgba(124,58,237,0.45) !important;
    color: #fff !important;
}

.hero-btn--primary:hover::before {
    opacity: 1;
}

.hero-btn--primary span,
.hero-btn--primary i {
    position: relative;
    z-index: 1;
}

.hero-btn--outline {
    background: rgba(255,255,255,0.04) !important;
    color: rgba(255,255,255,0.85) !important;
    border: 1px solid rgba(124,58,237,0.35) !important;
    backdrop-filter: blur(10px);
}

.hero-btn--outline:hover {
    color: #fff !important;
    border-color: rgba(124,58,237,0.7) !important;
    background: rgba(124,58,237,0.1) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 30px rgba(124,58,237,0.2) !important;
}

.hero-btn--outline::after,
.hero-btn--primary::after {
    display: none !important;
}

/* Hero Stats Row */
.hero-2026__stats {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 18px 28px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(10px);
    max-width: 400px;
}

.hero-2026__stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    text-align: center;
}

.hero-2026__stat-item strong {
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-2026__stat-item span {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.hero-2026__stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-subtle);
    flex-shrink: 0;
}

/* Hero Live Stats Card */
.hero-2026__card {
    position: relative;
    padding: 0;
    border-radius: var(--radius-lg) !important;
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(124,58,237,0.15) !important;
    backdrop-filter: blur(30px) !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3) !important;
    overflow: hidden;
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-2026__card-glow {
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124,58,237,0.2) 0%, transparent 70%);
    pointer-events: none;
    animation: glowRotate 8s linear infinite;
}

@keyframes glowRotate {
    0% { transform: rotate(0deg) scale(1); opacity: 0.6; }
    50% { transform: rotate(180deg) scale(1.2); opacity: 1; }
    100% { transform: rotate(360deg) scale(1); opacity: 0.6; }
}

.hero-2026__card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 24px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--border-subtle);
    background: rgba(124,58,237,0.06);
}

.hero-2026__card-pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34,197,94,0.5);
    animation: livePulse 1.5s ease-in-out infinite;
    position: relative;
}

.hero-2026__card-pulse::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(34,197,94,0.3);
    animation: livePulseRing 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 8px rgba(34,197,94,0.5); }
    50% { transform: scale(1.2); box-shadow: 0 0 16px rgba(34,197,94,0.8), 0 0 30px rgba(34,197,94,0.3); }
}

@keyframes livePulseRing {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.8); opacity: 0; }
}

.hero-2026__card-item {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 16px !important;
    padding: 18px 24px !important;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background 0.3s ease;
}

.hero-2026__card-item:last-of-type {
    border-bottom: none;
}

.hero-2026__card-item:hover {
    background: rgba(124,58,237,0.05);
}

.hero-2026__card-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124,58,237,0.12);
    color: var(--primary-light);
    font-size: 22px;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.hero-2026__card-icon.pulse-online {
    background: rgba(124,58,237,0.14);
    color: #c4b5fd;
    animation: onlineIconPulse 3s ease-in-out infinite;
}

@keyframes onlineIconPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(124,58,237,0); }
    50% { box-shadow: 0 0 20px 4px rgba(124,58,237,0.22); }
}

.hero-2026__card-info {
    display: flex !important;
    flex-direction: column !important;
    text-align: left !important;
    flex: 1 1 auto !important;
    margin-left: 0 !important;
}

.hero-2026__card-info span {
    font-size: 12px !important;
    color: var(--text-muted) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    text-align: left !important;
}

.hero-2026__card-info strong {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #fff !important;
    margin-top: 2px !important;
    text-align: left !important;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.hero-2026__card-item:hover .hero-2026__card-info strong {
    color: var(--primary-light) !important;
    text-shadow: 0 0 20px rgba(124,58,237,0.3);
}

.hero-2026__card-item:hover .hero-2026__card-icon {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(124,58,237,0.3);
}

.hero-2026__card-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    font-size: 12px;
    color: var(--text-muted);
    background: rgba(255,255,255,0.02);
    border-top: 1px solid var(--border-subtle);
}

.hero-2026__card-footer i {
    color: #22c55e;
    font-size: 14px;
    animation: shieldPulse 3s ease-in-out infinite;
}

@keyframes shieldPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; text-shadow: 0 0 8px rgba(34,197,94,0.5); }
}

/* Live activity bar animation */
.hero-2026__card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, transparent, #22c55e, #7c3aed, transparent);
    animation: scanLine 3s ease-in-out infinite;
}

.hero-2026__card-header {
    position: relative;
    overflow: hidden;
}

@keyframes scanLine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}


/* ================================================================
   HEADER / NAVIGATION — ENHANCED
   ================================================================ */
.header {
    transition: var(--transition-smooth);
}

.header__bottom {
    padding: 8px 0;
}

.header.menu-fixed {
    background: rgba(2,12,37,0.92) !important;
    backdrop-filter: blur(25px) !important;
    border-bottom: 1px solid rgba(124,58,237,0.12) !important;
    box-shadow: 0 4px 30px rgba(0,0,0,0.2) !important;
}

.site-logo img {
    max-height: 50px;
    transition: var(--transition-smooth);
}

.header .main-menu li a {
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px;
    padding: 8px 16px !important;
    border-radius: 10px;
    transition: var(--transition-smooth) !important;
    position: relative;
}

/* Outer pill border (active/hover state) is provided by modern_theme_css.
   We previously drew an extra gradient underline here, which produced a
   visible "double border" inside the pill. Keep the rule but ensure the
   underline never renders so the active state stays flat and clean. */
.header .main-menu li a::after {
    content: none !important;
    display: none !important;
}

.header .main-menu li a:hover::after,
.header .main-menu li a.active::after {
    content: none !important;
    display: none !important;
}

/* Nav Buttons */
.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px !important;
    border-radius: var(--radius-sm) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: var(--transition-smooth) !important;
    white-space: nowrap;
}

.nav-btn i {
    font-size: 16px;
}

.nav-btn--outline {
    background: transparent !important;
    border: 1px solid rgba(124,58,237,0.35) !important;
    color: var(--primary-light) !important;
}

.nav-btn--outline:hover {
    border-color: rgba(124,58,237,0.7) !important;
    background: rgba(124,58,237,0.08) !important;
    color: #c4b5fd !important;
    transform: translateY(-1px);
}

.nav-btn--primary {
    background: var(--gradient-primary) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(124,58,237,0.25);
}

.nav-btn--primary:hover {
    box-shadow: 0 6px 25px rgba(124,58,237,0.4) !important;
    transform: translateY(-2px);
    color: #fff !important;
}

.nav-btn--ghost {
    background: transparent !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    color: rgba(255,255,255,0.6) !important;
}

.nav-btn--ghost:hover {
    border-color: rgba(255,100,100,0.3) !important;
    color: #ff8a8a !important;
    background: rgba(255,100,100,0.05) !important;
}


/* ================================================================
   GAME CARDS — ENHANCED
   ================================================================ */
.section-games {
    position: relative;
    background:
        radial-gradient(ellipse at 10% 50%, rgba(124,58,237,0.06), transparent 40%),
        radial-gradient(ellipse at 90% 50%, rgba(6,182,212,0.04), transparent 40%) !important;
}

.game-card {
    border-radius: var(--radius-lg) !important;
    overflow: hidden !important;
    background: var(--bg-card) !important;
    transition: var(--transition-smooth) !important;
    position: relative !important;
    border: 1px solid rgba(255, 255, 255, 0.04) !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18) !important;
}

.game-card:hover {
    transform: translateY(-6px) scale(1.01) !important;
    border-color: rgba(124, 58, 237, 0.22) !important;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28) !important;
}

.game-card__thumb img {
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1), filter 0.4s !important;
}

.game-card:hover .game-card__thumb img {
    transform: scale(1.1) !important;
    filter: brightness(1.15) saturate(1.1) !important;
}


/* ================================================================
   STATISTICS SECTION — ENHANCED
   ================================================================ */
.statistics-section.section--bg {
    padding: 60px 0 !important;
    position: relative !important;
    z-index: 1 !important;
    background:
        linear-gradient(135deg, rgba(124,58,237,0.08), rgba(6,182,212,0.04), transparent),
        rgba(2,12,37,0.95) !important;
    border-top: 1px solid rgba(124,58,237,0.15) !important;
    border-bottom: 1px solid rgba(124,58,237,0.15) !important;
}

.stat-card {
    display: flex !important;
    flex-wrap: nowrap !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 18px !important;
    padding: 24px 20px !important;
    border-radius: var(--radius-md) !important;
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(255,255,255,0.05) !important;
    transition: var(--transition-smooth) !important;
}

.stat-card:hover {
    background: rgba(124,58,237,0.06);
    border-color: rgba(124,58,237,0.2);
    transform: translateY(-3px);
}

.stat-card__icon {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    border-radius: var(--radius-sm) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(124,58,237,0.1) !important;
    flex-shrink: 0 !important;
}

.stat-card__icon i,
.stat-card__icon svg {
    font-size: 28px;
    color: var(--primary-light) !important;
}

.stat-card__content {
    display: flex !important;
    flex-direction: column !important;
    text-align: left !important;
    padding-left: 0 !important;
    width: auto !important;
    margin-top: 0 !important;
    flex: 1 1 auto;
}

.stat-card__content .numbers {
    font-size: clamp(18px, 2.2vw, 28px) !important;
    font-weight: 800 !important;
    color: #fff !important;
    background: linear-gradient(135deg, #fff 30%, var(--accent-light)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    line-height: 1.2;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.stat-card__content .title {
    color: var(--text-muted) !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-top: 4px;
    white-space: nowrap !important;
}


/* ================================================================
   ABOUT SECTION — ENHANCED
   ================================================================ */
.section-about {
    position: relative;
}

.section-about .about-content {
    position: relative;
}

.section-about .about-content h2 {
    background: linear-gradient(135deg, #ffffff 60%, var(--primary-light)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.section-about .about-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 15px;
}

.feature-card {
    padding: 22px 18px !important;
    border-radius: var(--radius-md) !important;
    background: var(--bg-card) !important;
    border: 1px solid var(--border-subtle) !important;
    transition: var(--transition-smooth) !important;
    text-align: center;
}

.feature-card:hover {
    background: var(--bg-card-hover) !important;
    border-color: var(--border-hover) !important;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(124,58,237,0.1);
}

.feature-card__icon {
    margin-bottom: 12px;
}

.feature-card__icon i {
    font-size: 36px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-thumb {
    position: relative;
}

.about-thumb img {
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: 1px solid var(--border-subtle);
}

.about-thumb::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124,58,237,0.2), transparent 70%);
    z-index: -1;
}


/* ================================================================
   WHY CHOOSE US — ENHANCED
   ================================================================ */
.section-choose {
    position: relative;
}

.section-choose::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(2,12,37,0.88);
    z-index: 0;
}

.section-choose .container {
    position: relative;
    z-index: 1;
}

.choose-card {
    padding: 35px 28px !important;
    border-radius: var(--radius-lg) !important;
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    backdrop-filter: blur(15px);
    text-align: center;
    transition: var(--transition-smooth) !important;
    height: 100%;
}

.choose-card:hover {
    background: rgba(255,255,255,0.07) !important;
    border-color: rgba(124,58,237,0.4) !important;
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 30px rgba(124,58,237,0.1) !important;
}

.choose-card__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: rgba(124,58,237,0.1);
    border: 1px solid rgba(124,58,237,0.2);
    transition: var(--transition-smooth);
}

.choose-card:hover .choose-card__icon {
    background: rgba(124,58,237,0.18);
    border-color: rgba(124,58,237,0.4);
    transform: scale(1.08);
}

.choose-card__icon i {
    font-size: 32px;
    color: var(--primary-light) !important;
}

.choose-card__content .title {
    font-size: 20px;
    color: #fff;
    font-weight: 700;
}

.choose-card__content p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}


/* ================================================================
   HOW IT WORKS — ENHANCED
   ================================================================ */
.section-howwork {
    position: relative;
}

.work-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    transition: var(--transition-smooth);
    height: 100%;
}

.work-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.work-card__icon {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-card__icon .step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--gradient-primary) !important;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(124,58,237,0.3);
}

.work-card__icon i {
    font-size: 40px;
    color: var(--primary-light) !important;
    transition: var(--transition-smooth);
}

.work-card:hover .work-card__icon i {
    transform: scale(1.15);
    color: var(--accent-light) !important;
}

.work-card__content .title {
    font-size: 18px;
    color: #fff;
    font-weight: 700;
}

.work-card__content p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}


/* ================================================================
   CTA SECTION — ENHANCED
   ================================================================ */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(124,58,237,0.3) 0%, rgba(2,12,37,0.85) 50%, rgba(6,182,212,0.2) 100%),
        rgba(2,12,37,0.6);
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 42px !important;
    font-weight: 800 !important;
    color: #fff;
    line-height: 1.2;
    margin-top: 16px;
    background: linear-gradient(135deg, #fff 40%, var(--accent-light)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.cmn-btn--lg {
    padding: 16px 36px !important;
    font-size: 16px !important;
    border-radius: var(--radius-md) !important;
    gap: 10px;
    display: inline-flex;
    align-items: center;
}


/* ================================================================
   TESTIMONIALS — ENHANCED
   ================================================================ */
.testimonial-card {
    text-align: center;
}

.testimonial-card__content {
    padding: 30px !important;
    border-radius: var(--radius-lg) !important;
    background: var(--bg-card) !important;
    border: 1px solid var(--border-subtle) !important;
    transition: var(--transition-smooth);
    position: relative;
}

.testimonial-card__content::before {
    content: '\201C';
    position: absolute;
    top: 15px;
    left: 25px;
    font-size: 60px;
    color: rgba(124,58,237,0.15);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card__content p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-card__thumb {
    margin-top: 20px;
}

.testimonial-card__thumb img {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    border: 3px solid rgba(124,58,237,0.3) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.testimonial-card .name {
    color: #fff;
    font-weight: 700;
}

.testimonial-slider .slick-arrow {
    background: var(--gradient-primary) !important;
    border-radius: var(--radius-sm) !important;
    width: 44px;
    height: 44px;
    transition: var(--transition-smooth);
}

.testimonial-slider .slick-arrow:hover {
    box-shadow: 0 4px 20px rgba(124,58,237,0.35);
    transform: scale(1.05);
}


/* ================================================================
   FAQ — ENHANCED
   ================================================================ */
.cmn-accordion .card {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-subtle) !important;
    border-radius: var(--radius-md) !important;
    margin-bottom: 14px !important;
    overflow: hidden !important;
    transition: var(--transition-smooth) !important;
}

.cmn-accordion .card:hover {
    border-color: rgba(124,58,237,0.2) !important;
}

.cmn-accordion .card-header .acc-btn {
    background: rgba(124,58,237,0.06) !important;
    color: rgba(255,255,255,0.8) !important;
    padding: 18px 24px !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    border: none !important;
    width: 100% !important;
    text-align: left !important;
    transition: var(--transition-smooth) !important;
}

.cmn-accordion .card-header .acc-btn:hover,
.cmn-accordion .card-header .acc-btn:not(.collapsed) {
    background: rgba(124,58,237,0.12) !important;
    color: #fff !important;
}

.cmn-accordion .card-body {
    padding: 0 24px 20px !important;
    color: var(--text-secondary) !important;
    font-size: 14px !important;
    line-height: 1.8 !important;
}


/* ================================================================
   WINNERS & TRANSACTIONS — ENHANCED
   ================================================================ */
.winner-item {
    padding: 16px 18px !important;
    border-radius: var(--radius-md) !important;
    background: var(--bg-card) !important;
    border: 1px solid var(--border-subtle) !important;
    margin-bottom: 12px;
    transition: var(--transition-smooth) !important;
}

.winner-item:hover {
    border-color: rgba(124,58,237,0.3) !important;
    background: rgba(124,58,237,0.05) !important;
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15) !important;
}

.transaction-wrapper.card {
    background: var(--bg-card) !important;
    border: 1px solid var(--border-subtle) !important;
    border-radius: var(--radius-lg) !important;
    overflow: hidden;
}

.table.style--two thead,
.table thead tr th {
    background: var(--gradient-primary) !important;
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 18px !important;
}

.table tbody tr {
    border-color: var(--border-subtle) !important;
    transition: background 0.2s ease;
}

.table tbody tr:hover {
    background: rgba(124,58,237,0.04) !important;
}

.table tbody td {
    padding: 14px 18px !important;
    color: var(--text-secondary);
    font-size: 14px;
}


/* ================================================================
   BLOG / NEWS — ENHANCED
   ================================================================ */
.section-blog {
    position: relative;
}

.post-card {
    border-radius: var(--radius-lg) !important;
    overflow: hidden !important;
    background: var(--bg-card) !important;
    border: 1px solid var(--border-subtle) !important;
    transition: var(--transition-smooth) !important;
    box-shadow: var(--shadow-card);
}

.post-card:hover {
    transform: translateY(-8px) !important;
    border-color: var(--border-hover) !important;
    box-shadow: var(--shadow-card-hover) !important;
}

.post-card__thumb {
    overflow: hidden;
    position: relative;
}

.post-card__thumb img {
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1) !important;
    width: 100%;
}

.post-card:hover .post-card__thumb img {
    transform: scale(1.08);
}

.post-card__date {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(124,58,237,0.85) !important;
    backdrop-filter: blur(10px);
    color: #fff !important;
    font-size: 12px;
    font-weight: 600;
    border: none !important;
}

.post-card__content {
    padding: 22px 24px !important;
}

.post-card__title {
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
}

.post-card__title a {
    color: #fff !important;
    transition: color 0.3s ease;
}

.post-card__title a:hover {
    color: var(--primary-light) !important;
}


/* ================================================================
   REFERRAL SECTION — ENHANCED
   ================================================================ */
.referral-thumb img {
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: 1px solid var(--border-subtle);
}

.referral-content h2 {
    background: linear-gradient(135deg, #fff 60%, var(--primary-light)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.referral-content p {
    color: var(--text-secondary);
    line-height: 1.8;
}


/* ================================================================
   FOOTER — MINOR ENHANCEMENTS
   ================================================================ */
.footer-2026__social a {
    transition: var(--transition-smooth) !important;
}

.footer-2026__social a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(124,58,237,0.25);
}


/* ================================================================
   GLOBAL BUTTON ENHANCEMENTS
   ================================================================ */
.cmn-btn {
    position: relative;
    overflow: hidden;
    background: var(--gradient-primary) !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    border-radius: var(--radius-sm) !important;
    border: none !important;
    font-weight: 700 !important;
    padding: 13px 28px !important;
    transition: var(--transition-smooth) !important;
    box-shadow: 0 4px 15px rgba(124,58,237,0.2);
}

.cmn-btn::before {
    display: none !important;
}

.cmn-btn:hover {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 30px rgba(124,58,237,0.35) !important;
    background: linear-gradient(135deg, #06b6d4 0%, #7c3aed 100%) !important;
}


/* ================================================================
   RESPONSIVE — MOBILE FIRST ENHANCEMENTS
   ================================================================ */

/* Tablet */
@media (max-width: 991px) {
    .hero-2026 {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .min-vh-80 {
        min-height: auto;
    }

    .hero-2026__title {
        font-size: 36px !important;
    }

    .hero-2026__content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-2026__card {
        animation: none;
    }

    .section-title {
        font-size: 30px !important;
    }

    .cta-title {
        font-size: 32px !important;
    }

    .choose-card {
        padding: 28px 22px !important;
    }

    .nav-right {
        padding: 15px 0;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .nav-btn {
        padding: 10px 16px !important;
        font-size: 12px !important;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .hero-2026 {
        padding: 90px 0 50px;
    }

    .hero-2026__title {
        font-size: 28px !important;
        letter-spacing: -0.5px;
    }

    .hero-2026__text {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .hero-2026__actions {
        flex-direction: column;
        margin-bottom: 28px;
    }

    .hero-btn {
        width: 100%;
        height: 50px;
        font-size: 14px;
    }

    .hero-2026__stats {
        max-width: 100%;
        padding: 14px 16px;
    }

    .hero-2026__stat-item strong {
        font-size: 20px;
    }

    .hero-2026__stat-item span {
        font-size: 10px;
    }

    .hero-2026__card {
        margin-top: 30px;
    }

    .hero-2026__card-info strong {
        font-size: 18px;
    }

    .section-title {
        font-size: 24px !important;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header p {
        font-size: 14px;
    }

    .section-subtitle {
        font-size: 11px;
        padding: 6px 14px;
        letter-spacing: 1px;
    }

    .cta-title {
        font-size: 24px !important;
    }

    .cmn-btn--lg {
        padding: 14px 28px !important;
        font-size: 14px !important;
    }

    .pt-120 {
        padding-top: 70px !important;
    }

    .pb-120 {
        padding-bottom: 70px !important;
    }

    .stat-card {
        padding: 18px 14px !important;
        flex-wrap: nowrap !important;
        flex-direction: row !important;
        justify-content: flex-start !important;
    }

    .stat-card__icon {
        width: 46px !important;
        height: 46px !important;
        min-width: 46px !important;
    }

    .stat-card__content {
        text-align: left !important;
        width: auto !important;
        margin-top: 0 !important;
        padding-left: 0 !important;
    }

    .stat-card__content .numbers {
        font-size: 22px !important;
    }

    .stat-card__content .title {
        font-size: 11px !important;
    }

    .choose-card {
        padding: 24px 18px !important;
    }

    .choose-card__icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }

    .work-card {
        padding: 24px 16px;
    }

    .post-card__content {
        padding: 18px 16px !important;
    }

    .post-card__title {
        font-size: 16px !important;
    }

    .winner-item {
        padding: 14px !important;
    }

    .table thead tr th {
        padding: 12px 14px !important;
        font-size: 12px;
    }

    .table tbody td {
        padding: 12px 14px !important;
        font-size: 13px;
    }

    /* Mobile header improvements */
    .header .navbar-collapse {
        background: rgba(2,12,37,0.98);
        backdrop-filter: blur(20px);
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        padding: 20px;
        border: 1px solid var(--border-subtle);
        border-top: none;
        margin-top: 10px;
    }

    .header .main-menu li {
        border-bottom: 1px solid rgba(255,255,255,0.04);
    }

    .header .main-menu li a {
        padding: 14px 10px !important;
        font-size: 15px !important;
    }

    .header .main-menu li a::after {
        display: none;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero-2026__title {
        font-size: 24px !important;
    }

    .hero-2026__badge {
        font-size: 10px;
        padding: 8px 14px;
        letter-spacing: 1px;
    }

    .hero-2026__stats {
        padding: 12px;
    }

    .hero-2026__stat-divider {
        height: 30px;
    }

    .stat-card {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        text-align: left !important;
        gap: 12px !important;
        justify-content: flex-start !important;
        padding: 16px 12px !important;
    }

    .stat-card__icon {
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
    }

    .stat-card__content {
        text-align: left !important;
        width: auto !important;
        margin-top: 0 !important;
        padding-left: 0 !important;
    }

    .stat-card__content .numbers {
        font-size: 18px !important;
    }

    .choose-card__content .title {
        font-size: 17px;
    }
}

/* Large desktop */
@media (min-width: 1400px) {
    .hero-2026__title {
        font-size: 60px !important;
    }

    .hero-2026__text {
        font-size: 18px;
    }

    .section-title {
        font-size: 44px !important;
    }

    .cta-title {
        font-size: 48px !important;
    }
}


/* ================================================================
   ANIMATION ENHANCEMENTS
   ================================================================ */
@keyframes fadeInUpSmooth {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ================================================================
   FURTHER OPTIMIZATIONS — MOBILE + DESKTOP POLISH
   ================================================================ */

/* ---------- CUSTOM SCROLLBAR ---------- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #020c25;
}
::-webkit-scrollbar-thumb {
    background: rgba(124,58,237,0.35);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(124,58,237,0.55);
}

/* ---------- BODY / GLOBAL TYPOGRAPHY ---------- */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

/* ---------- IMPROVED SECTION TITLE GRADIENT ---------- */
.section-title,
.section-title.style--two {
    background: linear-gradient(135deg, #ffffff 50%, var(--accent-light) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* ---------- SECTION SPACING RHYTHM ---------- */
.section--bg {
    background: radial-gradient(ellipse at 50% 0%, rgba(124,58,237,0.04), transparent 60%) !important;
}

/* ---------- GAME CARD — PLAY OVERLAY ---------- */
.game-card__thumb {
    position: relative;
    overflow: hidden;
}

.game-card__thumb::after {
    content: '\f04b';
    font-family: 'Line Awesome Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    background: rgba(124,58,237,0.45);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.game-card:hover .game-card__thumb::after {
    opacity: 1;
}

.game-card__content {
    padding: 18px 16px !important;
    text-align: center;
}

.game-name {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #fff !important;
    display: block;
    margin-bottom: 4px;
}

/* ---------- HOW IT WORKS — CONNECTOR LINE (DESKTOP) — REMOVED ---------- */
/* Connector lines removed per user feedback */
.work-card::after {
    display: none !important;
    content: none !important;
}

/* ---------- WORK CARD ICON RING ---------- */
.work-card__icon {
    border-radius: 50%;
    background: rgba(124,58,237,0.08);
    border: 2px dashed rgba(124,58,237,0.2);
    transition: var(--transition-smooth);
}

.work-card:hover .work-card__icon {
    border-color: rgba(124,58,237,0.4);
    border-style: solid;
    background: rgba(124,58,237,0.12);
}

/* ---------- CHOOSE CARD — ICON GLOW ON HOVER ---------- */
.choose-card:hover .choose-card__icon {
    box-shadow: 0 0 25px rgba(124,58,237,0.2);
}

.choose-card__icon i {
    transition: var(--transition-smooth);
}

.choose-card:hover .choose-card__icon i {
    color: var(--accent-light) !important;
    transform: scale(1.1);
}

/* ---------- CTA SECTION — IMPROVED ---------- */
.cta-section .section-subtitle--light {
    animation: badgePulse 3s ease-in-out infinite;
}

/* ---------- FAQ — SMOOTH OPEN ---------- */
.cmn-accordion .card-body {
    animation: fadeInUpSmooth 0.3s ease;
}

.cmn-accordion .card-header .acc-btn::after {
    color: var(--primary-light) !important;
    transition: transform 0.3s ease;
}

/* ---------- POST CARD — READ MORE BUTTON ---------- */
.post-card .cmn-btn {
    padding: 10px 22px !important;
    font-size: 13px !important;
    border-radius: 999px !important;
}

/* ---------- ABOUT SECTION — IMAGE HOVER ---------- */
.about-thumb img {
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease !important;
}

.about-thumb:hover img {
    transform: scale(1.03) rotate(0.5deg);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 40px rgba(124,58,237,0.1);
}

/* ---------- STAT CARD — NUMBER COUNTER EFFECT ---------- */
.stat-card__content .numbers {
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-card__content .numbers {
    transform: scale(1.08);
}

/* ---------- FEATURE CARD — ICON GRADIENT ---------- */
.feature-card__icon i {
    font-size: 36px !important;
    background: var(--gradient-primary) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-card__icon i {
    background: var(--gradient-reverse) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    transform: scale(1.15);
}

/* ---------- NAVBAR TOGGLER — HIDDEN ON DESKTOP, VISIBLE ON MOBILE ---------- */
.navbar-toggler {
    display: none !important;
}

/* Match navbar-expand-xl breakpoint (1199px) so toggler appears when menu collapses */
@media (max-width: 1199px) {
    .navbar-toggler {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        max-width: 38px !important;
        padding: 0 !important;
        margin: 0 0 0 auto !important;
        border: 1px solid rgba(255,255,255,0.2) !important;
        border-radius: 10px !important;
        background: rgba(124,58,237,0.15) !important;
        backdrop-filter: blur(8px) !important;
        -webkit-backdrop-filter: blur(8px) !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15) !important;
        overflow: visible !important;
        flex-shrink: 0 !important;
        transition: all 0.3s cubic-bezier(0.16,1,0.3,1) !important;
        outline: none !important;
        -webkit-appearance: none !important;
        cursor: pointer !important;
    }

    .navbar-toggler:hover {
        background: rgba(124,58,237,0.25) !important;
        border-color: rgba(255,255,255,0.3) !important;
        box-shadow: 0 4px 12px rgba(124,58,237,0.2) !important;
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 2px rgba(124,58,237,0.25) !important;
        outline: none !important;
    }

    .navbar-toggler:active {
        transform: scale(0.95) !important;
        background: rgba(124,58,237,0.3) !important;
    }

    /* menu-toggle styles moved to end-of-file block for clean override */
}

/* ---------- LINK / ANCHOR GLOBAL IMPROVEMENTS ---------- */
a {
    text-decoration: none !important;
}

a:focus-visible {
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ---------- IMPROVED IMAGE LOADING ---------- */
img {
    max-width: 100%;
    height: auto;
}

.game-card__thumb img,
.post-card__thumb img,
.about-thumb img {
    will-change: transform;
}


/* ================================================================
   ENHANCED RESPONSIVE — TABLET (768px - 991px)
   ================================================================ */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-2026__card {
        max-width: 400px;
        margin: 0 auto;
    }

    .stat-card {
        padding: 20px 16px;
    }

    .stat-card__content .numbers {
        font-size: 24px !important;
    }

    .feature-card {
        padding: 18px 14px !important;
    }

    .choose-card {
        margin-bottom: 20px;
    }

    .work-card {
        margin-bottom: 20px;
    }

    .post-card {
        margin-bottom: 20px;
    }
}


/* ================================================================
   ENHANCED RESPONSIVE — MOBILE (max-width: 767px)
   ================================================================ */
@media (max-width: 767px) {
    /* Better touch targets */
    .nav-btn {
        min-height: 44px;
        padding: 12px 18px !important;
    }

    .cmn-btn {
        min-height: 44px;
        padding: 12px 24px !important;
    }

    /* Game cards — 2 column on mobile */
    .game-grid .col-sm-6 {
        padding-left: 8px;
        padding-right: 8px;
    }

    .game-card__thumb img {
        height: 180px !important;
        object-fit: cover;
        width: 100% !important;
    }

    /* Better mobile card spacing */
    .game-card {
        margin-bottom: 16px;
        border-radius: 14px !important;
    }

    .game-card__content {
        padding: 14px 12px !important;
    }

    .game-card__content .d-flex {
        flex-direction: row !important;
        gap: 8px !important;
    }

    .game-card .cmn-btn.play_btn,
    .game-card .cmn-btn {
        font-size: 11px !important;
        padding: 8px 10px !important;
        border-radius: 8px !important;
        flex: 1 !important;
    }

    .game-card .cmn-btn-two.play_btn,
    .game-card .cmn-btn-two {
        font-size: 11px !important;
        padding: 8px 10px !important;
        border-radius: 8px !important;
        flex: 1 !important;
    }

    .game-name {
        font-size: 14px !important;
    }

    .cmn-btn.btn-sm {
        padding: 8px 16px !important;
        font-size: 12px !important;
    }

    /* Mobile hero adjustments */
    .hero-2026__badge {
        margin-bottom: 20px;
    }

    .hero-2026__text {
        max-width: 100%;
    }

    /* Mobile stat cards */
    .statistics-section.section--bg {
        padding: 40px 0 !important;
    }

    .stat-card {
        margin-bottom: 12px;
    }

    /* Mobile about section */
    .section-about .about-content h2 {
        font-size: 24px !important;
    }

    .section-about .about-content p {
        font-size: 14px;
    }

    .feature-card {
        padding: 16px 12px !important;
    }

    .feature-card__icon i {
        font-size: 28px !important;
    }

    .feature-card__content .title {
        font-size: 14px !important;
    }

    /* Mobile work cards */
    .work-card__icon {
        width: 70px;
        height: 70px;
    }

    .work-card__icon i {
        font-size: 32px !important;
    }

    .work-card__content .title {
        font-size: 16px;
    }

    .work-card__content p {
        font-size: 13px;
    }

    /* Mobile choose cards */
    .choose-card__content .title {
        font-size: 18px;
    }

    .choose-card__content p {
        font-size: 13px;
    }

    /* Mobile CTA */
    .cta-title {
        line-height: 1.3 !important;
    }

    /* Mobile FAQ */
    .cmn-accordion .card-header .acc-btn {
        padding: 15px 16px !important;
        font-size: 14px !important;
    }

    /* Mobile blog */
    .post-card {
        margin-bottom: 20px;
    }

    .post-card__title {
        font-size: 15px !important;
    }

    .post-card__content {
        padding: 16px !important;
    }

    /* Reduce motion on mobile for perf */
    .hero-2026__particles span {
        animation-duration: 12s;
    }

    /* Better section spacing on mobile */
    .pb-60 {
        padding-bottom: 40px !important;
    }

    .mb-none-50 > [class*="col-"] {
        margin-bottom: 20px !important;
    }

    .mb-none-30 > [class*="col-"] {
        margin-bottom: 16px !important;
    }
}


/* ================================================================
   ENHANCED RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ================================================================ */
@media (max-width: 480px) {
    /* Single column game cards */
    .game-grid .col-sm-6 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }

    .game-card__thumb img {
        height: 200px !important;
    }

    /* Stats — 2x2 grid */
    .statistics-section .col-6 {
        padding-left: 6px;
        padding-right: 6px;
    }

    /* Hero final adjustments */
    .hero-2026__title {
        line-height: 1.2 !important;
    }

    .hero-btn {
        height: 48px;
        font-size: 13px;
        padding: 0 20px;
    }

    /* Navigation */
    .header .navbar-collapse {
        padding: 16px;
    }

    .nav-btn {
        width: 100%;
        justify-content: center;
    }

    /* Footer adjustments */
    .footer-2026__bottom {
        flex-direction: column;
        gap: 14px;
    }

    .footer-2026__social {
        justify-content: center;
    }

    .footer-2026__menu {
        justify-content: center;
    }
}


/* ================================================================
   ENHANCED — LARGE DESKTOP (1400px+)
   ================================================================ */
@media (min-width: 1400px) {
    .hero-2026__content {
        padding-right: 60px;
    }

    .hero-2026__text {
        max-width: 540px;
    }

    .hero-btn {
        height: 58px;
        padding: 0 36px;
        font-size: 16px;
    }

    .hero-2026__stats {
        padding: 22px 32px;
    }

    .hero-2026__stat-item strong {
        font-size: 28px;
    }

    .hero-2026__card-info strong {
        font-size: 26px;
    }

    .stat-card {
        padding: 28px 24px;
    }

    .stat-card__content .numbers {
        font-size: 32px !important;
    }

    .choose-card {
        padding: 40px 32px !important;
    }

    .choose-card__icon {
        width: 80px;
        height: 80px;
    }

    .work-card {
        padding: 38px 28px;
    }

    .section-header {
        margin-bottom: 65px;
    }

    .section-header p {
        font-size: 17px;
    }

    .post-card__content {
        padding: 26px 28px !important;
    }

    .post-card__title {
        font-size: 20px !important;
    }
}


/* ================================================================
   ULTRA-WIDE DESKTOP (1600px+)
   ================================================================ */
@media (min-width: 1600px) {
    .hero-2026__title {
        font-size: 68px !important;
    }

    .section-title {
        font-size: 48px !important;
    }

    .cta-title {
        font-size: 52px !important;
    }

    .hero-2026__card {
        max-width: 480px;
        margin-left: auto;
    }
}


/* ================================================================
   HOVER STATES — DESKTOP ONLY (pointer: fine)
   ================================================================ */
@media (hover: hover) and (pointer: fine) {
    .game-card {
        cursor: pointer;
    }

    .work-card {
        cursor: default;
    }

    .choose-card {
        cursor: default;
    }

    .stat-card {
        cursor: default;
    }
}

/* On touch devices, reduce hover effects */
@media (hover: none) {
    .game-card:hover {
        transform: none !important;
    }

    .choose-card:hover {
        transform: none !important;
    }

    .work-card:hover {
        transform: none !important;
    }

    .post-card:hover {
        transform: none !important;
    }

    .stat-card:hover {
        transform: none !important;
    }
}


/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-2026__card {
        animation: none;
    }

    .hero-2026__particles span {
        animation: none;
        opacity: 0.3;
    }
}

/* ================================================================
   MOBILE MENU — UNIFIED ACCENT COLOR
   Make sure that the per-item icons and the active/hover pill all use
   one calm violet accent (instead of the previous green/yellow/teal
   rainbow). This block intentionally wins over earlier definitions in
   modern_theme_css and header partial via @media specificity.
   ================================================================ */
@media (max-width: 1199px) {
    .header .navbar-collapse {
        border: 1px solid rgba(124, 58, 237, 0.18) !important;
        background: rgba(8, 14, 30, 0.96) !important;
    }
    .header .main-menu > li > a {
        background: rgba(255, 255, 255, 0.025) !important;
        border: 1px solid rgba(255, 255, 255, 0.06) !important;
        color: rgba(255, 255, 255, 0.82) !important;
    }
    .header .main-menu > li > a i,
    .main-menu.main-menu--modern > li > a i {
        color: rgba(196, 181, 253, 0.92) !important;
    }
    .header .main-menu > li > a:hover,
    .header .main-menu > li.active > a,
    .header .main-menu > li > a.active {
        background: rgba(124, 58, 237, 0.14) !important;
        border-color: rgba(124, 58, 237, 0.32) !important;
        color: #fff !important;
    }
    .header .main-menu > li > a:hover i,
    .header .main-menu > li.active > a i,
    .header .main-menu > li > a.active i {
        color: #c4b5fd !important;
    }
}

/* ================================================================
   UKRAINIAN TYPOGRAPHY TUNING
   Cyrillic glyphs are visually denser than Latin ones. The default
   Poppins/Inter weights at desktop sizes read fine, but on phones
   the big chunky headings ("Грайте в онлайн-ігри…") feel too heavy
   and cramped. Below we soften weight, add line-height and lower
   font-size for h1/h2/big titles when the document is in Ukrainian.
   ================================================================ */
html[lang="ua"] .hero-2026__title,
html[lang="ua"] .banner-content__title,
html[lang="ua"] .breadcrumb__title,
html[lang="ua"] .section-title,
html[lang="ua"] .cta-title,
html[lang="ua"] h1,
html[lang="ua"] h2 {
    line-height: 1.22 !important;
    letter-spacing: -0.2px !important;
    font-weight: 700 !important;
}

html[lang="ua"] .hero-2026__title {
    font-size: 46px !important;
}

@media (max-width: 991px) {
    html[lang="ua"] .hero-2026__title {
        font-size: 32px !important;
        letter-spacing: -0.2px !important;
        line-height: 1.22 !important;
    }
    html[lang="ua"] .section-title {
        font-size: 26px !important;
    }
    html[lang="ua"] .cta-title {
        font-size: 28px !important;
    }
}

@media (max-width: 767px) {
    html[lang="ua"] .hero-2026__title {
        font-size: 26px !important;
        line-height: 1.24 !important;
        letter-spacing: 0 !important;
    }
    html[lang="ua"] .hero-2026__text {
        font-size: 14.5px !important;
        line-height: 1.65 !important;
    }
    html[lang="ua"] .section-title {
        font-size: 22px !important;
    }
    html[lang="ua"] .cta-title {
        font-size: 24px !important;
    }
    html[lang="ua"] .banner-content__title,
    html[lang="ua"] .breadcrumb__title {
        font-size: 28px !important;
        line-height: 1.22 !important;
    }
}

@media (max-width: 480px) {
    html[lang="ua"] .hero-2026__title {
        font-size: 23px !important;
    }
    html[lang="ua"] .section-title {
        font-size: 20px !important;
    }
}

/* ----------------------------------------------------------------
   Internal-page UA polish: dashboard, breadcrumbs, forms, cards.
   Cyrillic words like "ПАНЕЛЬ КЕРУВАННЯ" / "ВНЕСТИ ДЕПОЗИТ" / 
   "ВИВЕДЕННЯ КОШТІВ" need slimmer weight + tighter tracking so 
   they don't feel like granite blocks next to icons.
   ---------------------------------------------------------------- */
html[lang="ua"] .dash-v2__title,
html[lang="ua"] .dash-v2__badge,
html[lang="ua"] .dash-v2__section-title,
html[lang="ua"] .dash-v2__section-title span,
html[lang="ua"] .dash-v2__stat-body span,
html[lang="ua"] .dash-v2__btn,
html[lang="ua"] .dep-v2__panel-head,
html[lang="ua"] .dep-v2__submit,
html[lang="ua"] .dep-v2__header h3 {
    letter-spacing: 0 !important;
}

html[lang="ua"] .dash-v2__title {
    font-weight: 700 !important;
    line-height: 1.25 !important;
}

html[lang="ua"] .dash-v2__badge,
html[lang="ua"] .dash-v2__section-title span,
html[lang="ua"] .dash-v2__stat-body span,
html[lang="ua"] .dep-v2__panel-head {
    font-weight: 700 !important;
    letter-spacing: 0.2px !important;
}

html[lang="ua"] .dash-v2__btn,
html[lang="ua"] .dep-v2__submit {
    font-weight: 700 !important;
}

html[lang="ua"] .dash-v2__stat-body h3 {
    font-weight: 800 !important;
    letter-spacing: -0.2px !important;
}

html[lang="ua"] .dep-v2__header h3 {
    font-weight: 700 !important;
    line-height: 1.25 !important;
    letter-spacing: -0.2px !important;
}

/* Generic safety net for any internal-page card/page titles. */
html[lang="ua"] .card-title,
html[lang="ua"] .card-header h5,
html[lang="ua"] .page-title,
html[lang="ua"] .table thead th,
html[lang="ua"] .badge,
html[lang="ua"] .breadcrumb {
    font-weight: 600 !important;
    letter-spacing: 0 !important;
    line-height: 1.32 !important;
}

@media (max-width: 575px) {
    html[lang="ua"] .dash-v2__title { font-size: 17px !important; }
    html[lang="ua"] .dash-v2__stat-body h3 { font-size: 20px !important; }
    html[lang="ua"] .dep-v2__header h3 { font-size: 16px !important; }
}


/* ================================================================
   DESIGN REFRESH v2 — 2026-05
   Font fix, hamburger, game cards, hero, overall polish
   ================================================================ */

/* --- GLOBAL: Inter font for Cyrillic support (Є, І, Ї, Ґ) --- */
body,
h1, h2, h3, h4, h5, h6,
.section-title,
.section-sub-title,
.hero-2026__title,
.hero-2026__text,
.banner-content__title,
.breadcrumb__title,
p, span, a, li, label, input, select, textarea, button {
    font-family: 'Inter', 'Jost', 'Roboto', system-ui, -apple-system, sans-serif !important;
}

/* --- FIX: All button hover text visibility --- */
.dash-v2__btn:hover,
.dash-v2__btn--primary:hover,
.dash-v2__btn--sm:hover,
.dash-v2__game-btns .dash-v2__btn:hover,
.hero-btn--primary:hover,
.hero-btn--outline:hover,
.nav-btn--primary:hover,
.nav-btn--outline:hover,
.cmn-btn:hover,
.cmn-btn.play_btn:hover,
.cmn-btn-two:hover,
.subscribe-btn:hover,
.scroll-to-top:hover,
.footer-widget .subscribe-form .subscribe-btn:hover,
.cookies-card .cmn-btn:hover,
.header .nav-right a:nth-child(2):hover {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

/* --- FIX: Navbar container overflow on mobile --- */
.header .navbar {
    overflow: visible !important;
}

.header .container {
    max-width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
}

@media (min-width: 576px) {
    .header .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

@media (min-width: 1200px) {
    .header .container {
        max-width: 1170px !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

@media (min-width: 1400px) {
    .header .container {
        max-width: 1320px !important;
    }
}

/* --- REDESIGNED: Mobile menu slide-in --- */
@media (max-width: 1199px) {
    .header .navbar-collapse {
        max-height: 80vh !important;
        overflow-y: auto !important;
        border-radius: 20px !important;
        box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(124,58,237,0.12) !important;
        animation: mobileMenuSlide 0.35s cubic-bezier(0.16,1,0.3,1) !important;
        background: rgba(7,15,30,0.97) !important;
        border: 1px solid rgba(124,58,237,0.15) !important;
        backdrop-filter: blur(20px) !important;
    }

    @keyframes mobileMenuSlide {
        from { opacity: 0; transform: translateY(-16px) scale(0.98); }
        to { opacity: 1; transform: translateY(0) scale(1); }
    }

    .header .main-menu > li > a {
        border-radius: 14px !important;
        padding: 14px 16px !important;
        min-height: 50px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        transition: all 0.2s ease !important;
        background: rgba(255,255,255,0.03) !important;
        border: 1px solid transparent !important;
        text-align: center !important;
    }

    .header .main-menu > li > a:hover {
        background: rgba(124,58,237,0.1) !important;
        border-color: rgba(124,58,237,0.2) !important;
    }

    .header .main-menu > li > a:active {
        transform: scale(0.98) !important;
    }

    .nav-right.nav-right--modern {
        gap: 10px !important;
        padding-top: 10px !important;
        border-top: 1px solid rgba(255,255,255,0.06) !important;
        margin-top: 10px !important;
    }

    .nav-right .nav-btn {
        flex: 1 !important;
        justify-content: center !important;
        min-height: 48px !important;
        border-radius: 14px !important;
        font-weight: 700 !important;
    }

    /* Custom scrollbar */
    .header .navbar-collapse::-webkit-scrollbar { width: 4px; }
    .header .navbar-collapse::-webkit-scrollbar-track { background: transparent; }
    .header .navbar-collapse::-webkit-scrollbar-thumb { background: rgba(124,58,237,0.2); border-radius: 4px; }
}

/* --- REDESIGNED: Game cards --- */
.game-card {
    transform: translateZ(0) !important;
    backface-visibility: hidden !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    background: rgba(8,20,40,0.9) !important;
    transition: all 0.35s cubic-bezier(0.16,1,0.3,1) !important;
}

.game-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
    border-color: rgba(124,58,237,0.3) !important;
    box-shadow:
        0 20px 60px rgba(0,0,0,0.5),
        0 0 30px rgba(124,58,237,0.1),
        inset 0 0 0 1px rgba(124,58,237,0.08) !important;
}

.game-card__thumb {
    overflow: hidden !important;
    border-radius: 20px 20px 0 0 !important;
    position: relative !important;
}

.game-card__thumb img {
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), filter 0.5s ease !important;
}

.game-card:hover .game-card__thumb img {
    transform: scale(1.08) !important;
    filter: brightness(0.7) saturate(1.2) !important;
}

/* Play icon overlay on hover */
.game-card__thumb::after {
    content: '▶' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) scale(0.7) !important;
    width: 52px !important;
    height: 52px !important;
    border-radius: 50% !important;
    background: rgba(124,58,237,0.85) !important;
    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    opacity: 0 !important;
    transition: all 0.35s ease !important;
    z-index: 5 !important;
    backdrop-filter: blur(8px) !important;
    box-shadow: 0 8px 30px rgba(124,58,237,0.4) !important;
}

.game-card:hover .game-card__thumb::after {
    opacity: 1 !important;
    transform: translate(-50%, -50%) scale(1) !important;
}

.game-card__content {
    position: relative !important;
    z-index: 2 !important;
    padding: 18px 16px !important;
    background: linear-gradient(180deg, rgba(8,20,40,0.95), rgba(5,14,32,1)) !important;
}

.game-card__content .game-name {
    text-shadow: 0 1px 6px rgba(0,0,0,0.3) !important;
    font-weight: 800 !important;
    font-size: 15px !important;
    margin-bottom: 12px !important;
}

/* Game card buttons */
.game-card .play_btn,
.game-card .cmn-btn.play_btn,
.game-card .cmn-btn-two.play_btn {
    border-radius: 12px !important;
    min-height: 44px !important;
    padding: 10px 16px !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    transition: all 0.25s ease !important;
}

.game-card .cmn-btn.play_btn {
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%) !important;
    border: none !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    box-shadow: 0 4px 16px rgba(124,58,237,0.3) !important;
}

.game-card .cmn-btn.play_btn:hover {
    background: linear-gradient(135deg, #6d28d9 0%, #7c3aed 100%) !important;
    box-shadow: 0 8px 24px rgba(124,58,237,0.45) !important;
    transform: translateY(-2px) !important;
}

.game-card .cmn-btn-two.play_btn {
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    color: rgba(255,255,255,0.85) !important;
    -webkit-text-fill-color: rgba(255,255,255,0.85) !important;
}

.game-card .cmn-btn-two.play_btn:hover {
    background: rgba(255,255,255,0.1) !important;
    border-color: rgba(124,58,237,0.35) !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    transform: translateY(-2px) !important;
}

/* --- REDESIGNED: Hero section buttons --- */
.hero-2026__actions {
    gap: 14px !important;
}

.hero-btn.hero-btn--primary,
.hero-btn.hero-btn--soft {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #06b6d4 100%) !important;
    background-size: 200% 100% !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    border: none !important;
    border-radius: 16px !important;
    padding: 16px 32px !important;
    font-weight: 800 !important;
    font-size: 15px !important;
    letter-spacing: 0.3px !important;
    box-shadow:
        0 8px 30px rgba(124,58,237,0.35),
        inset 0 1px 0 rgba(255,255,255,0.15) !important;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1) !important;
    animation: heroGradientShift 4s ease-in-out infinite !important;
    position: relative !important;
    overflow: hidden !important;
}

@keyframes heroGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-btn.hero-btn--primary:hover,
.hero-btn.hero-btn--soft:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow:
        0 14px 44px rgba(124,58,237,0.45),
        inset 0 1px 0 rgba(255,255,255,0.2) !important;
}

/* Shimmer effect on primary hero btn */
.hero-btn.hero-btn--primary::before,
.hero-btn.hero-btn--soft::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 60% !important;
    height: 100% !important;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent) !important;
    transform: skewX(-25deg) !important;
    animation: heroShimmer 3.5s ease-in-out infinite !important;
}

@keyframes heroShimmer {
    0%, 55% { left: -100%; }
    100% { left: 200%; }
}

.hero-btn.hero-btn--soft::after {
    display: none !important;
}

.hero-btn.hero-btn--outline {
    background: rgba(255,255,255,0.04) !important;
    color: rgba(255,255,255,0.85) !important;
    -webkit-text-fill-color: rgba(255,255,255,0.85) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    border-radius: 16px !important;
    padding: 16px 32px !important;
    font-weight: 800 !important;
    font-size: 15px !important;
    letter-spacing: 0.3px !important;
    backdrop-filter: blur(12px) !important;
    transition: all 0.35s ease !important;
}

.hero-btn.hero-btn--outline:hover {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    border-color: rgba(124,58,237,0.5) !important;
    background: rgba(124,58,237,0.12) !important;
    box-shadow: 0 8px 30px rgba(124,58,237,0.2) !important;
    transform: translateY(-3px) !important;
}

.hero-btn:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(124,58,237,0.25) !important;
}

/* Hero buttons icons */
.hero-btn i {
    font-size: 18px !important;
    margin-right: 6px !important;
}

/* --- ENHANCEMENT: Section headings --- */
.section-title,
.section-header .title,
h2.title {
    font-weight: 900 !important;
    letter-spacing: -0.5px !important;
    text-shadow: 0 2px 20px rgba(124,58,237,0.12) !important;
}

/* Gradient underline for section titles */
.section-header .title::after,
h2.title::after {
    content: '' !important;
    display: block !important;
    width: 80px !important;
    height: 3px !important;
    margin-top: 14px !important;
    border-radius: 999px !important;
    background: linear-gradient(90deg, #7c3aed, #06b6d4, transparent) !important;
}

/* --- ENHANCEMENT: Footer social icons glow --- */
.footer-2026__social a:hover {
    color: #c4b5fd !important;
    -webkit-text-fill-color: #c4b5fd !important;
}

/* --- ENHANCEMENT: Focus states for accessibility --- */
.cmn-btn:focus-visible,
.cmn-btn-two:focus-visible,
.nav-btn:focus-visible,
.hero-btn:focus-visible,
.dash-v2__btn:focus-visible {
    outline: 2px solid rgba(196,181,253,0.7) !important;
    outline-offset: 3px !important;
    box-shadow: 0 0 0 4px rgba(124,58,237,0.15) !important;
}

/* --- FIX: Nav right button hover text --- */
.header .nav-right a:hover {
    -webkit-text-fill-color: currentColor !important;
}

/* --- FIX: Dashboard game card buttons text --- */
.dash-v2__game-btns .dash-v2__btn {
    -webkit-text-fill-color: #fff !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.dash-v2__game-btns .dash-v2__btn:hover {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

/* --- ENHANCEMENT: Better mobile dashboard --- */
@media (max-width: 575px) {
    .dash-v2__game {
        min-height: 240px !important;
        border-radius: 20px !important;
    }

    .dash-v2__game-thumb img {
        min-height: 240px !important;
    }

    .dash-v2__game-info {
        left: 12px !important;
        right: 12px !important;
        bottom: 12px !important;
    }

    .dash-v2__game-info h4 {
        font-size: 14px !important;
        margin-bottom: 8px !important;
    }

    .dash-v2__game-btns {
        gap: 8px !important;
    }

    .dash-v2__game-btns .dash-v2__btn {
        font-size: 12px !important;
        padding: 10px 12px !important;
        border-radius: 12px !important;
    }
}

/* --- ENHANCEMENT: Winner cards --- */
.winner-item {
    transition: all 0.3s ease !important;
    border-radius: 16px !important;
}

.winner-item:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 35px rgba(0,0,0,0.3) !important;
}

/* --- ENHANCEMENT: Forms --- */
.form-control {
    transition: all 0.3s ease !important;
    border-radius: 14px !important;
}

.form-control:focus {
    border-color: rgba(124,58,237,0.5) !important;
    box-shadow: 0 0 0 3px rgba(124,58,237,0.12), 0 2px 8px rgba(124,58,237,0.15) !important;
}

/* --- ENHANCEMENT: Pagination --- */
.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #7c3aed, #06b6d4) !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    border-color: transparent !important;
}

/* --- ENHANCEMENT: Cards subtle border glow on hover --- */
.card,
.custom--card {
    transition: all 0.3s ease !important;
}

.card:hover,
.custom--card:hover {
    border-color: rgba(124,58,237,0.18) !important;
}

/* --- ENHANCEMENT: Smooth section transitions --- */
section,
.pt-120,
.pb-120 {
    position: relative;
}

/* --- ENHANCEMENT: Hero stats bar redesign --- */
.hero-2026__stats {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    margin-top: 36px !important;
    padding: 18px 24px !important;
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 18px !important;
    backdrop-filter: blur(12px) !important;
}

.hero-2026__stat-item {
    flex: 1 !important;
    text-align: center !important;
}

.hero-2026__stat-item strong {
    display: block !important;
    font-size: 24px !important;
    font-weight: 900 !important;
    background: linear-gradient(135deg, #c4b5fd, #06b6d4) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.hero-2026__stat-item span {
    font-size: 12px !important;
    color: rgba(255,255,255,0.5) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-weight: 700 !important;
}

.hero-2026__stat-divider {
    width: 1px !important;
    height: 32px !important;
    background: rgba(255,255,255,0.1) !important;
    flex-shrink: 0 !important;
}

/* --- Mobile hero adjustments --- */
@media (max-width: 991px) {
    .hero-btn.hero-btn--primary,
    .hero-btn.hero-btn--soft {
        padding: 14px 24px !important;
        font-size: 14px !important;
        width: 100% !important;
        justify-content: center !important;
    }

    .hero-btn.hero-btn--outline {
        padding: 14px 24px !important;
        font-size: 14px !important;
        width: 100% !important;
        justify-content: center !important;
    }

    .hero-2026__actions {
        flex-direction: column !important;
        gap: 12px !important;
    }

    .hero-2026__stats {
        padding: 14px 16px !important;
    }

    .hero-2026__stat-item strong {
        font-size: 20px !important;
    }
}

/* --- ENHANCEMENT: Live Stats card glow pulse --- */
.hero-2026__card {
    animation: cardGlowPulse 4s ease-in-out infinite !important;
}

@keyframes cardGlowPulse {
    0%, 100% { box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(124,58,237,0.06); }
    50% { box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 20px rgba(124,58,237,0.08); }
}

/* --- ENHANCEMENT: Badge on hero section --- */
.hero-2026__badge {
    font-family: 'Inter', sans-serif !important;
    letter-spacing: 1.5px !important;
    font-size: 11px !important;
    font-weight: 800 !important;
}

/* ================================================================
   DESIGN REFRESH v3 — 2026-05
   Hamburger fix, clickable game cards, About redesign, page polish
   ================================================================ */

/* --- Hamburger v3 overrides removed — see earlier section for definitive rules --- */

/* Ensure navbar doesn't clip the toggler */
@media (max-width: 1199px) {
    .header .navbar,
    .header .header__bottom .navbar,
    .header .navbar > .container,
    .header .header__bottom > .container {
        overflow: visible !important;
    }
}

/* --- Clickable game card (entire card is a link) --- */
a.game-card--link,
a.game-card--link:hover,
a.game-card--link:focus {
    display: block !important;
    text-decoration: none !important;
    color: inherit !important;
    -webkit-text-fill-color: inherit !important;
    cursor: pointer !important;
}

a.game-card--link .game-name {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

a.game-card--link:hover .game-name {
    color: #c4b5fd !important;
    -webkit-text-fill-color: #c4b5fd !important;
}

/* Demo button inside clickable card — distinct hover */
.game-card__demo-btn {
    cursor: pointer !important;
    position: relative !important;
    z-index: 10 !important;
}

.game-card__demo-btn:hover {
    background: rgba(124,58,237,0.15) !important;
    border-color: rgba(124,58,237,0.4) !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

/* Play Now button inside card — also needs z-index */
.game-card__buttons .cmn-btn.play_btn {
    position: relative !important;
    z-index: 10 !important;
}

/* --- REDESIGN: About section feature cards --- */
.section-about {
    position: relative !important;
}

.section-about::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background:
        radial-gradient(ellipse at 10% 40%, rgba(124,58,237,0.06), transparent 50%),
        radial-gradient(ellipse at 90% 60%, rgba(6,182,212,0.04), transparent 50%) !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

.section-about .container {
    position: relative !important;
    z-index: 1 !important;
}

.section-about .section-subtitle {
    display: flex !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
    max-width: 100% !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 8px 18px !important;
    border-radius: 999px !important;
    background: rgba(124,58,237,0.1) !important;
    border: 1px solid rgba(124,58,237,0.2) !important;
    color: #c4b5fd !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    margin-bottom: 18px !important;
}

.section-about .about-content h2 {
    font-weight: 900 !important;
    font-size: 38px !important;
    letter-spacing: -0.5px !important;
    line-height: 1.2 !important;
    background: linear-gradient(135deg, #fff 30%, #c4b5fd 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.feature-card {
    padding: 28px 20px !important;
    border-radius: 18px !important;
    background: rgba(124,58,237,0.04) !important;
    border: 1px solid rgba(124,58,237,0.12) !important;
    transition: all 0.35s cubic-bezier(0.16,1,0.3,1) !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
}

.feature-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
    background: linear-gradient(90deg, #7c3aed, #06b6d4) !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.feature-card:hover {
    background: rgba(124,58,237,0.08) !important;
    border-color: rgba(124,58,237,0.25) !important;
    transform: translateY(-6px) !important;
    box-shadow: 0 16px 40px rgba(124,58,237,0.12), 0 0 0 1px rgba(124,58,237,0.05) !important;
}

.feature-card:hover::before {
    opacity: 1 !important;
}

.feature-card__icon {
    margin-bottom: 16px !important;
}

.feature-card__icon i,
.feature-card__icon svg {
    font-size: 38px !important;
    background: linear-gradient(135deg, #7c3aed, #06b6d4) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    filter: drop-shadow(0 2px 8px rgba(124,58,237,0.2)) !important;
}

.feature-card__content .title {
    font-size: 16px !important;
    font-weight: 800 !important;
    color: #fff !important;
}

/* About section CTA button */
.section-about .cmn-btn {
    background: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%) !important;
    border: none !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    border-radius: 14px !important;
    padding: 14px 28px !important;
    font-weight: 800 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 6px 24px rgba(124,58,237,0.3) !important;
    transition: all 0.3s ease !important;
}

.section-about .cmn-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 36px rgba(124,58,237,0.4) !important;
}

/* About image decoration */
.about-thumb {
    position: relative !important;
}

.about-thumb img {
    border-radius: 24px !important;
    box-shadow: 0 24px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(124,58,237,0.1) !important;
}

.about-thumb::before {
    content: '' !important;
    position: absolute !important;
    top: -20px !important;
    right: -20px !important;
    width: 140px !important;
    height: 140px !important;
    border-radius: 50% !important;
    background: radial-gradient(circle, rgba(124,58,237,0.15), transparent 70%) !important;
    z-index: -1 !important;
    animation: aboutGlow 4s ease-in-out infinite !important;
}

.about-thumb::after {
    content: '' !important;
    position: absolute !important;
    bottom: -15px !important;
    left: -15px !important;
    width: 100px !important;
    height: 100px !important;
    border-radius: 50% !important;
    background: radial-gradient(circle, rgba(6,182,212,0.12), transparent 70%) !important;
    z-index: -1 !important;
}

@keyframes aboutGlow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.7; }
}

/* --- REDESIGN: Why Choose Us cards --- */
.choose-card {
    position: relative !important;
    overflow: hidden !important;
}

.choose-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
    background: linear-gradient(90deg, #7c3aed, #06b6d4) !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.choose-card:hover::before {
    opacity: 1 !important;
}

.choose-card__icon {
    border-radius: 16px !important;
    background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(6,182,212,0.08)) !important;
    border: 1px solid rgba(124,58,237,0.18) !important;
}

.choose-card:hover .choose-card__icon {
    background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(6,182,212,0.12)) !important;
    box-shadow: 0 8px 24px rgba(124,58,237,0.15) !important;
}

/* --- REDESIGN: Blog / Post cards --- */
.post-card {
    border-radius: 20px !important;
    overflow: hidden !important;
    background: rgba(8,20,40,0.9) !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    transition: all 0.35s cubic-bezier(0.16,1,0.3,1) !important;
}

.post-card:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(124,58,237,0.2) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 20px rgba(124,58,237,0.08) !important;
}

.post-card__thumb {
    position: relative !important;
    overflow: hidden !important;
}

.post-card__thumb img {
    transition: transform 0.5s ease !important;
    width: 100% !important;
}

.post-card:hover .post-card__thumb img {
    transform: scale(1.06) !important;
}

.post-card__date {
    position: absolute !important;
    top: 14px !important;
    left: 14px !important;
    padding: 6px 14px !important;
    border-radius: 999px !important;
    background: rgba(124,58,237,0.85) !important;
    backdrop-filter: blur(8px) !important;
    color: #fff !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px !important;
}

.post-card__content {
    padding: 22px 20px !important;
}

.post-card__title {
    font-size: 18px !important;
    font-weight: 800 !important;
    line-height: 1.4 !important;
}

.post-card__title a {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    transition: color 0.2s ease !important;
}

.post-card__title a:hover {
    color: #c4b5fd !important;
    -webkit-text-fill-color: #c4b5fd !important;
}

.post-card .cmn-btn {
    border-radius: 12px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    padding: 10px 20px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* --- REDESIGN: CTA section --- */
.cta-section {
    position: relative !important;
    overflow: hidden !important;
}

.cta-section__overlay {
    position: absolute !important;
    inset: 0 !important;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(124,58,237,0.2), transparent 55%),
        radial-gradient(ellipse at 70% 30%, rgba(6,182,212,0.1), transparent 45%),
        linear-gradient(180deg, rgba(2,12,37,0.85), rgba(2,12,37,0.92)) !important;
    z-index: 1 !important;
}

.cta-section .container {
    position: relative !important;
    z-index: 2 !important;
}

.cta-title {
    font-size: 42px !important;
    font-weight: 900 !important;
    letter-spacing: -0.5px !important;
    margin-top: 16px !important;
    background: linear-gradient(135deg, #fff 40%, #c4b5fd 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.cta-section .cmn-btn--lg {
    background: linear-gradient(135deg, #7c3aed, #06b6d4) !important;
    border: none !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    border-radius: 16px !important;
    padding: 16px 36px !important;
    font-weight: 800 !important;
    font-size: 15px !important;
    box-shadow: 0 8px 30px rgba(124,58,237,0.35) !important;
    transition: all 0.3s ease !important;
}

.cta-section .cmn-btn--lg:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 14px 44px rgba(124,58,237,0.45) !important;
}

/* --- REDESIGN: How It Works cards --- */
.work-card {
    text-align: center !important;
    padding: 30px 20px !important;
    border-radius: 20px !important;
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    transition: all 0.35s ease !important;
    position: relative !important;
}

.work-card:hover {
    background: rgba(124,58,237,0.06) !important;
    border-color: rgba(124,58,237,0.2) !important;
    transform: translateY(-6px) !important;
    box-shadow: 0 16px 40px rgba(0,0,0,0.25) !important;
}

.work-card__icon {
    position: relative !important;
    width: 80px !important;
    height: 80px !important;
    margin: 0 auto 22px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 20px !important;
    background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(6,182,212,0.08)) !important;
    border: 1px solid rgba(124,58,237,0.18) !important;
}

.work-card__icon .step-number {
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    width: 26px !important;
    height: 26px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #7c3aed, #06b6d4) !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    box-shadow: 0 4px 12px rgba(124,58,237,0.3) !important;
}

.work-card__icon i {
    font-size: 34px !important;
    color: #c4b5fd !important;
}

.work-card__content .title {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #fff !important;
}

.work-card__content p {
    color: rgba(255,255,255,0.55) !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
}

/* Work timeline connector line — REMOVED */
.work-timeline {
    position: relative !important;
}

.work-timeline::before {
    display: none !important;
    content: none !important;
}

/* --- REDESIGN: Section subtitles (global) --- */
.section-subtitle {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 8px 18px !important;
    border-radius: 999px !important;
    background: rgba(124,58,237,0.1) !important;
    border: 1px solid rgba(124,58,237,0.2) !important;
    color: #c4b5fd !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    margin-bottom: 16px !important;
}

.section-subtitle--light {
    background: rgba(255,255,255,0.06) !important;
    border-color: rgba(255,255,255,0.12) !important;
    color: rgba(255,255,255,0.85) !important;
}

/* --- REDESIGN: Contact page --- */
.contact-section .form-control,
.contact-section textarea.form-control {
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 14px !important;
    color: #fff !important;
    padding: 14px 18px !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
}

.contact-section .form-control:focus,
.contact-section textarea.form-control:focus {
    border-color: rgba(124,58,237,0.4) !important;
    box-shadow: 0 0 0 3px rgba(124,58,237,0.1) !important;
    background: rgba(255,255,255,0.06) !important;
}

/* --- REDESIGN: FAQ accordion --- */
.accordion .accordion-item {
    border-radius: 16px !important;
    overflow: hidden !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    background: rgba(255,255,255,0.03) !important;
    margin-bottom: 10px !important;
    transition: all 0.3s ease !important;
}

.accordion .accordion-item:hover {
    border-color: rgba(124,58,237,0.18) !important;
}

.accordion .accordion-button {
    background: transparent !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    padding: 18px 22px !important;
    box-shadow: none !important;
}

.accordion .accordion-button:not(.collapsed) {
    background: rgba(124,58,237,0.06) !important;
    color: #c4b5fd !important;
}

.accordion .accordion-body {
    color: rgba(255,255,255,0.65) !important;
    font-size: 14px !important;
    line-height: 1.8 !important;
    padding: 0 22px 18px !important;
}

/* --- REDESIGN: Testimonials --- */
.testimonial-card {
    border-radius: 20px !important;
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    padding: 30px !important;
    transition: all 0.35s ease !important;
}

.testimonial-card:hover {
    border-color: rgba(124,58,237,0.2) !important;
    box-shadow: 0 16px 40px rgba(0,0,0,0.2) !important;
}

/* --- REDESIGN: Breadcrumb / Page header --- */
.inner-banner,
.inner-hero {
    position: relative !important;
    padding: 140px 0 80px !important;
    overflow: hidden !important;
}

.inner-banner::before,
.inner-hero::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(124,58,237,0.1), transparent 50%),
        linear-gradient(180deg, rgba(2,12,37,0.5), rgba(2,12,37,0.9)) !important;
    z-index: 1 !important;
}

.breadcrumb__title,
.banner-content__title,
.page-title {
    font-weight: 900 !important;
    letter-spacing: -0.5px !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4) !important;
}

.page-list li,
.page-list li a {
    color: rgba(255,255,255,0.85) !important;
    -webkit-text-fill-color: rgba(255,255,255,0.85) !important;
    text-shadow: 0 1px 8px rgba(0,0,0,0.3) !important;
}

.page-list li a:hover {
    color: #c4b5fd !important;
    -webkit-text-fill-color: #c4b5fd !important;
}

/* --- Referral section --- */
.referral-card,
.referral-section .card {
    border-radius: 20px !important;
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    transition: all 0.3s ease !important;
}

.referral-card:hover,
.referral-section .card:hover {
    border-color: rgba(124,58,237,0.2) !important;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2) !important;
}

/* --- GLOBAL: Smooth page enter animation --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wow.fadeInUp {
    animation: fadeInUp 0.6s ease-out both !important;
}

/* --- Mobile responsive improvements --- */
@media (max-width: 767px) {
    .section-about .about-content h2 {
        font-size: 28px !important;
    }

    .cta-title {
        font-size: 28px !important;
    }

    .feature-card {
        padding: 20px 14px !important;
    }

    .feature-card__content .title {
        font-size: 14px !important;
    }

    .choose-card {
        padding: 24px 18px !important;
    }

    .work-card {
        padding: 24px 16px !important;
    }

    .post-card__content {
        padding: 16px 14px !important;
    }

    .post-card__title {
        font-size: 16px !important;
    }
}

@media (max-width: 575px) {
    .section-subtitle {
        font-size: 10px !important;
        padding: 6px 14px !important;
        letter-spacing: 1.5px !important;
    }

    .inner-banner,
    .inner-hero {
        padding: 120px 0 60px !important;
    }
}


/* ================================================================
   HOMEPAGE DESIGN REFRESH v5 — 2026-05
   Make homepage less "raw": section dividers, depth, micro-interactions,
   visual hierarchy, animated backgrounds, polished cards & transitions
   ================================================================ */

/* ---------- SECTION DIVIDERS — soft gradient lines between sections ---------- */
section + section::before,
.pt-120 + .pt-120::before {
    content: '' !important;
    display: block !important;
    width: 100% !important;
    height: 1px !important;
    background: linear-gradient(90deg,
        transparent 5%,
        rgba(124,58,237,0.15) 25%,
        rgba(6,182,212,0.12) 50%,
        rgba(124,58,237,0.15) 75%,
        transparent 95%) !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 1 !important;
}

/* Don't double-up dividers on sections that already have borders */
.statistics-section.section--bg::before,
.cta-section::before,
.section-choose::before {
    height: 0 !important;
    display: none !important;
}

/* ---------- STATISTICS SECTION — glass cards with inner glow ---------- */
.statistics-section.section--bg {
    padding: 70px 0 !important;
    background:
        radial-gradient(ellipse at 25% 50%, rgba(124,58,237,0.1), transparent 45%),
        radial-gradient(ellipse at 75% 50%, rgba(6,182,212,0.06), transparent 45%),
        linear-gradient(180deg, rgba(5,11,22,0.98) 0%, rgba(2,12,37,0.95) 100%) !important;
    border-top: 1px solid rgba(124,58,237,0.12) !important;
    border-bottom: 1px solid rgba(6,182,212,0.08) !important;
}

.stat-card {
    padding: 26px 22px !important;
    border-radius: 18px !important;
    background:
        linear-gradient(135deg, rgba(124,58,237,0.06) 0%, rgba(6,182,212,0.03) 100%),
        rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(124,58,237,0.1) !important;
    backdrop-filter: blur(12px) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.04) !important;
}

.stat-card:hover {
    background:
        linear-gradient(135deg, rgba(124,58,237,0.1) 0%, rgba(6,182,212,0.06) 100%),
        rgba(255,255,255,0.05) !important;
    border-color: rgba(124,58,237,0.25) !important;
    box-shadow: 0 16px 40px rgba(0,0,0,0.25), 0 0 20px rgba(124,58,237,0.08), inset 0 1px 0 rgba(255,255,255,0.06) !important;
    transform: translateY(-4px) !important;
}

.stat-card__icon {
    width: 58px !important;
    height: 58px !important;
    min-width: 58px !important;
    border-radius: 16px !important;
    background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(6,182,212,0.1)) !important;
    border: 1px solid rgba(124,58,237,0.15) !important;
    box-shadow: 0 4px 12px rgba(124,58,237,0.1) !important;
    transition: all 0.35s ease !important;
}

.stat-card:hover .stat-card__icon {
    background: linear-gradient(135deg, rgba(124,58,237,0.22), rgba(6,182,212,0.15)) !important;
    box-shadow: 0 6px 20px rgba(124,58,237,0.2) !important;
    transform: scale(1.06) !important;
}

.stat-card__icon i,
.stat-card__icon svg {
    font-size: 26px !important;
    background: linear-gradient(135deg, #c4b5fd, #67e8f9) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.stat-card__content .numbers {
    font-size: clamp(20px, 2.5vw, 30px) !important;
    font-weight: 900 !important;
    background: linear-gradient(135deg, #fff 20%, #c4b5fd 80%, #67e8f9 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    line-height: 1.15 !important;
}

.stat-card__content .title {
    color: rgba(238,246,255,0.45) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    margin-top: 6px !important;
}


/* ---------- GAME SECTION — better background & header ---------- */
.section-games {
    background:
        radial-gradient(ellipse at 15% 30%, rgba(124,58,237,0.08), transparent 45%),
        radial-gradient(ellipse at 85% 70%, rgba(6,182,212,0.05), transparent 45%),
        radial-gradient(circle at 50% 0%, rgba(124,58,237,0.04), transparent 30%) !important;
}

.section-games .section-header {
    margin-bottom: 50px !important;
}

.section-games .section-subtitle {
    animation: badgePulse 3s ease-in-out infinite !important;
}

.section-games .section-header p {
    color: rgba(238,246,255,0.55) !important;
    font-size: 15px !important;
    max-width: 500px !important;
    margin: 12px auto 0 !important;
    line-height: 1.7 !important;
}

/* Game grid spacing improvements */
.game-grid {
    row-gap: 0 !important;
}

.game-grid > [class*="col-"] {
    transition: transform 0.3s ease !important;
}


/* ---------- ABOUT SECTION — polished layout ---------- */
.section-about .about-content p {
    color: rgba(238,246,255,0.6) !important;
    font-size: 15px !important;
    line-height: 1.85 !important;
    margin-bottom: 8px !important;
}

/* Feature cards — add subtle inner shadow for depth */
.feature-card {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.04) !important;
}

.feature-card:hover .feature-card__icon i,
.feature-card:hover .feature-card__icon svg {
    transform: scale(1.15) rotate(-5deg) !important;
    filter: drop-shadow(0 4px 12px rgba(124,58,237,0.35)) !important;
}


/* ---------- WHY CHOOSE US — deeper card styling ---------- */
.section-choose {
    overflow: hidden !important;
}

.choose-card {
    box-shadow: 0 8px 24px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.03) !important;
}

.choose-card:hover {
    box-shadow: 0 24px 60px rgba(0,0,0,0.35), 0 0 30px rgba(124,58,237,0.1), inset 0 1px 0 rgba(255,255,255,0.06) !important;
}

.choose-card__content .title {
    font-weight: 800 !important;
    margin-bottom: 12px !important;
    background: linear-gradient(135deg, #fff 60%, #c4b5fd 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.choose-card__content p {
    color: rgba(238,246,255,0.5) !important;
    line-height: 1.75 !important;
}

.choose-card__icon i {
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1) !important;
}

.choose-card:hover .choose-card__icon i {
    transform: scale(1.12) rotate(-3deg) !important;
}


/* ---------- HOW IT WORKS — timeline polish ---------- */
.section-howwork {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(124,58,237,0.04), transparent 40%),
        radial-gradient(ellipse at 20% 80%, rgba(6,182,212,0.03), transparent 35%) !important;
}

.work-card {
    box-shadow: 0 6px 20px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.03) !important;
}

.work-card:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 20px rgba(124,58,237,0.08) !important;
}

.work-card:hover .work-card__icon {
    border-color: rgba(124,58,237,0.35) !important;
    background: linear-gradient(135deg, rgba(124,58,237,0.18), rgba(6,182,212,0.12)) !important;
    box-shadow: 0 8px 24px rgba(124,58,237,0.15) !important;
}

.work-card__content .title {
    background: linear-gradient(135deg, #fff 60%, #c4b5fd 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}


/* ---------- CTA SECTION — dramatic gradient + particles ---------- */
.cta-section {
    border-top: 1px solid rgba(124,58,237,0.1) !important;
    border-bottom: 1px solid rgba(6,182,212,0.08) !important;
}

.cta-section__overlay {
    background:
        radial-gradient(ellipse at 25% 50%, rgba(124,58,237,0.25), transparent 50%),
        radial-gradient(ellipse at 75% 30%, rgba(6,182,212,0.15), transparent 45%),
        radial-gradient(ellipse at 50% 100%, rgba(0,0,0,0.4), transparent 50%),
        linear-gradient(180deg, rgba(2,12,37,0.8), rgba(2,12,37,0.92)) !important;
}

.cta-section .section-subtitle--light {
    box-shadow: 0 2px 10px rgba(0,0,0,0.15) !important;
}

.cta-title {
    text-shadow: 0 4px 30px rgba(124,58,237,0.15) !important;
}

.cta-section .cmn-btn--lg {
    position: relative !important;
    overflow: hidden !important;
}

.cta-section .cmn-btn--lg::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 60% !important;
    height: 100% !important;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.15), transparent) !important;
    transform: skewX(-25deg) !important;
    animation: heroShimmer 4s ease-in-out infinite !important;
}


/* ---------- WINNERS / TRANSACTIONS — polished cards ---------- */
.winner-item {
    background:
        linear-gradient(135deg, rgba(124,58,237,0.04), rgba(6,182,212,0.02)),
        rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
    padding: 18px 20px !important;
}

.winner-item:hover {
    background:
        linear-gradient(135deg, rgba(124,58,237,0.08), rgba(6,182,212,0.04)),
        rgba(255,255,255,0.05) !important;
    border-color: rgba(124,58,237,0.2) !important;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2), 0 0 15px rgba(124,58,237,0.06) !important;
}

.winner-item .name {
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 15px !important;
}

.winner-item .text--base {
    font-weight: 800 !important;
    background: linear-gradient(135deg, #c4b5fd, #67e8f9) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.winner-item::after,
.winner-item::before {
    display: none !important;
}

/* Transaction table polish */
.transaction-wrapper.card {
    border-radius: 20px !important;
    overflow: hidden !important;
    background: rgba(8,20,40,0.9) !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2) !important;
}

.table.style--two thead,
.table thead tr th {
    background: linear-gradient(135deg, rgba(124,58,237,0.85), rgba(6,182,212,0.7)) !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    padding: 16px 20px !important;
    border: none !important;
}

.table tbody tr {
    border-bottom: 1px solid rgba(255,255,255,0.04) !important;
    transition: background 0.25s ease !important;
}

.table tbody tr:hover {
    background: rgba(124,58,237,0.05) !important;
}

.table tbody td {
    padding: 16px 20px !important;
    color: rgba(238,246,255,0.6) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    border: none !important;
}

.table tbody td .text--base {
    font-weight: 700 !important;
    color: #c4b5fd !important;
}

/* Section title for winners/transactions */
.pt-120 h4 {
    font-size: 20px !important;
    font-weight: 800 !important;
    color: #fff !important;
    letter-spacing: -0.3px !important;
    margin-bottom: 20px !important;
}


/* ---------- TESTIMONIALS — depth & quote styling ---------- */
.testimonial-card {
    text-align: center !important;
    position: relative !important;
}

.testimonial-card__content {
    padding: 32px 28px !important;
    border-radius: 20px !important;
    background:
        linear-gradient(135deg, rgba(124,58,237,0.05), rgba(6,182,212,0.02)),
        rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.04) !important;
    position: relative !important;
}

.testimonial-card__content::before {
    content: '\201C' !important;
    position: absolute !important;
    top: 12px !important;
    left: 20px !important;
    font-size: 72px !important;
    color: rgba(124,58,237,0.12) !important;
    font-family: Georgia, serif !important;
    line-height: 1 !important;
    border: none !important;
    background: none !important;
    width: auto !important;
    height: auto !important;
}

.testimonial-card__content p {
    color: rgba(238,246,255,0.65) !important;
    font-size: 15px !important;
    line-height: 1.75 !important;
    font-style: italic !important;
    position: relative !important;
    z-index: 1 !important;
}

.testimonial-card__thumb {
    margin-top: 22px !important;
}

.testimonial-card__thumb img {
    width: 56px !important;
    height: 56px !important;
    border-radius: 50% !important;
    border: 3px solid rgba(124,58,237,0.25) !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2), 0 0 0 4px rgba(124,58,237,0.06) !important;
    transition: all 0.3s ease !important;
}

.testimonial-card:hover .testimonial-card__thumb img {
    border-color: rgba(124,58,237,0.5) !important;
    box-shadow: 0 4px 20px rgba(124,58,237,0.15), 0 0 0 6px rgba(124,58,237,0.08) !important;
    transform: scale(1.05) !important;
}

.testimonial-card .name {
    color: #fff !important;
    font-weight: 800 !important;
    font-size: 15px !important;
    margin-top: 10px !important;
}

.testimonial-slider .slick-arrow {
    background: linear-gradient(135deg, #7c3aed, #06b6d4) !important;
    border-radius: 14px !important;
    width: 46px !important;
    height: 46px !important;
    box-shadow: 0 4px 16px rgba(124,58,237,0.25) !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.testimonial-slider .slick-arrow:hover {
    transform: scale(1.08) !important;
    box-shadow: 0 8px 24px rgba(124,58,237,0.35) !important;
}


/* ---------- FAQ — polished accordion ---------- */
.cmn-accordion .card {
    background:
        linear-gradient(135deg, rgba(124,58,237,0.03), rgba(6,182,212,0.01)),
        rgba(255,255,255,0.025) !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    border-radius: 18px !important;
    margin-bottom: 12px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
}

.cmn-accordion .card:hover {
    border-color: rgba(124,58,237,0.2) !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15), 0 0 10px rgba(124,58,237,0.04) !important;
}

.cmn-accordion .card-header .acc-btn {
    background: rgba(124,58,237,0.04) !important;
    color: rgba(255,255,255,0.8) !important;
    padding: 20px 24px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    transition: all 0.3s ease !important;
    border-radius: 18px !important;
}

.cmn-accordion .card-header .acc-btn:not(.collapsed) {
    background: rgba(124,58,237,0.1) !important;
    color: #c4b5fd !important;
    border-radius: 18px 18px 0 0 !important;
}

.cmn-accordion .card-header .acc-btn:hover {
    background: rgba(124,58,237,0.08) !important;
    color: #fff !important;
}

.cmn-accordion .card-header .acc-btn .plus-icon,
.cmn-accordion .card-header .acc-btn::after {
    color: #c4b5fd !important;
    transition: transform 0.3s ease, color 0.3s ease !important;
}

.cmn-accordion .card-header .acc-btn:not(.collapsed) .plus-icon,
.cmn-accordion .card-header .acc-btn:not(.collapsed)::after {
    color: #67e8f9 !important;
}

.cmn-accordion .card-body {
    padding: 4px 24px 22px !important;
    color: rgba(238,246,255,0.55) !important;
    font-size: 14px !important;
    line-height: 1.85 !important;
}


/* ---------- SECTION HEADERS — polished ---------- */
.section-header {
    position: relative !important;
}

.section-header p {
    color: rgba(238,246,255,0.5) !important;
    font-size: 15px !important;
    line-height: 1.75 !important;
    max-width: 520px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.section-title {
    position: relative !important;
    display: inline-block !important;
}


/* ---------- FOOTER — polished gradient top border ---------- */
footer,
.footer,
.footer-section {
    position: relative !important;
}

footer::before,
.footer::before,
.footer-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 10% !important;
    right: 10% !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent, rgba(124,58,237,0.2), rgba(6,182,212,0.15), transparent) !important;
}


/* ---------- REFERRAL SECTION — polished ---------- */
.referral-content {
    position: relative !important;
}

.referral-content h2 {
    font-weight: 900 !important;
    letter-spacing: -0.5px !important;
}

.referral-content p {
    color: rgba(238,246,255,0.55) !important;
    line-height: 1.85 !important;
}

.referral-thumb img {
    border-radius: 24px !important;
    box-shadow: 0 24px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(124,58,237,0.08) !important;
    transition: all 0.5s ease !important;
}

.referral-thumb:hover img {
    transform: scale(1.02) !important;
    box-shadow: 0 30px 70px rgba(0,0,0,0.35), 0 0 25px rgba(124,58,237,0.08) !important;
}


/* ---------- GLOBAL — better section spacing & backgrounds ---------- */
.pt-120 {
    padding-top: 90px !important;
}

.pb-120 {
    padding-bottom: 90px !important;
}

@media (min-width: 992px) {
    .pt-120 {
        padding-top: 110px !important;
    }
    .pb-120 {
        padding-bottom: 110px !important;
    }
}

/* Alternate section backgrounds for visual rhythm */
section:nth-child(even) {
    background-color: rgba(5,11,22,0.4) !important;
}

section:nth-child(odd) {
    background-color: transparent !important;
}

/* Override for sections with explicit backgrounds */
.statistics-section.section--bg,
.cta-section,
.section-choose,
.section-games,
.section-howwork {
    background-color: unset !important;
}


/* ---------- GLOBAL — subtle animated accent glow behind main content ---------- */
@keyframes sectionGlow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.7; }
}


/* ---------- GAME CARD — content area bottom gradient ---------- */
.game-card__content {
    background: linear-gradient(180deg, rgba(8,20,40,0.92), rgba(5,14,32,0.98)) !important;
    border-top: 1px solid rgba(255,255,255,0.04) !important;
}


/* ---------- IMPROVED SCROLL-TO-TOP BUTTON ---------- */
.scroll-to-top {
    background: linear-gradient(135deg, #7c3aed, #06b6d4) !important;
    border: none !important;
    border-radius: 14px !important;
    box-shadow: 0 6px 20px rgba(124,58,237,0.3) !important;
    transition: all 0.3s ease !important;
}

.scroll-to-top:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 10px 30px rgba(124,58,237,0.4) !important;
}


/* ---------- MOBILE RESPONSIVE — v5 improvements ---------- */
@media (max-width: 991px) {
    .stat-card {
        padding: 20px 16px !important;
    }

    .stat-card__icon {
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
    }
}

@media (max-width: 767px) {
    .statistics-section.section--bg {
        padding: 50px 0 !important;
    }

    .stat-card {
        padding: 18px 14px !important;
        border-radius: 16px !important;
    }

    .stat-card__icon {
        width: 46px !important;
        height: 46px !important;
        min-width: 46px !important;
        border-radius: 12px !important;
    }

    .stat-card__icon i,
    .stat-card__icon svg {
        font-size: 22px !important;
    }

    .stat-card__content .title {
        font-size: 10px !important;
        letter-spacing: 1px !important;
    }

    /* Winner items mobile */
    .winner-item {
        padding: 14px 16px !important;
        border-radius: 14px !important;
    }

    .winner-item .name {
        font-size: 14px !important;
    }

    /* Transaction table mobile */
    .table thead tr th {
        padding: 12px 14px !important;
        font-size: 11px !important;
        letter-spacing: 0.5px !important;
    }

    .table tbody td {
        padding: 12px 14px !important;
        font-size: 13px !important;
    }

    /* Testimonials mobile */
    .testimonial-card__content {
        padding: 24px 20px !important;
    }

    .testimonial-card__content p {
        font-size: 14px !important;
    }

    /* FAQ mobile */
    .cmn-accordion .card {
        border-radius: 14px !important;
    }

    .cmn-accordion .card-header .acc-btn {
        padding: 16px 18px !important;
        font-size: 14px !important;
        border-radius: 14px !important;
    }

    .cmn-accordion .card-header .acc-btn:not(.collapsed) {
        border-radius: 14px 14px 0 0 !important;
    }

    .cmn-accordion .card-body {
        padding: 4px 18px 18px !important;
        font-size: 13px !important;
    }

    /* General mobile spacing */
    .pt-120 {
        padding-top: 60px !important;
    }

    .pb-120 {
        padding-bottom: 60px !important;
    }

    /* Section dividers thinner on mobile */
    section + section::before {
        opacity: 0.7 !important;
    }
}

@media (max-width: 480px) {
    .stat-card {
        padding: 16px 12px !important;
    }

    .stat-card__icon {
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
        border-radius: 10px !important;
    }

    .stat-card__icon i,
    .stat-card__icon svg {
        font-size: 20px !important;
    }

    .stat-card__content .numbers {
        font-size: 18px !important;
    }

    .stat-card__content .title {
        font-size: 9px !important;
    }

    .winner-item {
        padding: 12px 14px !important;
    }
}

/* ---------- LARGE DESKTOP — v5 enhancements ---------- */
@media (min-width: 1400px) {
    .statistics-section.section--bg {
        padding: 80px 0 !important;
    }

    .stat-card {
        padding: 30px 26px !important;
    }

    .stat-card__icon {
        width: 64px !important;
        height: 64px !important;
        min-width: 64px !important;
    }

    .stat-card__content .numbers {
        font-size: 34px !important;
    }

    .winner-item {
        padding: 20px 24px !important;
    }

    .testimonial-card__content {
        padding: 36px 32px !important;
    }
}


/* ---------- PREFERS REDUCED MOTION — v5 additions ---------- */
@media (prefers-reduced-motion: reduce) {
    .stat-card:hover,
    .winner-item:hover,
    .testimonial-card:hover .testimonial-card__thumb img,
    .choose-card:hover .choose-card__icon i,
    .feature-card:hover .feature-card__icon i {
        transform: none !important;
    }

    section + section::before {
        display: none !important;
    }

    .cta-section .cmn-btn--lg::after {
        animation: none !important;
    }
}


/* ================================================================
   MOBILE DESIGN OVERHAUL v6 — 2026-05
   Focus: clear section separation, visual rhythm, spacing between
   blocks so nothing feels "piled up" on mobile devices.
   ================================================================ */

/* ---- MOBILE: Visible section dividers (gradient bar + spacing) ---- */
@media (max-width: 991px) {

    /* Stronger divider between every section on mobile */
    section + section::before,
    .pt-120 + .pt-120::before {
        content: '' !important;
        display: block !important;
        width: 60% !important;
        max-width: 280px !important;
        height: 3px !important;
        background: linear-gradient(90deg, #7c3aed, #06b6d4) !important;
        position: absolute !important;
        top: 0 !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        z-index: 2 !important;
        border-radius: 999px !important;
        opacity: 1 !important;
        box-shadow: 0 0 12px rgba(124,58,237,0.25) !important;
    }

    /* Hero doesn't need a divider at the top */
    .hero-2026 + section::before {
        display: block !important;
    }

    /* Remove duplicate dividers on sections with their own borders */
    .statistics-section.section--bg::before,
    .cta-section::before,
    .section-choose::before {
        display: none !important;
    }
}


/* ---- MOBILE: Section spacing — generous padding to "breathe" ---- */
@media (max-width: 767px) {

    /* ---- Base section padding — more vertical space ---- */
    section.pt-120,
    section.pb-120,
    .pt-120.pb-120,
    section[class*="pt-120"],
    section[class*="pb-120"] {
        padding-top: 56px !important;
        padding-bottom: 56px !important;
    }

    /* ---- Hero: tighter on mobile since it has its own design ---- */
    .hero-2026 {
        padding-top: 80px !important;
        padding-bottom: 40px !important;
    }

    /* ---- Statistics section ---- */
    .statistics-section.section--bg {
        padding: 44px 0 !important;
        margin-top: 0 !important;
    }

    .statistics-section .row {
        gap: 0 !important;
    }

    .statistics-section .col-6,
    .statistics-section .col-md-3 {
        padding-left: 6px !important;
        padding-right: 6px !important;
        margin-bottom: 12px !important;
    }

    .statistics-section .mb-30 {
        margin-bottom: 12px !important;
    }


    /* ---- Game section — clear separation from stats ---- */
    .section-games {
        padding-top: 56px !important;
        padding-bottom: 56px !important;
        background:
            radial-gradient(ellipse at 50% 0%, rgba(124,58,237,0.06), transparent 40%),
            rgba(5,11,22,0.5) !important;
    }

    .section-games .section-header {
        margin-bottom: 30px !important;
    }

    .section-games .section-header p {
        font-size: 13px !important;
        margin-top: 8px !important;
        line-height: 1.6 !important;
    }

    /* Game grid — tighter spacing between cards */
    .game-grid {
        row-gap: 0 !important;
    }

    .game-grid > [class*="col-"] {
        margin-bottom: 14px !important;
    }

    .game-grid .mb-30,
    .game-grid .mb-none-30 > [class*="col-"] {
        margin-bottom: 14px !important;
    }

    .game-card {
        margin-bottom: 0 !important;
    }


    /* ---- About section — visually distinct block ---- */
    .section-about {
        padding-top: 56px !important;
        padding-bottom: 56px !important;
        background:
            radial-gradient(ellipse at 30% 30%, rgba(124,58,237,0.05), transparent 50%),
            transparent !important;
    }

    .section-about .about-content {
        text-align: center !important;
    }

    .section-about .section-subtitle {
        display: flex !important;
        width: -moz-fit-content !important;
        width: fit-content !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .section-about .section-title.text-start {
        text-align: center !important;
    }

    .section-about .about-content p {
        font-size: 14px !important;
        line-height: 1.75 !important;
        text-align: center !important;
    }

    .section-about .cmn-btn {
        display: inline-flex !important;
        margin: 16px auto 0 !important;
    }

    /* Feature cards grid on mobile */
    .section-about .row.mt-4 {
        gap: 0 !important;
    }

    .section-about .col-6.mb-15 {
        padding-left: 5px !important;
        padding-right: 5px !important;
        margin-bottom: 10px !important;
    }

    .feature-card {
        padding: 18px 12px !important;
        min-height: 100px !important;
    }

    .feature-card__icon {
        margin-bottom: 10px !important;
    }

    .feature-card__icon i,
    .feature-card__icon svg {
        font-size: 28px !important;
    }

    .feature-card__content .title {
        font-size: 13px !important;
        line-height: 1.3 !important;
    }


    /* ---- Why Choose Us — distinct background ---- */
    .section-choose {
        padding-top: 56px !important;
        padding-bottom: 56px !important;
    }

    .section-choose .section-header {
        margin-bottom: 30px !important;
    }

    .choose-card {
        padding: 22px 16px !important;
        margin-bottom: 14px !important;
        border-radius: 16px !important;
    }

    .choose-card .mb-30 {
        margin-bottom: 14px !important;
    }

    .choose-card__icon {
        width: 56px !important;
        height: 56px !important;
        margin-bottom: 14px !important;
    }

    .choose-card__content .title {
        font-size: 17px !important;
        margin-bottom: 8px !important;
    }

    .choose-card__content p {
        font-size: 13px !important;
        line-height: 1.65 !important;
    }


    /* ---- How It Works — clear visual block ---- */
    .section-howwork {
        padding-top: 56px !important;
        padding-bottom: 40px !important;
        background:
            radial-gradient(ellipse at 50% 0%, rgba(124,58,237,0.05), transparent 40%),
            rgba(5,11,22,0.4) !important;
    }

    .section-howwork .section-header {
        margin-bottom: 28px !important;
    }

    .work-card {
        padding: 22px 16px !important;
        margin-bottom: 14px !important;
        border-radius: 16px !important;
    }

    .work-card__icon {
        width: 64px !important;
        height: 64px !important;
        margin: 0 auto 16px !important;
        border-radius: 16px !important;
    }

    .work-card__icon i {
        font-size: 28px !important;
    }

    .work-card__icon .step-number {
        width: 22px !important;
        height: 22px !important;
        font-size: 11px !important;
        top: -6px !important;
        right: -6px !important;
    }

    .work-card__content .title {
        font-size: 16px !important;
        margin-bottom: 8px !important;
    }

    .work-card__content p {
        font-size: 13px !important;
        line-height: 1.6 !important;
    }

    .mb-50 {
        margin-bottom: 14px !important;
    }


    /* ---- CTA section — dramatic standalone block ---- */
    .cta-section {
        padding-top: 56px !important;
        padding-bottom: 56px !important;
        margin: 0 !important;
    }

    .cta-title {
        font-size: 24px !important;
        line-height: 1.3 !important;
        margin-bottom: 8px !important;
    }

    .cta-section .cmn-btn--lg {
        padding: 14px 28px !important;
        font-size: 14px !important;
        border-radius: 14px !important;
    }


    /* ---- Winners / Transactions — clean block ---- */
    .pt-120 > .container > .row > .col-xl-4,
    .pt-120 > .container > .row > .col-xl-8 {
        margin-bottom: 24px !important;
    }

    .pt-120 h4 {
        font-size: 18px !important;
        margin-bottom: 14px !important;
    }

    .winner-item {
        padding: 14px 14px !important;
        margin-bottom: 10px !important;
        border-radius: 14px !important;
    }

    .winner-item .name {
        font-size: 13px !important;
    }

    .winner-item .text--base {
        font-size: 13px !important;
    }

    .transaction-wrapper.card {
        border-radius: 16px !important;
    }


    /* ---- Testimonials — distinct section ---- */
    section.overflow-hidden {
        padding-top: 56px !important;
        padding-bottom: 56px !important;
    }

    .testimonial-card {
        padding: 0 !important;
        margin: 0 8px !important;
    }

    .testimonial-card__content {
        padding: 22px 18px !important;
        border-radius: 16px !important;
    }

    .testimonial-card__content::before {
        font-size: 48px !important;
        top: 8px !important;
        left: 14px !important;
    }

    .testimonial-card__content p {
        font-size: 13px !important;
        line-height: 1.7 !important;
    }

    .testimonial-card__thumb {
        margin-top: 16px !important;
    }

    .testimonial-card__thumb img {
        width: 48px !important;
        height: 48px !important;
    }

    .testimonial-card .name {
        font-size: 14px !important;
        margin-top: 8px !important;
    }

    .testimonial-slider .slick-arrow {
        width: 38px !important;
        height: 38px !important;
        border-radius: 10px !important;
    }


    /* ---- FAQ — well-spaced accordion ---- */
    .faq-content {
        margin-top: 0 !important;
    }

    .cmn-accordion .card {
        margin-bottom: 10px !important;
        border-radius: 14px !important;
    }

    .cmn-accordion .card-header .acc-btn {
        padding: 16px 16px !important;
        font-size: 13px !important;
        line-height: 1.45 !important;
        border-radius: 14px !important;
    }

    .cmn-accordion .card-header .acc-btn:not(.collapsed) {
        border-radius: 14px 14px 0 0 !important;
    }

    .cmn-accordion .card-body {
        padding: 4px 16px 16px !important;
        font-size: 13px !important;
        line-height: 1.7 !important;
    }

    /* FAQ — single column on mobile */
    .cmn-accordion .row .col-lg-6 {
        margin-bottom: 0 !important;
    }

    .cmn-accordion .mb-30 {
        margin-bottom: 0 !important;
    }


    /* ---- Blog — clean card section ---- */
    .section-blog {
        padding-top: 56px !important;
        padding-bottom: 56px !important;
        background:
            radial-gradient(ellipse at 50% 100%, rgba(124,58,237,0.04), transparent 40%),
            rgba(5,11,22,0.4) !important;
    }

    .section-blog .section-header {
        margin-bottom: 28px !important;
    }

    .section-blog .section-header p {
        font-size: 13px !important;
    }

    .post-card {
        margin-bottom: 16px !important;
        border-radius: 16px !important;
    }

    .post-card__thumb img {
        height: 180px !important;
        object-fit: cover !important;
        width: 100% !important;
    }

    .post-card__content {
        padding: 16px 14px !important;
    }

    .post-card__title {
        font-size: 15px !important;
        line-height: 1.4 !important;
        margin-bottom: 8px !important;
    }

    .post-card .cmn-btn {
        padding: 8px 18px !important;
        font-size: 11px !important;
        margin-top: 8px !important;
    }

    .post-card__date {
        font-size: 10px !important;
        padding: 5px 10px !important;
    }


    /* ---- Referral section ---- */
    .referral-card,
    .referral-section .card {
        border-radius: 16px !important;
        margin-bottom: 14px !important;
    }


    /* ---- Section headers on mobile — compact & centered ---- */
    .section-header {
        margin-bottom: 28px !important;
        text-align: center !important;
    }

    .section-header .section-title {
        font-size: 22px !important;
        line-height: 1.25 !important;
        margin-bottom: 8px !important;
    }

    .section-header p {
        font-size: 13px !important;
        line-height: 1.6 !important;
        max-width: 100% !important;
        margin-top: 8px !important;
        color: rgba(238,246,255,0.45) !important;
    }

    .section-subtitle {
        font-size: 10px !important;
        padding: 6px 14px !important;
        letter-spacing: 1.5px !important;
        margin-bottom: 12px !important;
    }

    /* Gradient underline — centered on mobile */
    .section-header .title::after,
    h2.title::after {
        margin-left: auto !important;
        margin-right: auto !important;
    }


    /* ---- mb-none-30 / mb-none-50 fix for mobile ---- */
    .mb-none-30 > [class*="col-"] {
        margin-bottom: 14px !important;
    }

    .mb-none-50 > [class*="col-"] {
        margin-bottom: 14px !important;
    }
}


/* ---- SMALL MOBILE (≤480px) — even tighter optimizations ---- */
@media (max-width: 480px) {

    /* Even more visible dividers on small screens */
    section + section::before,
    .pt-120 + .pt-120::before {
        width: 50% !important;
        max-width: 200px !important;
        height: 3px !important;
    }

    /* Section padding — compact */
    section.pt-120,
    section.pb-120,
    .pt-120.pb-120,
    section[class*="pt-120"],
    section[class*="pb-120"] {
        padding-top: 44px !important;
        padding-bottom: 44px !important;
    }

    .hero-2026 {
        padding-top: 72px !important;
        padding-bottom: 32px !important;
    }

    /* Stats section */
    .statistics-section.section--bg {
        padding: 36px 0 !important;
    }

    .statistics-section .col-6 {
        padding-left: 4px !important;
        padding-right: 4px !important;
        margin-bottom: 8px !important;
    }

    /* Game section */
    .section-games {
        padding-top: 44px !important;
        padding-bottom: 44px !important;
    }

    .section-games .section-header {
        margin-bottom: 24px !important;
    }

    .game-grid > [class*="col-"] {
        margin-bottom: 12px !important;
    }

    /* About section */
    .section-about {
        padding-top: 44px !important;
        padding-bottom: 44px !important;
    }

    .section-about .about-content h2 {
        font-size: 22px !important;
    }

    .feature-card {
        padding: 14px 10px !important;
        min-height: 90px !important;
    }

    .feature-card__icon i,
    .feature-card__icon svg {
        font-size: 24px !important;
    }

    .feature-card__content .title {
        font-size: 12px !important;
    }

    /* Choose cards */
    .choose-card {
        padding: 18px 14px !important;
    }

    .choose-card__icon {
        width: 48px !important;
        height: 48px !important;
    }

    .choose-card__content .title {
        font-size: 16px !important;
    }

    .choose-card__content p {
        font-size: 12px !important;
    }

    /* Work cards */
    .work-card {
        padding: 18px 14px !important;
    }

    .work-card__icon {
        width: 56px !important;
        height: 56px !important;
    }

    .work-card__content .title {
        font-size: 15px !important;
    }

    .work-card__content p {
        font-size: 12px !important;
    }

    /* CTA */
    .cta-section {
        padding-top: 44px !important;
        padding-bottom: 44px !important;
    }

    .cta-title {
        font-size: 21px !important;
    }

    .cta-section .cmn-btn--lg {
        padding: 12px 24px !important;
        font-size: 13px !important;
    }

    /* Winner items */
    .winner-item {
        padding: 12px 12px !important;
    }

    .winner-item .name {
        font-size: 12px !important;
    }

    /* Testimonials */
    .testimonial-card {
        margin: 0 4px !important;
    }

    .testimonial-card__content {
        padding: 18px 14px !important;
    }

    .testimonial-card__content p {
        font-size: 12px !important;
    }

    .testimonial-card__thumb img {
        width: 42px !important;
        height: 42px !important;
    }

    .testimonial-card .name {
        font-size: 13px !important;
    }

    /* FAQ */
    .cmn-accordion .card-header .acc-btn {
        padding: 14px 14px !important;
        font-size: 12px !important;
    }

    .cmn-accordion .card-body {
        padding: 4px 14px 14px !important;
        font-size: 12px !important;
    }

    /* Blog */
    .section-blog {
        padding-top: 44px !important;
        padding-bottom: 44px !important;
    }

    .post-card__thumb img {
        height: 160px !important;
    }

    .post-card__content {
        padding: 14px 12px !important;
    }

    .post-card__title {
        font-size: 14px !important;
    }

    /* Section headers small mobile */
    .section-header .section-title {
        font-size: 20px !important;
    }

    .section-header p {
        font-size: 12px !important;
    }
}


/* ---- TABLET (768px – 991px) — balanced layout ---- */
@media (min-width: 768px) and (max-width: 991px) {

    /* Section dividers for tablet */
    section + section::before {
        width: 40% !important;
        max-width: 300px !important;
        height: 3px !important;
    }

    /* Section spacing */
    section.pt-120,
    section.pb-120 {
        padding-top: 72px !important;
        padding-bottom: 72px !important;
    }

    /* Statistics */
    .statistics-section.section--bg {
        padding: 56px 0 !important;
    }

    /* Game section */
    .section-games .section-header {
        margin-bottom: 36px !important;
    }

    /* About */
    .section-about .about-content {
        text-align: center !important;
        margin-bottom: 30px !important;
    }

    .section-about .section-title.text-start {
        text-align: center !important;
    }

    .section-about .cmn-btn {
        display: inline-flex !important;
    }

    /* Work cards — 2-column grid */
    .work-card {
        padding: 24px 18px !important;
        margin-bottom: 16px !important;
    }

    /* Choose cards */
    .choose-card {
        padding: 26px 20px !important;
        margin-bottom: 16px !important;
    }

    /* Blog */
    .post-card {
        margin-bottom: 16px !important;
    }

    /* Testimonials */
    .testimonial-card__content {
        padding: 26px 22px !important;
    }
}

/* ================================================================
   BADGES ABOVE HEADING — force section-subtitle onto its own line
   so the pill ("ПРО НАС", "OUR COLLECTION", "Why Us", "Latest News")
   sits above the section title instead of inline with it.
   ================================================================ */
.section-subtitle {
    display: flex !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
    max-width: 100% !important;
}

/* Centered headers (game, why_choose_us, blog, faq, how_work, etc.) */
.section-header.text-center > .section-subtitle,
.section-header.text-center .section-subtitle {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Left-aligned About section badge — desktop only */
.about-content > .section-subtitle {
    margin-left: 0 !important;
    margin-right: auto !important;
}

/* CTA section badge */
.cta-section .section-subtitle,
.cta-section .section-subtitle--light {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* On mobile the about section is centered, so badge must be centered too */
@media (max-width: 991px) {
    .about-content > .section-subtitle,
    .section-about .about-content .section-subtitle {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* ================================================================
   FEATURE CARDS — equal-height boxes in About section
   When titles wrap to 2 lines (e.g. "Найкраща платформа"), the
   adjacent card with a 1-line title looks shorter. Force them to
   stretch to row height and align content vertically.
   ================================================================ */
.section-about .row.mt-4 {
    align-items: stretch !important;
}
.section-about .row.mt-4 > [class*="col-"] {
    display: flex !important;
    flex-direction: column !important;
}
.section-about .feature-card {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}
.section-about .feature-card__content {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 1 1 auto !important;
    min-height: 0 !important;
}
.section-about .feature-card__content .title {
    margin: 0 !important;
    text-align: center !important;
}

/* Hamburger button — bullet-proof flex centering even on Ukrainian where
   the language-specific override sets display:block. We re-assert it here
   with the same media query so the burger box is always centered. */
@media (max-width: 1399px) {
    html[lang="ua"] .navbar-expand-xl .navbar-toggler,
    html[lang="ua"] .navbar-toggler {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
    }
}

/* ================================================================
   MOBILE MENU — redesigned hamburger button + X toggle on open
   ================================================================ */
@media (max-width: 1199px) {
    .navbar-toggler {
        width: 46px !important;
        height: 46px !important;
        min-width: 46px !important;
        max-width: 46px !important;
        padding: 0 !important;
        border-radius: 12px !important;
        background: linear-gradient(135deg, rgba(124,58,237,0.22), rgba(6,182,212,0.18)) !important;
        border: 1px solid rgba(196,181,253,0.35) !important;
        box-shadow: 0 4px 14px rgba(124,58,237,0.25), inset 0 1px 0 rgba(255,255,255,0.08) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: visible !important;
    }

    .navbar-toggler:hover {
        background: linear-gradient(135deg, rgba(124,58,237,0.32), rgba(6,182,212,0.26)) !important;
        border-color: rgba(196,181,253,0.55) !important;
        box-shadow: 0 6px 20px rgba(124,58,237,0.4) !important;
        transform: translateY(-1px) !important;
    }

    /* Rebuild the burger lines from scratch — three crisp bars that morph
       into an X when .is-active is added. */
    .menu-toggle {
        width: 22px !important;
        height: 16px !important;
        min-width: 22px !important;
        min-height: 16px !important;
        position: relative !important;
        display: block !important;
        flex-shrink: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
        border-top: none !important;
        border-bottom: none !important;
        font-size: 0 !important;
        cursor: pointer !important;
    }

    .menu-toggle,
    .menu-toggle::before,
    .menu-toggle::after {
        box-sizing: border-box !important;
    }

    /* Top bar */
    .menu-toggle::before {
        content: '' !important;
        display: block !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: auto !important;
        bottom: auto !important;
        width: 100% !important;
        height: 2.5px !important;
        background: #fff !important;
        border: none !important;
        border-top: none !important;
        border-radius: 2px !important;
        transform: none !important;
        transform-origin: center center !important;
        transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
                    top 0.28s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.18s linear !important;
    }

    /* Bottom bar */
    .menu-toggle::after {
        content: '' !important;
        display: block !important;
        position: absolute !important;
        bottom: 0 !important;
        top: auto !important;
        left: 0 !important;
        right: auto !important;
        width: 100% !important;
        height: 2.5px !important;
        background: #fff !important;
        border: none !important;
        border-top: none !important;
        border-radius: 2px !important;
        transform: none !important;
        transform-origin: center center !important;
        transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
                    bottom 0.28s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.18s linear !important;
    }

    /* Middle bar via background-image on the toggle itself */
    .menu-toggle {
        background-image: linear-gradient(#fff, #fff) !important;
        background-repeat: no-repeat !important;
        background-position: center center !important;
        background-size: 100% 2.5px !important;
        transition: background-size 0.18s linear !important;
    }

    /* OPEN state — morph into clean X */
    .menu-toggle.is-active,
    .header.active .menu-toggle {
        background-size: 0 2.5px !important;
    }

    .menu-toggle.is-active::before,
    .header.active .menu-toggle::before {
        top: 50% !important;
        bottom: auto !important;
        transform: translateY(-50%) rotate(45deg) !important;
        background: #fff !important;
        border: none !important;
    }

    .menu-toggle.is-active::after,
    .header.active .menu-toggle::after {
        bottom: auto !important;
        top: 50% !important;
        transform: translateY(-50%) rotate(-45deg) !important;
        background: #fff !important;
        border: none !important;
    }

    /* Dropdown chevron — keep inside the menu item box */
    .header .main-menu li.menu_has_children > a {
        position: relative !important;
        padding-right: 40px !important;
    }
    .header .main-menu li.menu_has_children > a::before {
        position: absolute !important;
        right: 14px !important;
        top: 50% !important;
        left: auto !important;
        transform: translateY(-50%) !important;
        margin-left: 0 !important;
        order: unset !important;
    }
    .header .main-menu li.menu_has_children:hover > a::before {
        transform: translateY(-50%) rotate(180deg) !important;
    }
}

/* ================================================================
   COOKIE BANNER — equal-height aligned buttons
   ================================================================ */
.cookies-card__btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
}
.cookies-card__btn .cmn-btn {
    height: 42px !important;
    min-height: 42px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 24px !important;
    font-size: 13px !important;
    margin: 0 !important;
}
.cookies-card__btn .decline-cookies {
    height: 42px !important;
    min-height: 42px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 24px !important;
    font-size: 13px !important;
    border-radius: 999px !important;
    margin: 0 !important;
}
@media (max-width: 480px) {
    .cookies-card__btn {
        flex-direction: column !important;
        gap: 8px !important;
    }
    .cookies-card__btn .cmn-btn,
    .cookies-card__btn .decline-cookies {
        width: 100% !important;
    }
}


