/* Copy Animation */
.base-color {
  color: hsl(var(--base)) !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: #1e2337;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all 0.5s;
  background: #d1d1d1;
  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: 80%;
  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: hsl(var(--base)) !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;
}

.payment-system-list {
  --thumb-width: 100px;
  --thumb-height: 40px;
  --radio-size: 12px;
  --border-color: #cccccf59;
  --hover-border-color: hsl(var(--base));
  background-color: #ffffff00;
  border-radius: 5px;
  height: 100%;
  padding-right: 12px;
}
@media (max-width: 1199px) {
  .bg-color-lg {
    background-color: hsl(var(--white) / 0.1);
  }
}

.payment-system-list .form--control:disabled,
.payment-system-list .form--control[readonly] {
  background-color: transparent !important;
}

.payment-system-list.is-scrollable {
  max-height: min(460px, 70vh);
  overflow-x: auto;
  padding-block: 4px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar-thumb {
  background-color: hsl(var(--base));
  border-radius: 10px;
}

.payment-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 18px;
  border: 2px solid hsl(var(--white) / 0.1);
  transition: all 0.3s;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: -2px 2px 2px 0px hsl(var(--white) / 0.1);
}

.payment-item:not(:last-child) {
  margin-bottom: 16px;
}

.payment-item:has(.payment-item__radio:checked) {
  border-color: hsl(var(--white) / 0.2);
  background-color: hsl(var(--white) / 0.15);
}

.payment-item__check {
  border: 3px solid transparent;
}

.payment-item:has(.payment-item__radio:checked) .payment-item__check {
  border: 3px solid hsl(var(--base));
}

.payment-item__info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: calc(100% - var(--thumb-width));
}

.payment-item__check {
  width: var(--radio-size);
  height: var(--radio-size);
  border: 1px solid hsl(var(--base));
  display: inline-block;
  border-radius: 100%;
}

.payment-item__name {
  padding-left: 10px;
  width: calc(100% - var(--radio-size));
  transition: all 0.3s;
}

.payment-item__thumb {
  width: var(--thumb-width);
  height: var(--thumb-height);
  text-align: right;
  padding-left: 10px;

  &:has(.text) {
    width: fit-content;
  }
}

.payment-item__thumb img {
  max-width: var(--thumb-width);
  max-height: var(--thumb-height);
  object-fit: cover;
}

.deposit-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 16px;
}

.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;
}

.deposit-info__input-group .form--control:focus {
  box-shadow: unset;
}

.info-text .text,
.deposit-info__input .text {
  font-size: 14px;
}

.deposit-info__title .text.has-icon {
  display: flex;
  align-items: center;
  gap: 5px;
}

.total-amount {
  border-top: 1px solid var(--border-color);
}

.total-amount .deposit-info__title {
  font-weight: 600;
}

.payment-item__btn {
  border: 0;
  border-block: 1px solid hsl(var(--white) / 0.1);
  border-bottom: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  font-weight: 500;
  color: hsl(var(--white));
}

.payment-item__btn:hover {
  color: hsl(var(--base));
}

button .spinner-border {
  --bs-spinner-width: 1.5rem;
  --bs-spinner-height: 1.5rem;
}

label.required:after {
  content: "*";
  color: #dc3545 !important;
  margin-left: 2px;
}
/* Force hide Winners tab in header */
.header-menu a[href*="winners"],
.navbar a[href*="winners"],
.menu a[href*="winners"] {
    display: none !important;
}/* ===================================
   KATZKOMPS PRO THEME (BLACK & GOLD)
   Paste BELOW all existing CSS
   =================================== */

/* -------- GLOBAL BACKGROUND -------- */
body,
.section-bg,
.bg--section,
.bg--dark,
.main-wrapper {
  background: #0b0b0f !important;
  color: #ffffff !important;
}

/* Headings = clean & strong */
h1, h2, h3, h4, h5, h6 {
  color: #ffffff !important;
  letter-spacing: -0.5px;
}

/* Paragraph text slightly softer */
p {
  color: rgba(255,255,255,0.85);
}

/* -------- NAVBAR -------- */
header, .header, .navbar {
  background: rgba(10,10,12,0.95) !important;
  border-bottom: 1px solid rgba(255, 200, 0, 0.25);
  backdrop-filter: blur(10px);
}

