/* =====================================================================
   KINGORA THEME — NEX CLOUD Style Override
   Warm gradient bg, glassmorphism, gradient buttons
   ===================================================================== */

/* ========================= Color Variable Overrides ========================= */
:root {
  /* Base Color → Orange/Amber */
  --base-h: 30;
  --base-s: 100%;
  --base-l: 50%;
  --base: var(--base-h) var(--base-s) var(--base-l);
  --base-d-100: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.1);
  --base-d-200: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.2);
  --base-d-300: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.3);
  --base-d-400: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.4);
  --base-d-500: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.5);
  --base-d-600: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.6);
  --base-d-700: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.7);
  --base-d-800: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.8);
  --base-d-900: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 0.9);
  --base-d-1000: var(--base-h) var(--base-s) calc(var(--base-l) - var(--base-l) * 1);
  --base-l-100: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.1);
  --base-l-200: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.2);
  --base-l-300: var(--base-h) calc(var(--base-s)) calc(var(--base-l) + (100% - var(--base-l)) * 0.3);

  /* Base Two Color → Purple/Magenta */
  --base-two-h: 280;
  --base-two-s: 80%;
  --base-two-l: 45%;
  --base-two: var(--base-two-h) var(--base-two-s) var(--base-two-l);

  /* Body Background → Dark Warm Brown */
  --body-bg: 20 30% 6%;
  /* Section Background → Warm Dark */
  --section-bg: 20 15% 10%;
  /* Card Background */
  --card-bg: linear-gradient(174deg, rgba(60, 20, 0, 0.6) -20.3%, rgba(15, 5, 2, 0.9) 86.96%);
  /* Header Shadow */
  --header-box-shadow: 0px -1px 15px 3px rgba(0, 0, 0, 0.4);
}