.navbar a,
.header-menu a {
  color: #ffffff !important;
  font-weight: 600;
}

.navbar a:hover,
.header-menu a:hover {
  color: #ffd54a !important;
  text-shadow: 0 0 10px rgba(255,215,0,0.3);
}

/* -------- BUTTONS -------- */
.btn,
button,
a.btn {
  border-radius: 14px !important;
  font-weight: 700 !important;
}

/* Primary Gold Button */
.btn-primary,
.btn--base {
  background: linear-gradient(135deg,#ffd54a,#ffb800) !important;
  border: none !important;
  color: #111 !important;
  box-shadow: 0 10px 30px rgba(255,200,0,0.25);
}

.btn-primary:hover,
.btn--base:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(255,200,0,0.45);
}

/* Outline Button */
.btn-outline-primary {
  border: 2px solid #ffd54a !important;
  color: #ffd54a !important;
  background: transparent !important;
}

.btn-outline-primary:hover {
  background: rgba(255,215,0,0.1) !important;
}

/* -------- LIVE COMPETITION CARD -------- */
.card,
.single-game,
.competition-card {
  background: #121217 !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 18px !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: all 0.3s ease;
}

.card:hover,
.single-game:hover,
.competition-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 80px rgba(0,0,0,0.8);
}

/* Prize title */
.card h4,
.single-game h4 {
  color: #ffd54a !important;
}

/* -------- COUNTDOWN BOXES -------- */
.countdown-box,
.time-box,
.countdown li {
  background: #0f0f14 !important;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: #ffffff !important;
}

/* -------- WHY CHOOSE SECTION -------- */
.why-choose,
.feature-section,
.about-section {
  background: #0b0b0f !important;
}

.why-choose h2,
.feature-section h2 {
  color: #ffffff !important;
}

.why-choose i,
.feature-icon {
  color: #ffd54a !important;
}

/* -------- HOW IT WORKS TIMELINE -------- */
.timeline,
.how-it-works,
.step-card {
  background: #0b0b0f !important;
}

.step-card,
.timeline-box {
  background: #121217 !important;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* Gold step circles */
.timeline-circle,
.step-icon {
  background: linear-gradient(135deg,#ffd54a,#ffb800) !important;
  color: #111 !important;
}

/* -------- FAQ SECTION -------- */
.faq-section,
.accordion-item {
  background: #0b0b0f !important;
  border: none !important;
}

.accordion-button {
  background: #121217 !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px !important;
}

.accordion-button:not(.collapsed) {
  color: #ffd54a !important;
  box-shadow: none !important;
}

.accordion-body {
  background: #0f0f14 !important;
  color: rgba(255,255,255,0.85) !important;
}

/* -------- FOOTER -------- */
footer, .footer-section {
  background: #07070a !important;
  border-top: 1px solid rgba(255,255,255,0.06);
}

footer h5 {
  color: #ffd54a !important;
}

footer a {
  color: rgba(255,255,255,0.75) !important;
}

footer a:hover {
  color: #ffd54a !important;
}

/* -------- SCROLL TO TOP BUTTON -------- */
.scroll-top,
.scrollToTop {
  background: linear-gradient(135deg,#ffd54a,#ffb800) !important;
  color: #111 !important;
  box-shadow: 0 10px 25px rgba(255,200,0,0.4);
}

/* -------- FORCE HIDE WINNERS TAB -------- */
a[href*="winners"],
a[href*="Winners"] {
  display: none !important;
}/* =========================
   Remove Purple Theme Blocks
   ========================= */

/* Target purple gradient sections */
.how-it-works,
.step-section,
.timeline-section,
.section--bg,
.bg--primary,
.bg--gradient {
  background: #0b0b0f !important;
}

/* Timeline cards → premium dark panels */
.step-card,
.timeline-box,
.how-it-works .card {
  background: #121217 !important;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.6);
}

/* Gold step titles */
.step-card h4,
.timeline-box h4 {
  color: #ffd54a !important;
}

/* Timeline connector line */
.timeline-line,
.timeline::before {
  background: rgba(255,215,0,0.35) !important;
}

/* Step circles */
.timeline-circle,
.step-icon {
  background: linear-gradient(135deg,#ffd54a,#ffb800) !important;
  color: #111 !important;
  box-shadow: 0 10px 25px rgba(255,200,0,0.4);
}/* =========================
   FORCE "HOW IT WORKS" TO BLACK
   Paste at VERY BOTTOM
   ========================= */

/* Kill background images/gradients on any section wrappers */
section,
.section,
div[class*="section"],
div[class*="bg"],
div[class*="how"],
div[class*="work"],
div[id*="how"],
div[id*="work"]{
  background-image: none !important;
}

/* Force black on likely How It Works wrappers */
#how-it-works,
#howItWorks,
.how-it-works,
.howItWorks,
.how-it-works-section,
.work-section,
.timeline-section,
.process-section,
.section-how,
.section-work,
section.how-it-works,
section.timeline-section,
section.process-section,
div.how-it-works,
div.timeline-section{
  background: #0b0b0f !important;
  background-image: none !important;
}

/* If the purple is applied via ::before overlay (common in templates) */
#how-it-works::before,
#howItWorks::before,
.how-it-works::before,
.howItWorks::before,
.timeline-section::before,
.process-section::before,
.section-how::before,
.section-work::before,
section::before{
  background: #0b0b0f !important;
  background-image: none !important;
  opacity: 1 !important;
}

/* And if it’s applied via ::after overlay */
#how-it-works::after,
#howItWorks::after,
.how-it-works::after,
.howItWorks::after,
.timeline-section::after,
.process-section::after,
.section-how::after,
.section-work::after,
section::after{
  background: transparent !important;
  background-image: none !important;
}

/* Keep the cards premium */
.step-card,
.timeline-box,
.process-box,
.how-box{
  background: #121217 !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 18px !important;
  box-shadow: 0 25px 70px rgba(0,0,0,0.6) !important;
}/* =========================
   HOW IT WORKS CARD POLISH
   ========================= */

/* Step cards */
.step-card,
.timeline-box,
.process-box,
.how-box {
  background: #121217 !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 18px !important;
  box-shadow: 0 25px 70px rgba(0,0,0,0.65) !important;
}

/* Step titles (gold premium look) */
.step-card h4,
.timeline-box h4,
.process-box h4 {
  color: #ffd54a !important;
  font-weight: 800;
}

/* Step description text */
.step-card p,
.timeline-box p,
.process-box p {
  color: rgba(255,255,255,0.85) !important;
}

/* Gold pill headers (Register / Buy Ticket / etc) */
.step-card .title,
.timeline-box .title,
.process-box .title {
  background: linear-gradient(135deg,#ffd54a,#ffb800) !important;
  color: #111 !important;
  border-radius: 999px !important;
  font-weight: 800 !important;
  box-shadow: 0 10px 30px rgba(255,200,0,0.35);
}

/* Timeline connector line refinement */
.timeline::before,
.timeline-line {
  background: rgba(255,215,0,0.35) !important;
}/* =========================
   FORCE INNER STEP BOX DARK
   ========================= */

/* Inner content panels (the purple rectangles) */
.step-card div,
.timeline-box div,
.process-box div,
.how-box div {
  background: #121217 !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow: 0 25px 70px rgba(0,0,0,0.65) !important;
}

/* Text inside panels */
.step-card p,
.timeline-box p,
.process-box p,
.how-box p {
  color: rgba(255,255,255,0.85) !important;
}

/* Headings inside panels */
.step-card h4,
.timeline-box h4,
.process-box h4,
.how-box h4 {
  color: #ffd54a !important;
  font-weight: 800 !important;
}/* ==========================================
   HARD OVERRIDE: "How It Works" section only
   (targets by content and kills all purple)
   ========================================== */

/* 1) Find the section that contains the "How It Works" heading */
section:has(h2:contains("How It Works")),
section:has(h1:contains("How It Works")),
div:has(h2:contains("How It Works")),
div:has(h1:contains("How It Works")) {
  background: #0b0b0f !important;
  background-image: none !important;
}

/* 2) Kill any overlays */
section:has(h2:contains("How It Works"))::before,
section:has(h2:contains("How It Works"))::after,
div:has(h2:contains("How It Works"))::before,
div:has(h2:contains("How It Works"))::after {
  background: transparent !important;
  background-image: none !important;
  opacity: 0 !important;
}

/* 3) Force ALL boxes inside that section to dark (this is the key) */
section:has(h2:contains("How It Works")) *,
div:has(h2:contains("How It Works")) * {
  background-image: none !important;
}

section:has(h2:contains("How It Works")) .card,
section:has(h2:contains("How It Works")) [class*="card"],
section:has(h2:contains("How It Works")) [class*="box"],
section:has(h2:contains("How It Works")) [class*="item"],
div:has(h2:contains("How It Works")) .card,
div:has(h2:contains("How It Works")) [class*="card"],
div:has(h2:contains("How It Works")) [class*="box"],
div:has(h2:contains("How It Works")) [class*="item"] {
  background: #121217 !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 18px !important;
  box-shadow: 0 25px 70px rgba(0,0,0,0.65) !important;
}

/* Gold pill headers inside those boxes */
section:has(h2:contains("How It Works")) [class*="title"],
div:has(h2:contains("How It Works")) [class*="title"] {
  background: linear-gradient(135deg,#ffd54a,#ffb800) !important;
  color: #111 !important;
  border-radius: 999px !important;
  font-weight: 800 !important;
}/* =====================================
   EXACT FIX: Remove purple galaxy bg
   ===================================== */

/* Remove the background image applied inline */
.how-section {
  background: #0b0b0f !important;
  background-image: none !important;
}

/* Kill template helper class that injects background images */
.bg_img {
  background-image: none !important;
  background: #0b0b0f !important;
}

/* Remove the overlay that darkens the galaxy */
.how-section::before {
  background: transparent !important;
  opacity: 0 !important;
}

/* Inner purple boxes */
.work-item__body {
  background: #121217 !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 18px !important;
  box-shadow: 0 25px 70px rgba(0,0,0,0.65) !important;
}

/* Text colour refinement */
.work-item__body p {
  color: rgba(255,255,255,0.85) !important;
}/* =====================================
   HOW IT WORKS – FINAL POLISH
   ===================================== */

/* Slightly softer, more premium cards */
.work-item__body{
  background: rgba(18,18,23,0.92) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  border-radius: 20px !important;
  box-shadow: 0 30px 90px rgba(0,0,0,0.75) !important;
  padding: 22px 22px !important;
}

/* Better readability */
.work-item__body *{
  line-height: 1.55 !important;
}

/* Make the gold pill headers feel more “designed” */
.work-item__header{
  border-radius: 999px !important;
  box-shadow: 0 14px 35px rgba(255,200,0,0.30) !important;
}

/* Slight hover lift (feels modern, not template) */
.work-item:hover .work-item__body{
  transform: translateY(-4px);
  transition: 0.25s ease;
  box-shadow: 0 40px 120px rgba(0,0,0,0.85) !important;
}

/* Timeline line a bit cleaner */
.how-work-wrapper::before,
.how-work-wrapper:before{
  opacity: 0.55 !important;
}/* Glass feel (optional) */
.work-item__body{
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}/* ===== LUXURY GOLD GLOW SYSTEM ===== */

/* Buttons glow */
.btn--base,
.btn,
button,
.work-item__header{
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 rgba(255, 193, 7, 0);
  transition: all 0.3s ease;
}

.btn--base:hover,
.btn:hover,
button:hover{
  box-shadow:
    0 0 18px rgba(255, 193, 7, 0.55),
    0 0 38px rgba(255, 193, 7, 0.25);
  transform: translateY(-1px);
}

/* Card glow on hover */
.work-item__body:hover{
  box-shadow:
    0 0 0 1px rgba(255,193,7,0.35),
    0 25px 80px rgba(0,0,0,0.85),
    0 0 40px rgba(255,193,7,0.15);
}

/* Icon circle glow */
.work-item__icon{
  box-shadow: 0 0 15px rgba(255,193,7,0.35);
}

/* FAQ accordion glow */
.accordion-item{
  transition: all .3s ease;
}
.accordion-item:hover{
  box-shadow: 0 0 25px rgba(255,193,7,0.18);
}.banner-section img{
  filter: drop-shadow(0 0 30px rgba(255,193,7,0.25));
}/* Blend FAQ image with page background */
.faq-section img {
  background-color: #0b0f17; /* match site bg */
  border-radius: 12px;
}/* === Premium title glow (Hero + Section titles) === */
.banner-section h1,
.competition-section h2,
.about-section h2,
.how-section h2,
.faq-section h2,
h2.section-title,
h2.title,
.section-title {
  position: relative;
  text-shadow:
    0 0 10px rgba(212, 175, 55, 0.25),
    0 0 30px rgba(212, 175, 55, 0.12);
  animation: kkTitlePulse 3.5s ease-in-out infinite;
}

/* glow halo behind the text */
.banner-section h1::after,
.competition-section h2::after,
.about-section h2::after,
.how-section h2::after,
.faq-section h2::after,
h2.section-title::after,
h2.title::after,
.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 140%;
  background: radial-gradient(circle, rgba(212,175,55,0.18) 0%, rgba(0,0,0,0) 70%);
  filter: blur(14px);
  opacity: 0.6;
  z-index: -1;
  pointer-events: none;
  animation: kkHaloPulse 3.5s ease-in-out infinite;
}

@keyframes kkTitlePulse {
  0%,100% { text-shadow: 0 0 10px rgba(212,175,55,0.22), 0 0 30px rgba(212,175,55,0.10); }
  50%     { text-shadow: 0 0 14px rgba(212,175,55,0.32), 0 0 42px rgba(212,175,55,0.16); }
}
@keyframes kkHaloPulse {
  0%,100% { opacity: 0.45; transform: translate(-50%, -50%) scale(1); }
  50%     { opacity: 0.75; transform: translate(-50%, -50%) scale(1.03); }
}/* === Flickering stars background (Live Competitions section) === */
.competition-section {
  position: relative;
  overflow: hidden;
}

/* star layer */
.competition-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,0.22) 0 1px, transparent 2px),
    radial-gradient(circle at 30% 70%, rgba(255,255,255,0.18) 0 1px, transparent 2px),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,0.20) 0 1px, transparent 2px),
    radial-gradient(circle at 55% 45%, rgba(255,255,255,0.14) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 80%, rgba(255,255,255,0.16) 0 1px, transparent 2px);
  opacity: 0.35;
  filter: blur(0.2px);
  animation: kkStarsFlicker 2.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* keep section content above stars */
.competition-section > * {
  position: relative;
  z-index: 1;
}

@keyframes kkStarsFlicker {
  0%, 100% { opacity: 0.22; transform: translateY(0); }
  50%      { opacity: 0.45; transform: translateY(-2px); }
}/* ===== Flickering stars (Live Competitions section) ===== */

/* Ensure the section can host pseudo-elements */
.competition-section{
  position: relative;
  overflow: hidden;
}

/* Star layer */
.competition-section::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;

  /* two star fields = depth */
  background-image:
    radial-gradient(circle, rgba(255,255,255,.75) 1px, transparent 1.6px),
    radial-gradient(circle, rgba(255,215,120,.55) 1px, transparent 1.8px);
  background-size: 120px 120px, 220px 220px;
  background-position: 0 0, 60px 90px;

  opacity: .22;
  animation: kk-stars-drift 18s linear infinite, kk-stars-flicker 3.8s ease-in-out infinite;
}