/* ========================= Animated Background ========================= */
body {
  background:
    radial-gradient(ellipse 600px 500px at 15% 30%, rgba(200, 100, 0, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 500px 400px at 85% 20%, rgba(220, 120, 0, 0.2) 0%, transparent 70%),
    radial-gradient(ellipse 400px 500px at 50% 80%, rgba(150, 50, 150, 0.2) 0%, transparent 70%),
    radial-gradient(ellipse 350px 350px at 10% 85%, rgba(180, 60, 180, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 300px 300px at 75% 70%, rgba(200, 100, 0, 0.15) 0%, transparent 70%),
    hsl(var(--body-bg)) !important;
  background-attachment: fixed !important;
}

/* ========================= Glassmorphism Utilities ========================= */
.glass-card {
  background: rgba(40, 15, 5, 0.45) !important;
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid rgba(255, 150, 50, 0.12) !important;
  border-radius: 16px !important;
}

/* ========================= Header Glass Effect ========================= */
.header {
  background: rgba(20, 8, 2, 0.7) !important;
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border-bottom: 1px solid rgba(255, 150, 50, 0.1) !important;
}

.header-main-container__shape {
  background: linear-gradient(135deg, rgba(200, 80, 0, 0.08), rgba(150, 50, 150, 0.08)) !important;
}

.header-main-container {
  background: transparent !important;
}

.header-main-container::before {
  display: none !important;
}

.navbar-brand img {
  filter: brightness(1.1);
}

/* ========================= Gradient Buttons ========================= */
.btn--base {
  background: linear-gradient(90deg, #8b0fc7, #e0245e, #ff6b00) !important;
  border: none !important;
  color: #fff !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease !important;
  box-shadow: 0 4px 20px rgba(224, 36, 94, 0.3) !important;
}

.btn--base:hover {
  background: linear-gradient(90deg, #a020f0, #ff2d6f, #ff8c00) !important;
  box-shadow: 0 6px 30px rgba(224, 36, 94, 0.5) !important;
  transform: translateY(-2px);
  color: #fff !important;
}

.btn--base::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.5s;
}

.btn--base:hover::before {
  left: 100%;
}

/* ========================= Account Pages (Login/Register) ========================= */
.account {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  position: relative;
}

.account::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 600px 500px at 15% 30%, rgba(200, 100, 0, 0.3) 0%, transparent 70%),
    radial-gradient(ellipse 500px 400px at 85% 20%, rgba(220, 120, 0, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 400px 500px at 50% 85%, rgba(150, 50, 150, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 350px 350px at 10% 85%, rgba(180, 60, 180, 0.2) 0%, transparent 70%),
    radial-gradient(ellipse 300px 300px at 75% 70%, rgba(200, 100, 0, 0.2) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.account__shape {
  display: none !important;
}

.account .container {
  position: relative;
  z-index: 1;
}

.account-form {
  background: rgba(40, 15, 5, 0.4) !important;
  backdrop-filter: blur(25px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(25px) saturate(180%) !important;
  border: 1px solid rgba(255, 150, 50, 0.15) !important;
  border-radius: 20px !important;
  padding: 40px 35px !important;
  max-width: 520px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}

.account-form__logo {
  display: none !important;
}

/* Kingora Branding Title on Auth Pages */
.kingora-brand {
  text-align: center;
  margin-bottom: 8px;
}

.kingora-brand__title {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ff8c00, #ffb347, #ff6b00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 5px;
  text-shadow: none;
}

.kingora-brand__subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  font-weight: 400;
  display: block;
  margin-bottom: 25px;
}

.account-form__shape {
  display: none !important;
}

.account-form__subtitle {
  display: none !important;
}

.account-form__title {
  display: none !important;
}

.account-form__text {
  text-align: center;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 0.9rem;
}

.account-form__text a {
  color: hsl(var(--base)) !important;
  font-weight: 600;
}

/* Auth Page Social Divider */
.auth-divider {
  display: flex;
  align-items: center;
  margin: 20px 0;
  gap: 15px;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.auth-divider span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  white-space: nowrap;
}

/* Back to Home Link */
.back-home-link {
  display: block;
  text-align: center;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.back-home-link i {
  margin-right: 5px;
}

.back-home-link:hover {
  color: hsl(var(--base)) !important;
}

/* ========================= Form Inputs — Warm Dark Glass ========================= */
.form--control,
.form--control.form-two {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
  border-radius: 10px !important;
  padding: 12px 16px !important;
  font-size: 0.95rem !important;
  transition: all 0.3s ease !important;
}

.form--control:focus,
.form--control.form-two:focus {
  background: rgba(255, 255, 255, 0.09) !important;
  border-color: rgba(255, 150, 50, 0.4) !important;
  box-shadow: 0 0 15px rgba(255, 150, 50, 0.1) !important;
  outline: none !important;
}

.form--control::placeholder {
  color: rgba(255, 255, 255, 0.35) !important;
}

.form--label {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500 !important;
  font-size: 0.9rem !important;
  margin-bottom: 6px !important;
}

/* ========================= Password Toggle ========================= */
.toggle-password {
  color: rgba(255, 255, 255, 0.4) !important;
  cursor: pointer;
}

.toggle-password:hover {
  color: hsl(var(--base)) !important;
}

/* ========================= Forgot Password ========================= */
.forgot-password {
  color: hsl(var(--base)) !important;
  font-size: 0.88rem !important;
  font-weight: 500 !important;
}

.forgot-password:hover {
  color: hsl(var(--base-l-200)) !important;
}

/* ========================= Checkbox ========================= */
.form--check .form-check-input {
  border-color: rgba(255, 150, 50, 0.4) !important;
  background-color: transparent !important;
}

.form--check .form-check-input:checked {
  background-color: hsl(var(--base)) !important;
  border-color: hsl(var(--base)) !important;
}

.form-check-label {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.88rem !important;
}

/* ========================= Banner Section ========================= */
.banner-section {
  position: relative;
  overflow: hidden;
}

.banner-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(20, 8, 2, 0.5) 0%, rgba(20, 8, 2, 0.8) 100%);
  pointer-events: none;
}

.banner-section .container {
  position: relative;
  z-index: 2;
}

.banner-content__title {
  color: #fff !important;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.banner-content__subtitle {
  color: hsl(var(--base)) !important;
}

/* ========================= Section Headings ========================= */
.section-heading__shape {
  -webkit-mask-image: url(../images/shapes/ss.png);
  background: linear-gradient(180deg, hsl(var(--base)) 0%, rgba(60, 20, 0, 0.3) 41.35%, rgba(15, 5, 2, 0) 71.76%) !important;
}

.section-heading__title {
  color: #fff !important;
}

.gradient-text {
  background-image: linear-gradient(180deg, hsl(var(--base)) 0%, hsl(var(--base-d-200)) 100%) !important;
  -webkit-text-fill-color: transparent !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
}

/* ========================= Cards & Sections ========================= */
.plan-item,
.pricing-card,
.custom--card {
  background: rgba(40, 15, 5, 0.4) !important;
  backdrop-filter: blur(15px) !important;
  -webkit-backdrop-filter: blur(15px) !important;
  border: 1px solid rgba(255, 150, 50, 0.1) !important;
  border-radius: 16px !important;
  transition: all 0.3s ease !important;
}

.plan-item:hover,
.pricing-card:hover {
  border-color: rgba(255, 150, 50, 0.25) !important;
  box-shadow: 0 8px 30px rgba(200, 100, 0, 0.1) !important;
  transform: translateY(-3px);
}

/* ========================= Footer ========================= */
.footer-area {
  background: linear-gradient(174deg, rgba(40, 15, 5, 0.8) -20.3%, rgba(10, 3, 1, 0.95) 86.96%) !important;
  border-top: 1px solid rgba(255, 150, 50, 0.08);
}

.footer-area__shape {
  display: none !important;
}

.footer-area-wrapper {
  background: none !important;
}

.footer-item__title {
  color: hsl(var(--base)) !important;
}

.bottom-footer {
  border-top: 1px solid rgba(255, 150, 50, 0.1) !important;
  background: rgba(0, 0, 0, 0.2);
}

/* ========================= About Section ========================= */
.about-content {
  background: rgba(40, 15, 5, 0.3);
  border-radius: 16px;
  padding: 20px;
}

/* ========================= Breadcrumb ========================= */
.breadcrumb-area {
  background: linear-gradient(135deg, rgba(40, 15, 5, 0.6), rgba(80, 20, 80, 0.3)) !important;
}

/* ========================= Dashboard ========================= */
.dashboard {
  background: hsl(var(--body-bg)) !important;
}

.user-sidebar {
  background: rgba(30, 12, 4, 0.85) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-right: 1px solid rgba(255, 150, 50, 0.08) !important;
}

.dashboard-body .custom--card,
.dashboard-body .card {
  background: rgba(40, 15, 5, 0.5) !important;
  border: 1px solid rgba(255, 150, 50, 0.08) !important;
  border-radius: 14px !important;
}

.dashboard__header {
  background: rgba(20, 8, 2, 0.7) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 150, 50, 0.08) !important;
}

/* ========================= Tables ========================= */
.king-table-wrapper {
  background: rgba(40, 15, 5, 0.4) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 150, 50, 0.1) !important;
  border-radius: 16px !important;
  overflow: hidden;
  padding: 0 !important;
}

.king-table {
  margin-bottom: 0 !important;
  border-collapse: separate;
  border-spacing: 0;
}

.king-table thead {
  background: rgba(255, 150, 50, 0.12) !important;
}

.king-table thead th {
  border: none !important;
  color: #fff !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  font-size: 0.8rem !important;
  letter-spacing: 0.5px;
  padding: 15px 20px !important;
}

.king-table tbody tr {
  border-bottom: 1px solid rgba(255, 150, 50, 0.05) !important;
  transition: all 0.2s ease;
}

.king-table tbody tr:last-child {
  border-bottom: none !important;
}

.king-table tbody tr:hover {
  background: rgba(255, 150, 50, 0.04) !important;
}

.king-table tbody td {
  border: none !important;
  padding: 15px 20px !important;
  vertical-align: middle !important;
  color: rgba(255, 255, 255, 0.85) !important;
}

.king-table .trx-id {
  font-family: 'Monaco', 'Consolas', monospace;
  font-size: 0.8rem;
  color: var(--nex-accent);
  opacity: 0.8;
}

.king-table .amount-bold {
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
}

.king-table .date-box {
  line-height: 1.2;
}

.king-table .date-box small {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.custom--table thead {
  background: rgba(255, 150, 50, 0.08) !important;
}

.custom--table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}


/* ========================= Lion Logo Animations ========================= */
@keyframes lionPulse {
  0% {
    transform: scale(1) translateY(0);
    filter: drop-shadow(0 0 2px rgba(255, 140, 0, 0.4));
  }

  50% {
    transform: scale(1.1) translateY(-3px);
    filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.8));
  }

  100% {
    transform: scale(1) translateY(0);
    filter: drop-shadow(0 0 2px rgba(255, 140, 0, 0.4));
  }
}