/* Soft vignette so stars feel "behind" */
.competition-section::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle at 50% 35%, transparent 0%, rgba(0,0,0,.45) 55%, rgba(0,0,0,.75) 100%);
}

/* Keep ALL real content above the star layers */
.competition-section > *{
  position: relative;
  z-index: 1;
}

@keyframes kk-stars-drift{
  from { background-position: 0 0, 60px 90px; }
  to   { background-position: 240px 180px, -160px 220px; }
}

@keyframes kk-stars-flicker{
  0%, 100% { opacity: .16; filter: brightness(1); }
  35%      { opacity: .28; filter: brightness(1.15); }
  70%      { opacity: .20; filter: brightness(0.95); }
}/* ===== Enhanced Flickering Stars (More Noticeable) ===== */
.competition-section{
  position: relative;
  overflow: hidden;
}

/* Star field */
.competition-section::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;

  /* Brighter + denser stars */
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.95) 1.2px, transparent 2px),
    radial-gradient(circle, rgba(255,215,120,0.85) 1.4px, transparent 2.4px),
    radial-gradient(circle, rgba(255,255,255,0.6) 1px, transparent 2px);

  background-size: 80px 80px, 140px 140px, 220px 220px;
  background-position: 0 0, 40px 60px, 120px 100px;

  opacity: 0.45;
  animation:
    kk-stars-drift 20s linear infinite,
    kk-stars-flicker 2.8s ease-in-out infinite;
}

/* Subtle dark vignette so stars sit "behind" content */
.competition-section::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle at 50% 35%, transparent 0%, rgba(0,0,0,.35) 60%, rgba(0,0,0,.7) 100%);
}

/* Keep content above stars */
.competition-section > *{
  position: relative;
  z-index: 1;
}

@keyframes kk-stars-drift{
  from { background-position: 0 0, 40px 60px, 120px 100px; }
  to   { background-position: 220px 180px, -160px 220px, 80px -120px; }
}

@keyframes kk-stars-flicker{
  0%, 100% { opacity: 0.35; filter: brightness(1); }
  30%      { opacity: 0.6;  filter: brightness(1.25); }
  60%      { opacity: 0.45; filter: brightness(0.9); }
}/* Live Competitions title glow pulse */
.competition-section h2{
  text-shadow: 0 0 18px rgba(255, 200, 60, 0.6);
  animation: kk-title-glow 3s ease-in-out infinite;
}

@keyframes kk-title-glow{
  0%,100% { text-shadow: 0 0 14px rgba(255,200,60,0.5); }
  50%     { text-shadow: 0 0 26px rgba(255,200,60,0.9); }
}/* ===== Trust & Authority Strip ===== */
.banner-section + section::before{
  content: "Powered by XRPL • Provably Fair Draws • Multi-Chain Ready • Instant Payouts";
  display: block;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 14px 10px;
  margin-bottom: 30px;
  font-size: 14px;
  color: #ffd54a;

  /* premium strip styling */
  background: linear-gradient(90deg, rgba(255,215,0,0.08), rgba(255,215,0,0.18), rgba(255,215,0,0.08));
  border-top: 1px solid rgba(255,215,0,0.25);
  border-bottom: 1px solid rgba(255,215,0,0.15);
  backdrop-filter: blur(6px);

  text-shadow: 0 0 10px rgba(255,200,80,0.4);
}.banner-section + section::before{
  animation: kk-trust-shimmer 6s linear infinite;
}