.lion-animated {
  animation: lionPulse 2.5s infinite ease-in-out;
  color: #ff8c00;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

@keyframes titleGlow {
  0% {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
    color: #fff;
  }

  50% {
    text-shadow: 0 0 15px rgba(255, 140, 0, 0.6);
    color: #ffca28;
  }

  100% {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
    color: #fff;
  }
}

.brand-animated {
  animation: titleGlow 4s infinite ease-in-out;
  font-weight: 800 !important;
  letter-spacing: 1px;
}

/* ========================= Preloader ========================= */
.preloader {
  background: hsl(var(--body-bg)) !important;
}

.loader-p {
  border-color: rgba(255, 150, 50, 0.15) !important;
  border-top-color: hsl(var(--base)) !important;
}

/* ========================= Scroll to Top ========================= */
.scroll-top {
  background: linear-gradient(135deg, #e0245e, #ff6b00) !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(224, 36, 94, 0.3) !important;
}

/* ========================= FAQs ========================= */
.faq-item,
.accordion-item {
  background: rgba(40, 15, 5, 0.35) !important;
  border: 1px solid rgba(255, 150, 50, 0.08) !important;
  border-radius: 12px !important;
}

.accordion-button {
  background: transparent !important;
  color: #fff !important;
}

.accordion-button:not(.collapsed) {
  color: hsl(var(--base)) !important;
  background: rgba(255, 150, 50, 0.05) !important;
}

/* ========================= Blog Cards ========================= */
.blog-item,
.blog-card {
  background: rgba(40, 15, 5, 0.4) !important;
  border: 1px solid rgba(255, 150, 50, 0.08) !important;
  border-radius: 16px !important;
  overflow: hidden;
  transition: all 0.3s ease !important;
}

.blog-item:hover,
.blog-card:hover {
  border-color: rgba(255, 150, 50, 0.2) !important;
  transform: translateY(-3px);
}

/* ========================= Contact Section ========================= */
.contact-wrapper,
.contact-card {
  background: rgba(40, 15, 5, 0.4) !important;
  backdrop-filter: blur(15px) !important;
  -webkit-backdrop-filter: blur(15px) !important;
  border: 1px solid rgba(255, 150, 50, 0.1) !important;
  border-radius: 16px !important;
}

/* ========================= Top Investor Section ========================= */
.top-investor-card,
.investor-card {
  background: rgba(40, 15, 5, 0.4) !important;
  border: 1px solid rgba(255, 150, 50, 0.08) !important;
  border-radius: 14px !important;
}

/* ========================= Testimonial ========================= */
.testimonial-item {
  background: rgba(40, 15, 5, 0.35) !important;
  border: 1px solid rgba(255, 150, 50, 0.08) !important;
  border-radius: 16px !important;
}

/* ========================= Work Process ========================= */
.work-item,
.work-process-item {
  background: rgba(40, 15, 5, 0.3) !important;
  border: 1px solid rgba(255, 150, 50, 0.08) !important;
  border-radius: 14px !important;
}

/* ========================= Why Choose Us ========================= */
.why-choose-item,
.choose-card {
  background: rgba(40, 15, 5, 0.35) !important;
  border: 1px solid rgba(255, 150, 50, 0.08) !important;
  border-radius: 14px !important;
}

/* ========================= Referral Section ========================= */
.referral-card {
  background: rgba(40, 15, 5, 0.4) !important;
  border: 1px solid rgba(255, 150, 50, 0.1) !important;
  border-radius: 16px !important;
}

/* ========================= Modal ========================= */
.modal-content {
  background: rgba(30, 12, 4, 0.9) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 150, 50, 0.15) !important;
  border-radius: 16px !important;
}

.modal-header {
  border-bottom: 1px solid rgba(255, 150, 50, 0.1) !important;
}

.modal-footer {
  border-top: 1px solid rgba(255, 150, 50, 0.1) !important;
}

/* ========================= Text Colors ========================= */
.text--base {
  color: hsl(var(--base)) !important;
}

a:hover {
  color: hsl(var(--base-l-200)) !important;
}

/* ========================= Input Group ========================= */
.input-group-text {
  background-color: hsl(var(--base)) !important;
  border-color: hsl(var(--base)) !important;
}

/* ========================= Selection Color ========================= */
::selection {
  background: hsl(var(--base));
  color: #fff;
}

::-moz-selection {
  background: hsl(var(--base));
  color: #fff;
}


/* =====================================================================
   ORIGINAL CUSTOM CSS BELOW (from HyipLab)
   ===================================================================== */

/* Copy Animation */

.copyInput {
  display: inline-block;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.copied::after {
  position: absolute;
  top: 8px;
  right: 12%;
  width: 100px;
  display: block;
  content: "COPIED";
  font-size: 1em;
  padding: 5px 5px;
  color: #fff;
  background-color: hsl(var(--base));
  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;
  }
}


.input-group-text.copytext.copyBoard {
  cursor: pointer;
}




.cookies-card {
  width: 520px;
  padding: 30px;
  color: #dddddd;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all .5s;
  border-radius: 12px;
  border: 1px solid rgba(255, 150, 50, 0.15);
  background: rgba(30, 12, 4, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.cookies-card.hide {
  bottom: -500px !important;
}

.radius--10px {
  border-radius: 10px;
}

.cookies-card__icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: hsl(var(--base));
  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: 70%;
  left: 50%;
  width: 280px;
  background-color: rgba(30, 12, 4, 0.95);
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 150, 50, 0.15);
  -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 rgba(30, 12, 4, 0.95) 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-container--default .select2-search--dropdown .select2-search__field {
  padding: 10px 20px;
}

.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-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-container--default .select2-search--dropdown .select2-search__field:focus {
  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: 12px !important;
}



.payment-card-title {
  padding: 13px 25px;
  text-align: center;
  background: linear-gradient(90deg, #8b0fc7, #e0245e, #ff6b00);
  border-radius: 10px;
  border: 0;
  margin-bottom: 0px;
  color: #fff;
}

.payment-system-list {
  --thumb-width: 100px;
  --thumb-height: 40px;
  --radio-size: 12px;
  --border-color: rgba(255, 150, 50, 0.1);
  --hover-border-color: hsl(var(--base));
  background: rgba(40, 15, 5, 0.4);
  border-radius: 12px;
  height: 100%;
}


.payment-system-list.is-scrollable {
  max-height: min(388px, 70vh);
  overflow-x: auto;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;

}

.payment-system-list.is-scrollable::-webkit-scrollbar-thumb {
  background-color: hsl(var(--base));
  border-radius: 10px;
}

.payment-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 18px;
  transition: all 0.3s;
  border-left: 3px solid transparent;
  margin-bottom: 0;
}

label.payment-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

label.payment-item:last-child {
  border-bottom: 0 !important;
}

.gateway-card {
  padding: 0;
  margin-top: 30px;
  border: 1px solid rgba(255, 150, 50, 0.1) !important;
  border-radius: 14px;
  overflow: hidden;
}

.payment-item:first-child {
  border-top-color: #fff;
  border-radius: 5px 5px 0 0;
}

.payment-item:last-child {
  border-bottom: 0 !important;
  border-radius: 5px 5px 0 0;
}

.payment-item:has(.payment-item__radio:checked) {
  border-left: 3px solid hsl(var(--base));
  border-radius: 0px;
}

.payment-item__check {
  border: 3px solid transparent;
}

.payment-item:has(.payment-item__radio:checked) .payment-item__check {
  border: 3px solid hsl(var(--base));
}

.payment-item__info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: calc(100% - var(--thumb-width))
}

.payment-item__check {
  width: var(--radio-size);
  height: var(--radio-size);
  border: 1px solid hsl(var(--base));
  display: inline-block;
  border-radius: 100%;

}

.payment-item__name {
  padding-left: 10px;
  width: calc(100% - var(--radio-size));
  transition: all 0.3s;
}

.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: 8px;
}