@keyframes kk-trust-shimmer{
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}/* ===== Trust & Authority Strip (under hero, above stats strip) ===== */
.counter-up-section{
  position: relative; /* needed for ::before positioning */
}/* ===== Trust & Authority Strip (SAFE: attaches to hero banner) ===== */
.banner-section{
  position: relative;
  overflow: visible; /* important */
  padding-bottom: 70px; /* creates space for the strip */
}/* ===== Trust & Authority Strip (visible + flashing) ===== */
.banner-section{
  position: relative;
  overflow: visible;
  padding-bottom: 92px; /* more room so it doesn't collide */
}

/* strip */
.banner-section::after{
  content: "Powered by XRPL • Provably Fair Draws • Multi-Chain Ready • Instant Payouts";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 12px;               /* <-- brings it UP into the hero */
  width: min(1100px, calc(100% - 40px));
  text-align: center;

  padding: 10px 14px;
  border-radius: 999px;

  font-size: 16px;
  font-weight: 900;
  letter-spacing: .7px;

  color: #ffe08a;
  background: rgba(5, 8, 15, 0.90);
  backdrop-filter: blur(8px);

  border: 1px solid rgba(255,215,0,0.28);
  box-shadow: 0 10px 24px rgba(0,0,0,0.35), 0 0 18px rgba(255,200,80,0.35);

  z-index: 9999;
  pointer-events: none;

  animation: trustFlash 1.6s ease-in-out infinite;
}

/* Flash/pulse animation */
@keyframes trustFlash{
  0%,100%{
    opacity: 0.75;
    transform: translateX(-50%) scale(0.995);
    box-shadow: 0 10px 24px rgba(0,0,0,0.35), 0 0 10px rgba(255,200,80,0.25);
    border-color: rgba(255,215,0,0.20);
  }
  50%{
    opacity: 1;
    transform: translateX(-50%) scale(1.02);
    box-shadow: 0 10px 24px rgba(0,0,0,0.35), 0 0 30px rgba(255,200,80,0.75);
    border-color: rgba(255,215,0,0.55);
  }/* HERO: safe blend + sparks */
.banner-section{
  position: relative;
  overflow: hidden;
}

/* Keep hero image fully visible */
.banner-section img{
  position: relative;
  z-index: 3;
}

/* Subtle dark edge blend behind image */
.banner-section::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:1;

  background: radial-gradient(circle at 50% 45%,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0) 60%,
    rgba(0,0,0,.18) 75%,
    rgba(0,0,0,.55) 100%);
}/* Stronger, more visible flickering stars (no blend-mode) */
.banner-section::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:2;

  /* brighter star field */
  background:
    radial-gradient(circle, rgba(255,230,160,1) 1px, rgba(0,0,0,0) 2px) 0 0/90px 90px,
    radial-gradient(circle, rgba(255,255,255,0.95) 1px, rgba(0,0,0,0) 2px) 40px 25px/140px 140px,
    radial-gradient(circle, rgba(255,210,120,0.8) 1px, rgba(0,0,0,0) 3px) 10px 60px/220px 220px;

  opacity: 0.9;
  filter: drop-shadow(0 0 6px rgba(255,200,80,0.8));
  animation: heroSparksDrift 16s linear infinite, heroSparksFlicker 0.7s steps(2,end) infinite;
}

@keyframes heroSparksDrift{
  0%   { transform: translate3d(0,0,0); }
  50%  { transform: translate3d(-10px,-14px,0); }
  100% { transform: translate3d(-20px,-28px,0); }
}

/* hard flicker */
@keyframes heroSparksFlicker{
  0%   { opacity: 0.20; }
  25%  { opacity: 1.00; }
  50%  { opacity: 0.35; }
  75%  { opacity: 1.00; }
  100% { opacity: 0.25; }
}/* =========================
   DEBUG: FORCE STAR LAYER
   (you should see a red outline)
   ========================= */

/* Make sure the hero container can host pseudo elements */
section.banner-section,
.banner-section,
section.banner-section.bg_img,
.banner-section.bg_img{
  position: relative !important;
  overflow: hidden !important;
}

/* Force an obvious overlay so we can confirm it’s attaching */
section.banner-section::after,
.banner-section::after{
  content: " " !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 9999 !important;
  pointer-events: none !important;

  outline: 3px solid red !important;  /* <- SHOULD BE VISIBLE */
  background:
    radial-gradient(circle, rgba(255,255,255,1) 1px, rgba(0,0,0,0) 2px) 0 0/80px 80px,
    radial-gradient(circle, rgba(255,210,120,1) 1px, rgba(0,0,0,0) 3px) 30px 40px/140px 140px !important;

  animation: kkFlicker 0.6s steps(2,end) infinite !important;
}

@keyframes kkFlicker{
  0%{opacity:.15;}
  50%{opacity:1;}
  100%{opacity:.25;}
}/* =========================================
   GOLD KATZ PREMIUM GLOW PULSE (Hero Image)
   ========================================= */

.hero img,
.banner-section img{
  animation: goldPulse 3.5s ease-in-out infinite;
  filter: drop-shadow(0 0 0 rgba(255,215,0,0));
}

@keyframes goldPulse{
  0%{
    filter: drop-shadow(0 0 0px rgba(255,215,0,0))
            drop-shadow(0 0 8px rgba(255,200,50,0.15));
    transform: scale(1);
  }
  50%{
    filter: drop-shadow(0 0 18px rgba(255,215,0,0.55))
            drop-shadow(0 0 40px rgba(255,200,50,0.35));
    transform: scale(1.01);
  }
  100%{
    filter: drop-shadow(0 0 0px rgba(255,215,0,0))
            drop-shadow(0 0 8px rgba(255,200,50,0.15));
    transform: scale(1);
  }
}/* =========================================
   FIX PURPLE LOADING / PRELOADER OVERLAY
   ========================================= */