.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 {
  border: 0;
  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 var(--border-color);
  border-bottom: 0;
  background: hsl(var(--base));
  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-text {
  color: hsl(var(--black));
}

button .spinner-border {
  --bs-spinner-width: 1.5rem;
  --bs-spinner-height: 1.5rem;
}

.table-search {
  width: 33%;
  margin-left: auto;
}

@media (max-width:991px) {
  .table-search {
    width: 50%;
  }
}

@media (max-width:575px) {
  .table-search {
    width: 100%;
  }
}

.verification-code-wrapper {
  border: 1px solid rgba(255, 150, 50, 0.1);
  background: rgba(30, 12, 4, 0.85);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.verification-code::after {
  background-color: rgba(20, 8, 2, 0.8) !important;
}

.verification-code input:focus {
  background-color: inherit !important;
}

.border-bottom {
  border-color: rgba(255, 150, 50, 0.1) !important;
}

label.required:after {
  content: '*';
  color: #DC3545 !important;
  margin-left: 2px;
}


/* =========================== Custom Checkbox Design Start =========================== */
.form--check .form-check-input {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  box-shadow: none !important;
  border: 0;
  position: relative;
  border-radius: 2px;
  width: 16px;
  height: 16px;
  border: 1px solid hsl(var(--base));
  margin-right: 5px;
}

.form--check .form-check-input:checked {
  background-color: hsl(var(--base)) !important;
  border-color: hsl(var(--base)) !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form--check .form-check-input:checked[type=checkbox] {
  background-image: none;
}

.form--check .form-check-input:checked::before {
  position: absolute;
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #fff;
  font-size: 10px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* =========================== Custom Checkbox Design End =========================== */
.verification-code span {
  background: rgba(30, 12, 4, 0.8);
  border: solid 1px rgba(255, 150, 50, 0.12);
  color: #ffffff;
}

.verification-code input {
  color: #ffff !important;
}

.disabled {
  opacity: 0.7;
}

.file-upload .remove-btn {
  background: #dc3545 !important;
  border-color: #dc3545 !important;
}


/* =====================================================================
   NEX CLOUD DASHBOARD COMPONENTS
   ===================================================================== */

/* ========================= Dashboard Container ========================= */
.nex-dashboard {
  min-height: 100vh;
  padding-bottom: 80px;
  position: relative;
}

/* ========================= Top Bar ========================= */
.nex-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background: rgba(45, 18, 8, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 150, 50, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nex-topbar__left {
  display: flex;
  align-items: center;
}

.nex-topbar__user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nex-topbar__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b00, #e0245e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.nex-topbar__name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
}

.nex-topbar__tagline {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.nex-topbar__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nex-topbar__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s;
}

.nex-topbar__icon:hover {
  background: linear-gradient(135deg, #e0245e, #ff6b00);
  color: #fff !important;
}

.nex-menu-toggle {
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

/* ========================= Main Content ========================= */
.nex-content {
  padding: 15px;
  max-width: 900px;
  margin: 0 auto;
}

/* ========================= Alerts ========================= */
.nex-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: #fff;
}

.nex-alert--danger {
  background: rgba(220, 53, 69, 0.2);
  border: 1px solid rgba(220, 53, 69, 0.3);
}

.nex-alert--warning {
  background: rgba(255, 193, 7, 0.15);
  border: 1px solid rgba(255, 193, 7, 0.25);
}

.nex-alert--info {
  background: rgba(13, 202, 240, 0.15);
  border: 1px solid rgba(13, 202, 240, 0.25);
}

.nex-alert a {
  color: hsl(var(--base));
  font-weight: 600;
}

/* ========================= Balance Card ========================= */
.nex-balance-card {
  background: rgba(55, 22, 8, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 150, 50, 0.2);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 15px;
}

.nex-balance-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.nex-balance-card__label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  display: block;
  margin-bottom: 2px;
}

.nex-balance-card__amount {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0;
  font-family: 'Chakra Petch', sans-serif;
}

.nex-balance-card__today-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: #28c76f;
  display: block;
  line-height: 1.2;
}

.nex-balance-card__today-label {
  font-size: 0.9rem;
  font-weight: 700;
  display: block;
  color: #28c76f;
}

/* Currency Selector Fix */
.nex-currency-select {
  background-color: rgba(20, 10, 5, 0.95) !important;
  color: #fff !important;
  border-color: rgba(255, 107, 0, 0.3) !important;
  padding: 8px 12px !important;
  border-radius: 8px !important;
}

.nex-currency-select option {
  background-color: #1a0a04 !important;
  color: #fff !important;
}

/* Table Responsiveness Fix */
.table-responsive {
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  background: rgba(40, 15, 5, 0.4);
}

.table {
  margin-bottom: 0;
  color: #fff;
  vertical-align: middle;
}

.table th {
  white-space: nowrap !important;
  background: rgba(60, 25, 10, 0.8) !important;
  color: #fff !important;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none !important;
  padding: 15px 12px !important;
}

.table td {
  background: transparent !important;
  color: rgba(255, 255, 255, 0.7) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  padding: 15px 12px !important;
  font-size: 0.9rem;
}

.table tr:last-child td {
  border-bottom: none !important;
}

/* Fix for mobile table view removed to allow nex-table to handle its own mobile view via data-labels */

/* Deposit Preview Amount Wrapping */
.amount-box h1 {
  word-break: break-all;
  line-height: 1.1;
  font-size: clamp(2rem, 8vw, 3.5rem) !important;
}

@media (max-width: 575px) {
  .amount-box {
    padding: 1.5rem 1rem !important;
  }
}

.nex-balance-card__today-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  display: block;
}

.nex-currency-select {
  font-size: 0.85rem !important;
  padding: 8px 12px !important;
  width: auto !important;
  display: inline-block !important;
  border-radius: 8px !important;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05) !important;
  transition: all 0.3s;
}

.nex-currency-select:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
  border-color: hsl(var(--base)) !important;
}

@media (max-width: 575px) {
  .nex-balance-card__amount {
    font-size: 1.4rem;
  }

  .nex-balance-card__today-val {
    font-size: 1.2rem;
  }
}

.nex-balance-card__bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.nex-balance-card__bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff6b00, #e0245e, #8b0fc7);
  border-radius: 4px;
  transition: width 0.5s ease;
}

/* ========================= Quick Actions ========================= */
.nex-quick-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
}

.nex-quick-action {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 10px;
  background: rgba(55, 22, 8, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 150, 50, 0.18);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s;
  text-decoration: none;
}

.nex-quick-action:hover {
  border-color: rgba(255, 150, 50, 0.25);
  background: rgba(60, 25, 8, 0.6);
  color: #fff !important;
  transform: translateY(-2px);
}

.nex-quick-action__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 150, 50, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: hsl(var(--base));
}

/* ========================= Plan Cards ========================= */
.nex-plan-card {
  background: rgba(55, 22, 8, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 150, 50, 0.18);
  border-radius: 16px;
  padding: 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.nex-plan-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.nex-plan-card__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.nex-plan-card__desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.nex-plan-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 150, 50, 0.2), rgba(224, 36, 94, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: hsl(var(--base));
}

.nex-plan-card__stats {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  flex: 1;
}

.nex-plan-card__stat {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}

.nex-plan-card__stat small {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-bottom: 3px;
}

.nex-plan-card__stat strong {
  font-size: 0.85rem;
  color: #fff;
  font-weight: 700;
}

.nex-plan-card__btn {
  display: block;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  background: linear-gradient(90deg, #8b0fc7, #e0245e, #ff6b00) !important;
  color: #fff !important;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s;
}

.nex-plan-card__btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  color: #fff !important;
}

/* ========================= Income Bar (Personal Investment) ========================= */
.nex-income-bar-link {
  display: block;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.nex-income-bar {
  background: rgba(40, 15, 5, 0.35) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 0, 0.15) !important;
  border-radius: 12px;
  padding: 14px !important;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100% !important;
  display: block !important;
}