/* Main overlay containers (common IDs/classes) */
#preloader,
#loader,
.preloader,
.loadingOverlay,
.loading-overlay,
.page-loader,
.ajax-loader,
.loader-overlay{
  background: #05080f !important;   /* your site black */
}

/* If your theme uses a tinted overlay layer */
#preloader::before,
#loader::before,
.preloader::before,
.loadingOverlay::before{
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: radial-gradient(circle at center,
    rgba(255,215,0,0.08) 0%,
    rgba(5,8,15,0.92) 60%,
    rgba(5,8,15,1) 100%) !important;
}

/* Make spinner/dots/icons gold */
#preloader * ,
#loader * ,
.preloader * ,
.loadingOverlay *{
  border-color: #d6a600 !important;
  color: #d6a600 !important;
}

/* If spinner uses background instead of border */
.spinner, .sk-chase-dot, .dot, .dot1, .dot2, .bounce1, .bounce2{
  background: #d6a600 !important;
}/* ================================
   LOGIN PAGE: REMOVE PURPLE THEME
   ================================ */

/* Force the whole page + login section to your site black */
body,
section.account,
section.account .container,
section.account .row,
section.account [class*="col-"]{
  background: #05080f !important;
}

/* Many themes add a purple overlay via pseudo elements */
section.account::before,
section.account::after,
body::before,
body::after{
  background: transparent !important;
  opacity: 1 !important;
}

/* If there's a background image/gradient on the account section */
section.account{
  background-image: none !important;
  background-color: #05080f !important;
}

/* Optional: make the login “card” pop slightly (fits your black/gold look) */
section.account .form-area,
section.account .account-wrapper,
section.account .account-content,
section.account .account-form{
  background: rgba(10,12,18,0.72) !important;
  border: 1px solid rgba(255,215,0,0.18) !important;
  box-shadow: 0 0 22px rgba(255,215,0,0.10) !important;
  backdrop-filter: blur(6px);
}/* Rename Blog menu item to KATZ NFTs */
.navbar .nav-link[href*="/blog"]{
  font-size: 0 !important;
  position: relative;
}

.navbar .nav-link[href*="/blog"]::after{
  content: "KATZ NFTs";
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #ffd54a;
}/* ========================================
   REMOVE BLOG TAB FROM HEADER NAVIGATION
   ======================================== */

nav ul li a[href*="blog"],
nav ul li:has(a[href*="blog"]),
.menu li a[href*="blog"],
.menu li:has(a[href*="blog"]),
.navbar-nav li a[href*="blog"],
.navbar-nav li:has(a[href*="blog"]) {
    display: none !important;
}

/* Extra fallback in case theme uses different class */
a[href*="/blog"] {
    display: none !important;
}/* ========================================
   FORCE REMOVE BLOG TAB
   ======================================== */

/* Desktop menu */
.header .nav-menu li:nth-child(4),
.header .navbar-nav li:nth-child(4),
.header-menu-content li:nth-child(4),
.main-menu li:nth-child(4),
.menu li:nth-child(4),
.navbar li:nth-child(4),
nav ul li:nth-child(4) {
  display: none !important;
}

/* If the link itself still shows */
.header .nav-menu li:nth-child(4) a,
.header .navbar-nav li:nth-child(4) a,
.header-menu-content li:nth-child(4) a,
.main-menu li:nth-child(4) a,
.menu li:nth-child(4) a,
.navbar li:nth-child(4) a,
nav ul li:nth-child(4) a {
  display: none !important;
}

/* Mobile menu too */
.mobile-menu li:nth-child(4),
.sidenav li:nth-child(4),
.sidebar-menu li:nth-child(4),
.offcanvas-menu li:nth-child(4) {
  display: none !important;
}/* =========================================
   COMPLETELY REMOVE BLOG / KATZ NFTs TAB
   ========================================= */

a[href*="blog"],
li:has(a[href*="blog"]) {
    display: none !important;
}

/* Mobile menu */
.mobile-menu a[href*="blog"],
.mobile-menu li:has(a[href*="blog"]) {
    display: none !important;
}