.nex-income-bar-link:hover .nex-income-bar {
  border-color: rgba(255, 107, 0, 0.4);
  background: rgba(60, 25, 10, 0.5) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.nex-income-bar__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.nex-income-bar__title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
}

.nex-income-bar__value {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.nex-income-bar__content {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ========================= Referral ========================= */
.nex-referral {
  background: rgba(55, 22, 8, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 150, 50, 0.18);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 15px;
}

.nex-referral__title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.nex-referral__box {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nex-referral__input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  outline: none;
  min-width: 0;
}

.nex-referral__btn {
  background: linear-gradient(90deg, #e0245e, #ff6b00) !important;
  border: none;
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s;
}

.nex-referral__btn:hover {
  opacity: 0.9;
}

/* ========================= Bottom Navigation ========================= */
.nex-bottomnav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 0 12px;
  background: rgba(25, 10, 4, 0.95);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-top: 1px solid rgba(255, 150, 50, 0.1);
  z-index: 1000;
}

.nex-bottomnav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.68rem;
  text-decoration: none;
  transition: all 0.2s;
  padding: 4px 12px;
}

.nex-bottomnav__item i {
  font-size: 20px;
}

.nex-bottomnav__item.active,
.nex-bottomnav__item:hover {
  color: hsl(var(--base)) !important;
}

.nex-bottomnav__item.active i {
  background: linear-gradient(135deg, #e0245e, #ff6b00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================= Side Navigation (Offcanvas) ========================= */
.nex-sidenav {
  background: rgba(35, 14, 5, 0.98) !important;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-left: 1px solid rgba(255, 150, 50, 0.1) !important;
  max-width: 300px;
}

.nex-sidenav__header {
  border-bottom: 1px solid rgba(255, 150, 50, 0.1);
  padding: 20px;
}

.nex-sidenav__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
}

.nex-sidenav__body {
  padding: 15px 20px !important;
}

.nex-sidenav__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nex-sidenav__list li {
  margin-bottom: 2px;
}

.nex-sidenav__list a {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  gap: 12px;
}

.nex-sidenav__list a:hover,
.nex-sidenav__list a.active {
  background: linear-gradient(90deg, #8b0fc7, #e0245e, #ff6b00);
  color: #fff !important;
}

.nex-sidenav__list a i:first-child {
  width: 20px;
  text-align: center;
}

.nex-sidenav__list a .float-end {
  margin-left: auto;
  font-size: 0.7rem;
  opacity: 0.5;
}

.nex-sidenav__member-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  margin-top: 20px;
  background: linear-gradient(135deg, rgba(255, 150, 50, 0.15), rgba(224, 36, 94, 0.15));
  border-radius: 14px;
  border: 1px solid rgba(255, 150, 50, 0.1);
}

.nex-sidenav__member-avatar {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #e0245e, #ff6b00);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

.nex-sidenav__member-card strong {
  color: #fff;
  font-size: 0.9rem;
}

.nex-sidenav__member-card small {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================= Dashboard Widget Override ========================= */
.dashboard-widget {
  background: rgba(50, 20, 5, 0.45) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 150, 50, 0.1) !important;
  border-radius: 14px !important;
}

/* ========================= Responsive ========================= */
@media (max-width: 575px) {
  .nex-balance-card__amount {
    font-size: 1.3rem;
  }

  .nex-plan-card__stats {
    flex-direction: column;
  }

  .nex-plan-card {
    padding: 14px;
  }

  .nex-referral__box {
    flex-direction: column;
  }

  .nex-referral__btn {
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 992px) {
  .nex-bottomnav {
    max-width: 900px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px 20px 0 0;
    border: 1px solid rgba(255, 150, 50, 0.08);
    border-bottom: none;
  }
}


/* =====================================================================
   GLOBAL BUTTON OVERRIDES — Kingora Gradient Theme
   ===================================================================== */

/* All .btn--base buttons site-wide */
.btn--base,
.btn-primary,
button[type="submit"],
.btn--lg,
input[type="submit"] {
  background: linear-gradient(135deg, #8b0fc7, #e0245e, #ff6b00) !important;
  border: none !important;
  color: #fff !important;
  font-weight: 600 !important;
  border-radius: 10px !important;
  transition: all 0.3s ease !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 15px rgba(224, 36, 94, 0.2);
}

.btn--base:hover,
.btn-primary:hover,
button[type="submit"]:hover,
.btn--lg:hover,
input[type="submit"]:hover {
  background: linear-gradient(135deg, #a020e0, #ff3366, #ff8533) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 25px rgba(224, 36, 94, 0.35) !important;
}

.btn--base:focus,
.btn-primary:focus,
button[type="submit"]:focus {
  box-shadow: 0 0 0 3px rgba(224, 36, 94, 0.25) !important;
}

/* Secondary/outline buttons */
.btn--outline-base,
.btn-outline-primary {
  border: 2px solid #e0245e !important;
  color: #ff6b00 !important;
  background: transparent !important;
  border-radius: 10px !important;
  transition: all 0.3s ease !important;
}

.btn--outline-base:hover,
.btn-outline-primary:hover {
  background: linear-gradient(135deg, #8b0fc7, #e0245e, #ff6b00) !important;
  border-color: transparent !important;
  color: #fff !important;
}

/* Danger button */
.btn--danger {
  background: linear-gradient(135deg, #dc3545, #b02a37) !important;
  border: none !important;
  border-radius: 10px !important;
}

/* Success button */
.btn--success {
  background: linear-gradient(135deg, #28a745, #1e7e34) !important;
  border: none !important;
  border-radius: 10px !important;
}

/* bg--base used as button backgrounds */
.bg--base {
  background: linear-gradient(135deg, #8b0fc7, #e0245e, #ff6b00) !important;
}

/* Social login buttons */
.social-login-btn,
.btn-social {
  background: rgba(55, 22, 8, 0.7) !important;
  border: 1px solid rgba(255, 150, 50, 0.15) !important;
  border-radius: 10px !important;
  color: #fff !important;
  transition: all 0.3s ease !important;
}

.social-login-btn:hover,
.btn-social:hover {
  background: rgba(70, 30, 10, 0.8) !important;
  border-color: rgba(255, 150, 50, 0.3) !important;
}

/* Auth form link styling */
.back-home-link {
  display: block;
  text-align: center;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.3s;
}

.back-home-link:hover {
  color: #ff6b00 !important;
}

/* Auth divider */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 15px 0;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 150, 50, 0.15);
}

.auth-divider span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}

/* Kingora branding in auth pages */
.kingora-brand {
  text-align: center;
  margin-bottom: 20px;
}

.kingora-brand__title {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 4px;
  background: linear-gradient(90deg, #ff6b00, #ffd700, #ff6b00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 5px;
}

.kingora-brand__subtitle {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* =====================================================================
   NOTIFICATION TOAST — Dark Theme
   ===================================================================== */
.iziToast {
  background: rgba(45, 18, 8, 0.95) !important;
  border: 1px solid rgba(255, 150, 50, 0.2) !important;
  backdrop-filter: blur(15px) !important;
  -webkit-backdrop-filter: blur(15px) !important;
  border-radius: 12px !important;
}

.iziToast .iziToast-title {
  color: #fff !important;
}

.iziToast .iziToast-message {
  color: rgba(255, 255, 255, 0.75) !important;
}

.iziToast .iziToast-close {
  filter: invert(1) !important;
}

/* =============================================
   KINGORA THEME - Complete Styles
   ============================================= */

:root {
  --nex-bg: #0a0a0a;
  --nex-card-bg: rgba(255, 255, 255, 0.06);
  --nex-glass-border: rgba(255, 255, 255, 0.12);
  --nex-accent: #ff6b00;
  --nex-accent-gradient: linear-gradient(135deg, #ff6b00, #e0245e);
  --nex-secondary-accent: #8b0fc7;
}

/* === Layout System === */
.king-layout {
  display: flex;
  min-height: 100vh;
  background-color: var(--nex-bg);
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255, 107, 0, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(139, 15, 199, 0.06) 0%, transparent 40%);
  color: #fff;
}

/* === Desktop Sidebar === */
.king-sidebar {
  width: 260px;
  min-width: 260px;
  background: linear-gradient(180deg, #0d0d0d 0%, #0a0a0a 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
}

.king-sidebar::-webkit-scrollbar {
  width: 4px;
}

.king-sidebar::-webkit-scrollbar-thumb {
  background: rgba(255, 107, 0, 0.3);
  border-radius: 4px;
}

.king-sidebar__header {
  padding: 24px 20px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.king-sidebar__header h4 {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.king-sidebar__header p {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.king-sidebar__user {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 107, 0, 0.04);
  border: 1px solid rgba(255, 107, 0, 0.08);
  margin: 12px 14px;
  border-radius: 12px;
}

.king-sidebar__avatar {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: var(--nex-accent-gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.35);
}

.king-sidebar__info h6 {
  font-size: 0.9rem;
  color: #fff;
  font-weight: 600;
}

.king-sidebar__info small {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
}

.king-sidebar__menu {
  list-style: none;
  padding: 10px 14px;
  margin: 0;
  flex: 1;
}

.king-sidebar__menu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  border-radius: 10px;
  margin-bottom: 2px;
  transition: all 0.25s ease;
  font-size: 0.88rem;
  font-weight: 500;
}

.king-sidebar__menu li a:hover {
  background: rgba(255, 107, 0, 0.08);
  color: rgba(255, 255, 255, 0.9);
}

.king-sidebar__menu li a.active {
  background: rgba(255, 107, 0, 0.12);
  color: #fff;
  border-left: 3px solid var(--nex-accent);
}

.king-sidebar__menu li a i {
  width: 20px;
  text-align: center;
  font-size: 1rem;
  color: var(--nex-accent);
  opacity: 0.8;
}

.king-sidebar__menu li a.text-danger i {
  color: #dc3545;
}

.king-sidebar__menu .menu-divider {
  padding: 18px 14px 8px;
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* === Main Content Area === */
.king-main {
  flex-grow: 1;
  width: 100%;
  padding-bottom: 85px;
  background-image:
    radial-gradient(circle at 100% 0%, rgba(139, 15, 199, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(255, 107, 0, 0.05) 0%, transparent 40%);
}

@media (min-width: 992px) {
  .king-main {
    margin-left: 260px;
    padding-bottom: 30px;
  }
}

/* === Top Bar === */
.nex-topbar {
  padding: 14px 20px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nex-topbar__icon {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s;
}

.nex-topbar__icon:hover {
  background: var(--nex-accent);
  color: #fff;
}

/* === Content Padding === */
.nex-content {
  padding: 20px;
}

/* === Balance Card === */
.nex-balance-card {
  background: linear-gradient(135deg, #181818, #050505);
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(255, 107, 0, 0.2);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(255, 107, 0, 0.06);
}

.nex-balance-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
}

.nex-balance-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.nex-balance-card__label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nex-balance-card__amount {
  font-weight: 800;
  margin: 5px 0;
  font-size: 1.8rem;
}

.nex-balance-card__today-val {
  font-size: 1rem;
  font-weight: 600;
  display: block;
  text-align: right;
}

.nex-balance-card__today-label {
  font-size: 0.85rem;
  display: block;
  text-align: right;
}

.nex-balance-card__today-text {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  display: block;
  text-align: right;
}

.nex-balance-card__bar {
  height: 5px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin-top: 18px;
}

.nex-balance-card__bar-fill {
  height: 100%;
  background: var(--nex-accent-gradient);
  border-radius: 10px;
}

/* === Plan Cards === */
.nex-plan-card {
  background: var(--nex-card-bg);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--nex-glass-border);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.nex-plan-card__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.nex-plan-card__name {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
}

.nex-plan-card__desc {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
}

.nex-plan-card__icon {
  font-size: 1.3rem;
  opacity: 0.4;
}

.nex-plan-card__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 15px;
}

.nex-plan-card__stat small {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
}

.nex-plan-card__stat strong {
  display: block;
  font-size: 1rem;
}

.nex-plan-card__btn {
  margin-top: auto;
  background: transparent;
  border: 1px solid var(--nex-accent);
  color: #fff;
  padding: 8px;
  border-radius: 10px;
  text-align: center;
  font-size: 0.85rem;
  transition: all 0.3s;
  text-decoration: none;
  display: block;
}

.nex-plan-card__btn:hover {
  background: var(--nex-accent);
  color: #fff;
}

/* === Quick Actions === */
.nex-quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.nex-quick-action {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--nex-card-bg);
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--nex-glass-border);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}

.nex-quick-action:hover {
  border-color: var(--nex-accent);
  color: #fff;
}

.nex-quick-action__icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nex-accent);
  font-size: 1rem;
}

/* Consolidated above */
/* === Referral Link === */
.nex-referral__title {
  font-size: 1rem;
  margin-bottom: 10px;
}

.nex-referral__box {
  display: flex;
  background: var(--nex-card-bg);
  border-radius: 12px;
  padding: 4px;
  border: 1px solid var(--nex-glass-border);
}

.nex-referral__input {
  background: transparent;
  border: none;
  color: #fff;
  padding: 10px;
  flex-grow: 1;
  font-size: 0.82rem;
  outline: none;
}

.nex-referral__btn {
  background: var(--nex-accent);
  border: none;
  color: #fff;
  padding: 0 18px;
  border-radius: 10px;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.3s;
}

.nex-referral__btn:hover {
  opacity: 0.85;
}

/* === Bottom Navigation (Mobile) === */
.nex-bottomnav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  justify-content: space-around;
  padding: 10px 0 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 1050;
}

.nex-bottomnav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.68rem;
  text-decoration: none;
  transition: color 0.3s;
}

.nex-bottomnav__item.active {
  color: var(--nex-accent);
}

.nex-bottomnav__item i {
  font-size: 1.15rem;
  margin-bottom: 3px;
}

/* === Mobile Offcanvas Side Nav === */
.nex-sidenav {
  background: rgba(10, 10, 10, 0.97) !important;
  backdrop-filter: blur(20px) !important;
  border-left: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.nex-sidenav__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nex-sidenav__list li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  text-decoration: none;
  transition: all 0.25s;
  font-size: 0.9rem;
}

.nex-sidenav__list li a i {
  width: 18px;
  text-align: center;
  color: var(--nex-accent);
  opacity: 0.7;
}

.nex-sidenav__list li a .float-end {
  margin-left: auto;
  font-size: 0.7rem;
  opacity: 0.3;
}

.nex-sidenav__list li a:hover,
.nex-sidenav__list li a.active {
  background: rgba(255, 107, 0, 0.08);
  color: #fff;
}

/* === Alert Bars === */
.nex-alert {
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
}

.nex-alert--danger {
  background: rgba(220, 53, 69, 0.12);
  border: 1px solid rgba(220, 53, 69, 0.25);
  color: #ff6b7a;
}

.nex-alert--warning {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.2);
  color: #ffc107;
}

.nex-alert--info {
  background: rgba(13, 202, 240, 0.08);
  border: 1px solid rgba(13, 202, 240, 0.2);
  color: #0dcaf0;
}

.nex-alert a {
  color: inherit;
  text-decoration: underline;
  font-weight: 600;
}

/* === Glass Card === */
.glass-card {
  background: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 16px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

/* === Cards Override === */
.custom--card,
.card {
  background: var(--nex-card-bg) !important;
  border: 1px solid var(--nex-glass-border) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  color: #fff !important;
  border-radius: 14px !important;
  overflow: hidden;
}

.card-header,
.card-footer {
  background: rgba(255, 255, 255, 0.02) !important;
  border-color: rgba(255, 255, 255, 0.06) !important;
  font-weight: 600;
}

/* === Forms Override === */
.form--control,
.form-control {
  background: rgba(0, 0, 0, 0.3) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
  border-radius: 10px !important;
}

.form--control:focus,
.form-control:focus {
  border-color: var(--nex-accent) !important;
  box-shadow: 0 0 8px rgba(255, 107, 0, 0.2) !important;
}

/* === Buttons === */
.btn--base {
  background: var(--nex-accent-gradient) !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.25) !important;
  color: #fff !important;
  font-weight: 600;
}

.btn--base:hover {
  opacity: 0.9;
}

/* === Tables === */
.table {
  color: rgba(255, 255, 255, 0.8) !important;
}

.table th {
  background: rgba(255, 255, 255, 0.04) !important;
  color: var(--nex-accent) !important;
  border: none !important;
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 600;
}

.table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
  vertical-align: middle;
}

/* === Select / Dropdown === */
.form-select,
select.form--control {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='%23ffffff' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

/* === Pagination === */
.pagination .page-link {
  background: var(--nex-card-bg) !important;
  border-color: var(--nex-glass-border) !important;
  color: #fff !important;
}

.pagination .page-item.active .page-link {
  background: var(--nex-accent) !important;
  border-color: var(--nex-accent) !important;
}

/* === Misc === */
.text--base {
  color: var(--nex-accent) !important;
}

label,
.form--label {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.85rem;
}

.input-group-text {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}

.modal-content {
  background: #111 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}