@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Space+Grotesk:wght@300..700&family=Sriracha&display=swap');


/* ROOT VARIABLE */
:root {
  --themeColor: #DCA853;
  --grayColor: #737373;
  --white: #fff;
  --borderColor: #343B4F;


  /* add new 1/14/2026 */
  /* Dark Theme Base - Pure Black */
  --bg-primary: #000000;
  --bg-secondary: #0a0a0a;
  --bg-card: rgba(10, 10, 10, 0.9);
  --bg-card-solid: #0d0d0d;

  /* Neon Colors - Gold Theme */
  --neon-purple: #f59e0b;
  --neon-blue: #d97706;
  --neon-cyan: #fbbf24;
  --neon-pink: #ea580c;
  --neon-green: #10b981;
  --neon-orange: #f59e0b;
  --neon-red: #ef4444;

  /* Gradients - Gold Theme */
  --gradient-purple: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --gradient-cyan: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  --gradient-pink: linear-gradient(135deg, #ea580c 0%, #f59e0b 100%);
  --gradient-green: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --gradient-orange: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
  --gradient-blue: linear-gradient(135deg, #d97706 0%, #b45309 100%);

  /* Text */
  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;

  /* Effects - Gold Theme */
  --glow-purple: 0 0 30px rgba(245, 158, 11, 0.4);
  --glow-cyan: 0 0 30px rgba(251, 191, 36, 0.4);
  --glow-pink: 0 0 30px rgba(234, 88, 12, 0.4);

  /* Spacing */
  --sidebar-width: 280px;
  --header-height: 70px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
}

/* CUSTOM CSS HERE */

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  line-height: normal !important;
  box-sizing: border-box;
}

body {
  overflow: auto;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  height: 100vh;
  font-weight: 400;
  background-color: var(--bg-primary) !important;
  color: var(--text-primary);
  box-sizing: border-box;
  line-height: normal;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--neon-purple);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--neon-cyan);
}

body::-webkit-scrollbar {
  display: none;
}

a {
  text-decoration: none !important;
  color: inherit;
}

a {
  text-decoration: none !important;
}

.clip-path {
  clip-path: border-box;
}

/* Font Sizes */
.font-40 {
  font-size: clamp(1.375rem, 1.121rem + 1.1613vw, 2.5rem);
}

.font-34 {
  font-size: clamp(1.5rem, 1.3589rem + 0.6452vw, 2.125rem);
}

.font-26 {
  font-size: clamp(1.25rem, 1.15rem + 0.35vw, 1.625rem);
}

.font-24 {
  font-size: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem);
}

.font-22 {
  font-size: clamp(1.0625rem, 1rem + 0.3125vw, 1.375rem);
}

.font-20 {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
}

.font-18 {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
}

.font-16 {
  font-size: clamp(0.8125rem, 0.775rem + 0.1875vw, 1rem);
}

.font-14 {
  font-size: clamp(0.6875rem, 0.65rem + 0.1875vw, 0.875rem) !important;
}

.font-12 {
  font-size: clamp(0.625rem, 0.6rem + 0.125vw, 0.75rem);
}

/* Gaps & Padding */
.scalable-gap-30 {
  gap: clamp(24px, 5vw, 30px);
}

.scalable-gap-24-16 {
  gap: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
}

.scalable-p-24-16 {
  padding: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
}

/* Font Weights */
.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500 !important;
}

.semibold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

/* Color */
.themeColor {
  color: var(--themeColor);
}

.green {
  color: #03CF65 !important;
}

.grayColor {
  color: var(--grayColor);
}

.primaryColor {
  color: var(--neon-blue);
}

/* ===== Animated Background ===== */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 0%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(234, 88, 12, 0.1) 0%, transparent 50%);
  animation: gradientMove 15s ease infinite;
}

@keyframes gradientMove {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

.bg-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(245, 158, 11, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 158, 11, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(50px, 50px);
  }
}

.floating-shapes span {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--gradient-purple);
  border-radius: 50%;
  opacity: 0.1;
  animation: floatShape 20s infinite;
}

.floating-shapes span:nth-child(1) {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
  width: 30px;
  height: 30px;
}

.floating-shapes span:nth-child(2) {
  top: 20%;
  left: 80%;
  animation-delay: 2s;
  width: 15px;
  height: 15px;
}

.floating-shapes span:nth-child(3) {
  top: 60%;
  left: 20%;
  animation-delay: 4s;
  width: 25px;
  height: 25px;
}

.floating-shapes span:nth-child(4) {
  top: 80%;
  left: 70%;
  animation-delay: 6s;
  width: 20px;
  height: 20px;
}

.floating-shapes span:nth-child(5) {
  top: 40%;
  left: 50%;
  animation-delay: 8s;
  width: 35px;
  height: 35px;
}

.floating-shapes span:nth-child(6) {
  top: 70%;
  left: 90%;
  animation-delay: 1s;
}

.floating-shapes span:nth-child(7) {
  top: 30%;
  left: 30%;
  animation-delay: 3s;
  background: var(--gradient-cyan);
}

.floating-shapes span:nth-child(8) {
  top: 90%;
  left: 40%;
  animation-delay: 5s;
  background: var(--gradient-pink);
}

.floating-shapes span:nth-child(9) {
  top: 50%;
  left: 85%;
  animation-delay: 7s;
}

.floating-shapes span:nth-child(10) {
  top: 15%;
  left: 60%;
  animation-delay: 9s;
  background: var(--gradient-cyan);
}

@keyframes floatShape {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.1;
  }

  50% {
    transform: translateY(-100px) rotate(180deg);
    opacity: 0.2;
  }
}

/* ===== Creative Preloader ===== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.1);
}

.loader-box {
  text-align: center;
  perspective: 1000px;
}

.loader-cube {
  width: 60px;
  height: 60px;
  margin: 0 auto 30px;
  position: relative;
  transform-style: preserve-3d;
  animation: cubeRotate 2s infinite ease-in-out;
}

.cube-face {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid var(--neon-purple);
  background: rgba(245, 158, 11, 0.1);
  box-shadow: inset 0 0 20px rgba(245, 158, 11, 0.3);
}

.cube-face.front {
  transform: translateZ(30px);
}

.cube-face.back {
  transform: rotateY(180deg) translateZ(30px);
}

.cube-face.right {
  transform: rotateY(90deg) translateZ(30px);
}

.cube-face.left {
  transform: rotateY(-90deg) translateZ(30px);
}

.cube-face.top {
  transform: rotateX(90deg) translateZ(30px);
}

.cube-face.bottom {
  transform: rotateX(-90deg) translateZ(30px);
}

@keyframes cubeRotate {
  0% {
    transform: rotateX(0) rotateY(0);
  }

  50% {
    transform: rotateX(180deg) rotateY(180deg);
  }

  100% {
    transform: rotateX(360deg) rotateY(360deg);
  }
}

.loader-text {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.loader-text span {
  font-size: 28px;
  font-weight: 800;
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: letterBounce 1s infinite;
}

.loader-text span:nth-child(1) {
  animation-delay: 0s;
}

.loader-text span:nth-child(2) {
  animation-delay: 0.1s;
}

.loader-text span:nth-child(3) {
  animation-delay: 0.2s;
}

.loader-text span:nth-child(4) {
  animation-delay: 0.3s;
}

.loader-text span:nth-child(5) {
  animation-delay: 0.4s;
}

@keyframes letterBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}


:focus-visible {
  outline: var(--Primary-color) auto 0px;
}

.lh-0 {
  line-height: 0;
}

/* BUTTON */
.cta {
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta.primary {
  background: var(--gradient-purple);
  color: white;
  box-shadow: var(--glow-purple);
}

.cta.secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.cta:hover::before {
  left: 100%;
}

.cta:hover {
  transform: translateY(-3px);
}

.button.primary:hover {
  box-shadow: 0 0 50px rgba(245, 158, 11, 0.5);
}

.cta.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--neon-purple);
}

.cta.full-width {
  width: 100%;
  justify-content: center;
}

.summary-card-header {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(251, 191, 36, 0.15) 50%, rgba(234, 88, 12, 0.1) 100%);
  border-radius: 10px;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}


.summary-card-header .header-decoration {
  display: flex;
  align-items: center;
  gap: 8px;
}

.summary-card-header .header-decoration .dot {
  width: 6px;
  height: 6px;
  background: #f59e0b;
  border-radius: 50%;
}

.summary-card-header .header-decoration .line {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #f59e0b, transparent);
}

/* Input */
.form-group {
  position: relative;
}

.custom-input {
  padding: 14px 16px !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(245, 158, 11, 0.2) !important;
  border-radius: 12px !important;
  color: var(--text-primary) !important;
  font-size: 14px !important;
  transition: all 0.3s ease !important;
}

.custom-input::placeholder {
  color: var(--text-muted) !important;
}

.custom-input:focus {
  outline: none !important;
  background: rgba(245, 158, 11, 0.05) !important;
  border-color: var(--neon-purple) !important;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1) !important;
}

.borderColor {
  border-color: rgba(245, 158, 11, 0.2) !important;
}


.date-icon {
  position: absolute;
  right: 20px;
  bottom: 20px;
}

/* Custom icon */
.date-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.secondary-btn {
  background: var(--gradient-purple);
  border-radius: 12px;
  border: 0;
  outline: 0;
  padding: clamp(0.75rem, 0.6994rem + 0.2532vw, 1rem) 16px;
  min-width: 250px;
}

.genrate-OTP {
  background: var(--gradient-purple);
  border-radius: 4px;
  border: 1px solid #be9533;
  outline: 0;
  padding: clamp(0.5rem, 0.4494rem + 0.2532vw, 0.75rem) clamp(0.625rem, 0.5491rem + 0.3797vw, 1rem);
  position: absolute;
  right: 0;
  height: 100%;
}

/* form buttons */
.form-btn {
  background: var(--gradient-purple);
  border-radius: 12px;
  border: 0;
  outline: 0;
  padding: clamp(0.5rem, 0.4114rem + 0.443vw, 0.9375rem) clamp(1.5rem, 0.9177rem + 2.9114vw, 4.375rem);
}

.cancel-btn {
  background: linear-gradient(135deg, #F70000 0%, #910000 100%);
  border-radius: 12px;
  border: 0;
  outline: 0;
  padding: clamp(0.5rem, 0.4114rem + 0.443vw, 0.9375rem) clamp(1.5rem, 0.9177rem + 2.9114vw, 4.375rem);
}

.card-bottom {
  padding-bottom: clamp(1.875rem, 0.9889rem + 4.4304vw, 6.25rem);
}

.gradint-card {
  padding: 26px 41px;
  border-radius: 24px;
  background: linear-gradient(0deg,
      #DCA853 0%,
      #B868AC 100%);
  color: #19191A;
}

.instant-withdrawal {
  gap: 60px;
  padding-top: 50px;
}

/* Table css */
.dataTables_wrapper {
  width: 100%;
  overflow-x: auto;
}

.table-content {
  width: 100%;
  max-width: 100vw;
  overflow-x: auto !important;
  overflow-y: hidden;
}

.container,
.container-fluid,
.main-content,
.page-content {
  max-width: 100%;
  overflow-x: hidden;
}

.table-wrapper,
.table-responsive,
.dataTables_wrapper,
.dt-container,
.dt-layout-full {
  width: 100% !important;
  max-width: 100vw !important;
  overflow-x: auto !important;
}

table.dataTable {
  width: 100% !important;
  min-width: 650px;
}

.dt-scroll-body {
  overflow-x: auto !important;
}

.dt-scroll-body table {
  width: 100% !important;
}

table.dataTable tbody td {
  text-align: center;
}

table.dataTable tbody tr td.dataTables_empty {
  text-align: center;
  width: 100% !important;
}


.table-wrapper {
  .dt-layout-full {
    border: 1px solid #343B4F;
    padding: 0;
  }

  .table.dataTable thead>tr>th div.dt-column-header {
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    padding: 0px 12px;
    white-space: nowrap;
  }

  div.table-responsive>div.dt-container>div.row {
    margin: 12px !important;
  }

  div.dt-container div.dt-search input,
  div.dt-container div.dt-length select {
    display: inline-block;
    width: auto;
    background-color: #ec920a14;
    border-color: #ef960a;
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
  }


  .table.dataTable td {
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    padding: clamp(0.75rem, 0.6234rem + 0.6329vw, 1.375rem) clamp(0.75rem, 0.6487rem + 0.5063vw, 1.25rem);
    white-space: nowrap;
    background-color: #19191A;
    vertical-align: middle;
    text-align: center;
  }

  .approved-btn {
    background-color: #DCA85396;
    border: 0;
    padding: 3px 8px;
    color: #fff;
  }

  .inactive-btn {
    padding: 3px 14px;
    color: #fff;
    border: 1px solid #D90026;
    background-color: transparent;
  }

  .active-btn {
    padding: 3px 14px;
    color: #fff;
    border: 1px solid #03CF65;
    background-color: transparent;
  }

  .table-bordered>:not(caption)>* {
    border-color: #343B4F;
  }

  .dt-layout-start,
  .dt-layout-end {
    padding: 12px 12px;
  }

  .dt-info {
    margin-bottom: clamp(0rem, -0.1266rem + 0.6329vw, 0.625rem);
  }

  .table.dataTable th.dt-type-numeric div.dt-column-header {
    flex-direction: row;
  }

  .table.dataTable thead>tr>th div.dt-column-header {
    gap: 24px;

  }

  table.dataTable td.dt-type-date {
    text-align: start;
  }

  .dt-info,
  .dt-length,
  .dt-search {
    font-size: 12px;
    color: var(--white);
    font-weight: 500;
  }

  .form-control:focus,
  .form-select:focus {
    border: 1px solid var(--themeColor);
    box-shadow: 0 0 0 3px rgb(131 102 34 / 12%);
    background: #d3a4370a;
  }

  .pagination {
    border-radius: 8px;
    padding: 4px !important;
    gap: 8px;
  }

  .pagination button {
    padding: 4px 14px;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    color: var(--white);
    background-color: #DCA85321;
  }

  table.dataTable thead>tr>th div.dt-column-header span.dt-column-title {
    flex-grow: 0;
  }

  .page-link:focus {
    box-shadow: 0 0 0 3px rgb(157 122 41 / 8%);
  }

  .active>.page-link {
    color: #171821;
    background-color: var(--themeColor);
  }

  .dt-scroll-headInner {
    width: 100% !important;
  }

}


.table-hover>tbody>tr:hover>* {
  background-color: #d3a4370a !important;
  color: var(--white) !important;
}

/* Pagination */
.custom-pagination {
  .pagination .page-link {
    background-color: #19191A;
    border-color: transparent;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    border-radius: 6px;
    padding: 6px 15px;
    border: none;
    outline: 0;
  }

  .pagination .page-item.active .page-link {
    color: #171821;
    background: var(--gradient-purple);
    font-weight: 600;
  }

  .page-link:hover {
    z-index: 2;
    color: #976f36;
    background-color: transparent;
  }

  .page-link:focus {
    box-shadow: none;
  }
}

/* login css */
.background-img {
  background-image: url("../images/png/login-bg-img.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 100%;
}

.background-img {
  position: relative;
  background-image: url("../images/png/login-bg-img.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  min-height: 100vh;
}

/* Overlay layer */
.background-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 61%);
  z-index: 1;
}

/* Page content upar rahe */
.background-img .content {
  position: relative;
  z-index: 2;
}

/* Login Card */
.login-card {
  background: rgba(15, 15, 35, 0.85);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 24px 32px;
  position: relative;
  animation: cardSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  gap: 24px;
  z-index: 99;
}

.login-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg,
      #f59e0b,
      #fbbf24,
      #ea580c,
      #f59e0b);
  animation: rotateBorder 4s linear infinite;
  z-index: -1;
}

.login-card::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: rgba(15, 15, 35, 0.85);
  border-radius: 22px;
  z-index: -1;
}

@keyframes rotateBorder {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes cardSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.login-card .form-group,
.login-card form>div {
  position: relative;
  z-index: 1;
}

.login-card form {
  position: relative;
  z-index: 1;
}


.login-heading {
  font-size: 32px;
  font-weight: 600;
}

.lightColor {
  color: #BFBFBF;
}

.borderColor {
  border: 1px solid #313135;
  padding: 8px 14px;
}

/* Custom Checkbox */
.custom-checkbox {
  width: 16px;
  height: 16px;
  border: 1px solid #8A92A6;
  border-radius: 3px;
  margin: 0;
  cursor: pointer;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: var(--white);
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
}

.custom-checkbox:checked {
  background-color: var(--secondary-color);
  border-color: var(--neon-purple);
}

.custom-checkbox:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(6deg);
  color: var(--white);
  font-size: 10px;
  font-weight: bold;
}

.custom-checkbox:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(121, 73, 255, 0.15);
}


/* Button */
.cta-login {
  padding: 14px 24px;
  background: var(--gradient-purple);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  color: #000;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  position: relative;
  overflow: hidden;
  animation: borderPulse 1.8s ease-in-out infinite;
}

@keyframes borderPulse {
  0% {
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.2);
  }

  50% {
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.55);
  }

  100% {
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.2);
  }
}



.cursor-pointer {
  cursor: pointer;
}

.scroll-bar {
  max-height: 325px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 4px;
}

.available-balance {
  background-color: #737373;
  border-radius: 4px;
  border: 1px solid #D5D5D5;
  padding: 14px 18px;
  color: #19191A;
}


/* Choose file */
.choose-file-input{
  padding-left: clamp(7.8125rem, 7.496rem + 1.5823vw, 9.375rem) !important;
}
.choose-file-btn {
  background: var(--gradient-purple);
  border-radius: 4px;
  border: 1px solid #ac882f;
  outline: 0;
  padding: 12px 16px;
  position: absolute;
  left: 0;
  height: 100%;
  cursor: pointer;
}

.file-wrap {
  position: relative;
  width: 100%;
}

.file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.qr-code {
  background-color: var(--white);
  border-radius: 20px;
}

.qr-card {
  padding: 35px 10px 50px;
}


/* Data table css */
@media screen and (max-width:575px) {

  div.dt-container div.dt-length,
  div.dt-container div.dt-search {
    text-align: start !important;
  }

  .dt-layout-start,
  .dt-layout-end {
    padding: 8px 12px !important;
  }

  div.dt-container div.dt-paging ul.pagination {
    margin: 0px 0px 10px !important;
  }

  .borderRight {
    display: none;
  }

  .mining-img {
    height: 50% !important;
  }

  .mining-trading-card-content h2 {
    font-size: 14px;
  }

  .earn-trading-card-content h2 {
    font-size: 14px;
  }

  .welcome-actions {
    flex-wrap: wrap;
  }
}



/* Bottom Navbar */
.bottom-navbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--gradient-purple);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 13px 30px;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
  z-index: 9;
  border-radius: 15px 15px 0px 0px;
}

.bottom-navbar a {
  color: var(--white);
  text-decoration: none;
  font-size: 8px;
  font-weight: 400;
  gap: 4px;
}

.bottom-navbar a:hover {
  color: var(--white);
  transform: scale(1.1);
  transition: 0.3s;
}

.bottom-navbar i {
  font-size: 20px;
  margin-bottom: 5px;
}

.borderRight {
  border: 1px solid #fff;
}

.green {
  color: #03CF65;
}

.login-success-btn {
  background-color: green !important;
  border: 0 !important;
  color: #fff !important;
  text-align: center !important;
}

/* add css 1/3/2026 */
.table-responsive {
  overflow-y: hidden !important;
}

.hidden.sm\:flex {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between;
  gap: 10px;
  margin-top: 16px;
}

.table-wrapper nav {

  svg {
    height: 20px;
    width: 20px;
  }

  span[aria-current="page"]>span {
    color: #171821;
    background-color: var(--themeColor);
    padding: 4px 14px !important;
    border-radius: 6px;
    cursor: pointer;
    border: 0 !important;
    margin-left: 8px;
    margin-right: 4px;
  }

  /* normal pagination link */
  a[aria-label^="Go to page"] {
    padding: 4px 12px !important;
    border-radius: 6px;
    cursor: pointer;
    color: var(--white);
    background-color: #DCA85321 !important;
    border: 0 !important;
  }

  /* Next button base */
  a[rel="next"] {
    padding: 4px 14px !important;
    border-radius: 6px;
    cursor: pointer;
    color: var(--white);
    background-color: #DCA85321 !important;
    border: 0 !important;
    font-size: 14px;
    font-weight: 500;
    margin: 8px;

  }


  span.cursor-not-allowed {
    color: #171821 !important;
    background-color: var(--themeColor) !important;
    padding: 4px 14px !important;
    border-radius: 6px;
    cursor: pointer;
    border: 0 !important;
    font-size: 14px;
    font-weight: 500;
  }

  a[rel="prev"] {
    padding: 4px 14px !important;
    border-radius: 6px;
    cursor: pointer;
    color: var(--white);
    background-color: #DCA85321 !important;
    border: 0 !important;
    font-size: 14px;
    font-weight: 500;
    margin: 8px;

  }

  p {
    font-size: 12px;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 0px;
  }

  nav .flex.sm\:hidden {
    display: none;
  }

  @media (max-width: 575px) {

    .hidden.sm\:flex {
      flex-direction: column !important;
      gap: 16px;
      align-items: start !important;
      justify-content: end;
    }
  }

}




/* add new css 1/14/2026 */
/* Header */
.header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Header Right */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-action {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.header-action:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.3);
  color: var(--neon-purple);
  transform: translateY(-2px);
}

.action-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--neon-red);
  color: white;
  font-size: 10px;
  font-weight: 700;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-badge.pulse {
  animation: badgePulse 2s ease infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.action-trigger {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Menu button */
.menu-btn {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.menu-btn span {
  width: 20px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-btn:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.3);
}

.menu-btn:hover span {
  background: var(--neon-purple);
}

.menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* Search */
.search-container {
  position: relative;
  width: 320px;
}

.search-container i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 14px;
}

.search-container input {
  width: 100%;
  padding: 12px 70px 12px 44px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 14px;
  transition: all 0.3s ease;
}

.search-container input::placeholder {
  color: var(--text-muted);
}

.search-container input:focus {
  outline: none;
  border-color: var(--neon-purple);
  background: rgba(245, 158, 11, 0.05);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.search-container kbd {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-size: 11px;
  color: var(--text-muted);
}


/* Header Profile */
.top-header {
  position: fixed;
  top: 0;
  height: var(--header-height);
  background: rgb(10 10 10);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  width: -webkit-fill-available;
}

.header-profile {
  position: relative;
}

.profile-trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px 8px 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
}

.profile-trigger:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.3);
}

.profile-trigger img {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 2px solid var(--neon-purple);
}

.profile-info {
  display: flex;
  flex-direction: column;
}

.profile-info .name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.profile-info .role {
  font-size: 11px;
  color: var(--neon-cyan);
}

.profile-trigger>i {
  font-size: 10px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

/* Profile Dropdown Menu */
.header-profile {
  .dropdown-menu {
    background: var(--bg-card-solid);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    padding: 10px;
    min-width: 220px;
    margin-top: 10px !important;
  }

  .dropdown-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
  }

  .dropdown-header img {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-sm);
    object-fit: cover;
  }

  .dropdown-header div {
    display: flex;
    flex-direction: column;
  }

  .dropdown-header strong {
    font-size: 14px;
    color: var(--text-primary);
  }

  .dropdown-header span {
    font-size: 12px;
    color: var(--text-muted);
  }

  .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.05);
    margin: 8px 0;
  }

  .dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
  }

  .dropdown-item i {
    width: 18px;
    text-align: center;
  }

  .dropdown-item:hover {
    background: rgba(245, 158, 11, 0.1);
    color: var(--neon-purple);
  }

  .dropdown-item.logout:hover {
    background: rgba(239, 68, 68, 0.1);
    color: var(--neon-red);
  }

}


/* Sidebar */
/* ===== App Layout ===== */
.app-wrapper {
  display: flex;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.8); */
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.sidebar-overlay.active {
  /* opacity: 1; */
  /* visibility: visible; */
}

td a i {
  color: var(--white);
}

/* ===== Creative Sidebar ===== */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: #0b0b0b;
  border-right: 1px solid rgba(245, 158, 11, 0.1);
  display: flex;
  flex-direction: column;
  z-index: 999;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.05) 0%, transparent 30%);
  pointer-events: none;
}

.sidebar::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, var(--neon-purple), var(--neon-cyan), var(--neon-pink));
  opacity: 0.3;
}

/* Sidebar Logo */
.sidebar-logo {
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.logo-container {
  width: 48px;
  height: 48px;
  background: var(--gradient-purple);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
  position: relative;
  box-shadow: var(--glow-purple);
  animation: logoGlow 3s ease infinite;
}

.logo-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--gradient-purple);
  border-radius: 14px;
  filter: blur(15px);
  opacity: 0.5;
  animation: glowPulse 2s ease infinite;
}

@keyframes logoGlow {

  0%,
  100% {
    box-shadow: var(--glow-purple);
  }

  50% {
    box-shadow: 0 0 50px rgba(245, 158, 11, 0.6);
  }
}

@keyframes glowPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.3;
  }
}

.logo-text {
  font-size: 26px;
  font-weight: 800;
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
}

.sidebar-toggle-close {
  position: absolute;
  top: 10px;
  right: 15px;
  width: 26px;
  height: 26px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 6px;
  color: var(--neon-red);
  cursor: pointer;
  transition: all 0.3s ease;
}

.sidebar-toggle-close:hover {
  background: var(--neon-red);
  color: white;
  transform: rotate(90deg);
}

/* Sidebar Profile Card */
.profile-card {
  margin: 0 0 12px 0;
  padding: 16px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(251, 191, 36, 0.1) 100%);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.profile-bg {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(245, 158, 11, 0.1), transparent 30%);
  animation: profileBgRotate 10s linear infinite;
}

@keyframes profileBgRotate {
  to {
    transform: rotate(360deg);
  }
}

.profile-avatar {
  width: 60px;
  height: 60px;
  margin: 0 auto 10px;
  position: relative;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--neon-purple);
  position: relative;
  z-index: 2;
}

.avatar-ring {
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  border: 2px solid transparent;
  border-top-color: var(--neon-cyan);
  border-radius: 50%;
  animation: ringRotate 2s linear infinite;
}

@keyframes ringRotate {
  to {
    transform: rotate(360deg);
  }
}

.status-indicator {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 14px;
  height: 14px;
  background: var(--neon-green);
  border: 3px solid var(--bg-card-solid);
  border-radius: 50%;
  z-index: 3;
  animation: statusPulse 2s ease infinite;
}

@keyframes statusPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
}

.profile-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
  position: relative;
  z-index: 2;
}

.profile-id {
  font-size: 11px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.profile-rank {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  color: var(--neon-purple);
  position: relative;
  z-index: 2;
}

.profile-rank i {
  font-size: 10px;
}

/* Sidebar Navigation */
.sidebar-nav {
  flex: 1;
  padding: 10px 12px;
  overflow-y: auto;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  margin-bottom: 2px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.nav-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-purple);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  font-size: 14px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.nav-item span {
  position: relative;
  z-index: 1;
}

.nav-item:hover {
  color: var(--text-primary);
  transform: translateX(4px);
}

.nav-item:hover .nav-icon {
  background: rgba(245, 158, 11, 0.2);
  border-color: rgba(245, 158, 11, 0.3);
  color: var(--neon-purple);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.3);
}

.nav-item.active {
  color: white;
}

.nav-item.active::before {
  opacity: 1;
}

.nav-item.active .nav-icon {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

.nav-indicator {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  background: white;
  border-radius: 3px 0 0 3px;
  z-index: 1;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-badge {
  position: absolute;
  right: 12px;
  padding: 2px 8px;
  background: var(--neon-red);
  color: white;
  font-size: 10px;
  font-weight: 700;
  border-radius: 8px;
  z-index: 1;
}

/* Submenu Styles */
/* Submenu Styles */
.nav-item.has-submenu {
  display: block;
  padding: 0;
  margin-bottom: 2px;
  background: transparent !important;
  /* Ensure no bg on parent */
}

.nav-item.has-submenu::before {
  display: none;
  /* Remove the ::before pseudo element from parent */
}

.nav-item.has-submenu .nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.nav-item.has-submenu .nav-link:hover {
  color: var(--text-primary);
  transform: translateX(4px);
}

.nav-item.has-submenu .nav-link:hover .nav-icon {
  background: rgba(245, 158, 11, 0.2);
  border-color: rgba(245, 158, 11, 0.3);
  color: var(--neon-purple);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.3);
}

.submenu-arrow {
  margin-left: auto;
  font-size: 10px;
  transition: transform 0.3s ease;
}

.nav-item.has-submenu.open .submenu-arrow {
  transform: rotate(90deg);
}

/* Active state - ONLY on .nav-link, not on submenu */
.nav-item.has-submenu.active .nav-link {
  background: var(--gradient-purple);
  border-radius: var(--radius-sm);
  color: var(--white);
}

.nav-item.has-submenu.active .nav-link .nav-icon {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
  box-shadow: none;
}

.nav-item.has-submenu.active .nav-link .submenu-arrow {
  color: var(--white);
}

/* Submenu - Always transparent background */
.submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: transparent !important;
  border-radius: 0;
}

.nav-item.has-submenu.open .submenu {
  max-height: 215px;
  background: transparent !important;
}

.submenu li {
  background: transparent !important;
}

.submenu li a {
  display: block;
  padding: 8px 14px 8px 60px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  background: transparent !important;
}

.submenu li a::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  transition: all 0.3s ease;
}

/* Submenu Hover Effect */
.submenu li a:hover {
  color: var(--neon-purple);
  background: transparent !important;
}

.submenu li a:hover::before {
  background: var(--neon-purple);
}

/* Submenu Active Effect */
.submenu li a.active {
  color: var(--neon-purple);
  background: transparent !important;
  font-weight: 600;
}

.submenu li a.active::before {
  background: var(--neon-purple);
}

/* Sidebar Profile Bottom - Compact */
.sidebar-profile-bottom {
  padding: 10px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.profile-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(251, 191, 36, 0.08) 100%);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.profile-mini:hover {
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.15);
}

.profile-avatar-mini {
  width: 38px;
  height: 38px;
  position: relative;
  flex-shrink: 0;
}

.profile-avatar-mini .avatar-ring-anim {
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 12px;
  background: conic-gradient(from 0deg, var(--neon-purple), var(--neon-cyan), var(--neon-pink), var(--neon-purple));
  animation: ringRotate 2s linear infinite;
  z-index: 0;
}

.profile-avatar-mini .avatar-ring-anim::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: var(--bg-card-solid);
  border-radius: 10px;
}

@keyframes ringRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.profile-avatar-mini img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.profile-avatar-mini .status-dot {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  background: var(--neon-green);
  border: 2px solid var(--bg-card-solid);
  border-radius: 50%;
  z-index: 2;
}

.profile-details {
  flex: 1;
  min-width: 0;
}

.profile-details h6 {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 1px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile-details span {
  font-size: 10px;
  color: var(--text-muted);
}

.profile-badge {
  width: 28px;
  height: 28px;
  background: var(--gradient-purple);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
}

/* Main Content */
.main-content {
  flex: 1;
  margin-left: var(--sidebar-width);
  min-height: 100vh;
  transition: margin 0.3s ease;
}

.dashboard-content {
  padding: 95px 24px 24px;
}


/* ===== Welcome Section ===== */
.welcome-section {
  margin-bottom: 24px;
}

.welcome-card {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(251, 191, 36, 0.15) 50%, rgba(234, 88, 12, 0.1) 100%);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.welcome-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.welcome-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}

.welcome-shape.shape-1 {
  width: 300px;
  height: 300px;
  background: var(--neon-purple);
  top: -100px;
  right: -50px;
  animation: shapeFloat 8s ease infinite;
}

.welcome-shape.shape-2 {
  width: 200px;
  height: 200px;
  background: var(--neon-cyan);
  bottom: -50px;
  left: 20%;
  animation: shapeFloat 10s ease infinite reverse;
}

.welcome-shape.shape-3 {
  width: 150px;
  height: 150px;
  background: var(--neon-pink);
  top: 50%;
  right: 30%;
  animation: shapeFloat 12s ease infinite;
}

@keyframes shapeFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, -30px) scale(1.1);
  }
}

.welcome-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  margin-bottom: 24px;
}

.welcome-text .greeting {
  display: block;
  font-size: 14px;
  color: var(--neon-cyan);
  margin-bottom: 8px;
}

.welcome-text h1 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.highlight {
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.welcome-text p {
  color: var(--text-secondary);
  font-size: 14px;
}

.welcome-profile-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--neon-purple);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.4), 0 0 40px rgba(245, 158, 11, 0.2);
  position: relative;
}

.welcome-profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stat-value {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  text-align: center;
}

.stat-value span {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
}

.stat-value small {
  font-size: 11px;
  color: var(--text-muted);
}

/* Welcome Actions */
.welcome-actions {
  display: flex;
  gap: 12px;
  position: relative;
  z-index: 2;
}

/* ===== Quick Stats ===== */
.quick-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.stat-card {
  padding: 24px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
}

.stat-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.stat-card.gradient-purple {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.3) 0%, rgba(217, 119, 6, 0.2) 100%);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.stat-card.gradient-cyan {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.3) 0%, rgb(20 20 20 / 20%) 100%);
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.stat-card.gradient-pink {
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.3) 0%, rgba(245, 158, 11, 0.2) 100%);
  border: 1px solid rgba(234, 88, 12, 0.3);
}

.stat-card.gradient-orange {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.3) 0%, rgba(239, 68, 68, 0.2) 100%);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.stat-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.stat-card.gradient-purple:hover {
  box-shadow: var(--glow-purple);
}

.stat-card.gradient-cyan:hover {
  box-shadow: var(--glow-cyan);
}

.stat-card.gradient-pink:hover {
  box-shadow: var(--glow-pink);
}

.stat-card.gradient-orange:hover {
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.4);
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
}

.stat-content {
  position: relative;
  z-index: 2;
}

.stat-label {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}

.stat-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin-bottom: 0px;
}

.stat-change {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

.stat-change.positive {
  background: rgba(16, 185, 129, 0.2);
  color: var(--neon-green);
}

.stat-change.neutral {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
}

.stat-chart {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 50px;
  opacity: 0.5;
}

.stat-glow {
  position: absolute;
  top: -50%;
  right: -30%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.3;
}

.stat-card.gradient-purple .stat-glow {
  background: var(--neon-purple);
}

.stat-card.gradient-cyan .stat-glow {
  background: var(--neon-cyan);
}

.stat-card.gradient-pink .stat-glow {
  background: var(--neon-pink);
}

.stat-card.gradient-orange .stat-glow {
  background: var(--neon-orange);
}

/* ===== Main Grid ===== */
.main-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

/* ===== Glass Card Base ===== */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
}

.glass-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.glass-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), var(--glow-purple);
}

/* Card Header */
.card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px !important;
}

.header-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  transition: all 0.3s ease;
}

.header-icon.gradient-purple {
  background: var(--gradient-purple);
  box-shadow: var(--glow-purple);
}

.header-icon.gradient-cyan {
  background: var(--gradient-cyan);
  box-shadow: var(--glow-cyan);
}

.header-icon.gradient-pink {
  background: var(--gradient-pink);
  box-shadow: var(--glow-pink);
}

.header-icon.gradient-green {
  background: var(--gradient-green);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.header-icon.gradient-orange {
  background: var(--gradient-orange);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}

.header-icon.gradient-blue {
  background: var(--gradient-blue);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.glass-card:hover .header-icon {
  transform: scale(1.1) rotate(5deg);
}

.header-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.header-text p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

.header-action-btn {
  margin-left: auto;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.header-action-btn:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.3);
  color: var(--neon-purple);
}

.view-all {
  margin-left: auto;
  font-size: 13px;
  color: var(--neon-cyan);
  font-weight: 500;
  transition: all 0.3s ease;
}

.view-all:hover {
  color: var(--neon-purple);
}

/* ===== Referral Card ===== */
.referral-card {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
  position: relative;
  overflow: hidden;
}

.referral-bg-glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.3) 0%, transparent 70%);
  animation: glowMove 5s ease infinite;
}

@keyframes glowMove {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-30px, 30px);
  }
}

.referral-bonus-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(239, 68, 68, 0.2) 100%);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 20px;
  margin-bottom: 24px;
}

.referral-bonus-badge i {
  color: var(--neon-orange);
  animation: fireFlicker 0.5s ease infinite alternate;
}

@keyframes fireFlicker {
  0% {
    opacity: 0.8;
    transform: scale(1);
  }

  100% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.referral-bonus-badge span {
  font-size: 12px;
  font-weight: 600;
  color: var(--neon-orange);
}

.referral-link-box {
  margin-bottom: 24px;
}

.link-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.link-input-wrap {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all 0.3s ease;
}

.link-input-wrap:hover {
  border-color: rgba(251, 191, 36, 0.3);
}

.link-input-wrap>i {
  padding: 0 12px;
  color: var(--neon-cyan);
  font-size: 14px;
}

.link-input-wrap input {
  flex: 1;
  padding: 12px 0;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 12px;
}

.link-input-wrap input:focus {
  outline: none;
}

.copy-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--gradient-cyan);
  border: none;
  color: white;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.copy-btn:hover {
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
}

.copy-btn.copied {
  background: var(--neon-green);
}

.referral-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ref-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.ref-stat:hover {
  background: rgba(251, 191, 36, 0.1);
}

.ref-stat-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(251, 191, 36, 0.15);
  border-radius: 10px;
  color: var(--neon-cyan);
  font-size: 16px;
}

.ref-stat-icon.green {
  background: rgba(16, 185, 129, 0.15);
  color: var(--neon-green);
}

.ref-stat-info {
  display: flex;
  flex-direction: column;
}

.ref-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.ref-label {
  font-size: 11px;
  color: var(--text-muted);
}

.referral-share-btns {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.share-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.share-btn:hover {
  transform: translateY(-3px);
}

.share-btn.whatsapp {
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
}

.share-btn.whatsapp:hover {
  background: #25d366;
  color: white;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

.share-btn.telegram {
  background: rgba(0, 136, 204, 0.15);
  color: #0088cc;
}

.share-btn.telegram:hover {
  background: #0088cc;
  color: white;
  box-shadow: 0 0 20px rgba(0, 136, 204, 0.4);
}

.share-btn.facebook {
  background: rgba(24, 119, 242, 0.15);
  color: #1877f2;
}

.share-btn.facebook:hover {
  background: #1877f2;
  color: white;
  box-shadow: 0 0 20px rgba(24, 119, 242, 0.4);
}

.share-btn.twitter {
  background: rgba(29, 161, 242, 0.15);
  color: #1da1f2;
}

.share-btn.twitter:hover {
  background: #1da1f2;
  color: white;
  box-shadow: 0 0 20px rgba(29, 161, 242, 0.4);
}

/* ===== Wallet Card ===== */
.wallet-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.wallet-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.wallet-item:hover {
  background: rgba(245, 158, 11, 0.05);
  border-color: rgba(245, 158, 11, 0.2);
  transform: translateX(5px);
}

.wallet-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
}

.wallet-icon.purple {
  background: rgba(245, 158, 11, 0.15);
  color: var(--neon-purple);
}

.wallet-icon.cyan {
  background: rgba(251, 191, 36, 0.15);
  color: var(--neon-cyan);
}

.wallet-icon.green {
  background: rgba(16, 185, 129, 0.15);
  color: var(--neon-green);
}

.wallet-icon.orange {
  background: rgba(245, 158, 11, 0.15);
  color: var(--neon-orange);
}

.wallet-item:hover .wallet-icon {
  transform: scale(1.1);
}

.wallet-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wallet-name {
  font-size: 13px;
  color: var(--text-secondary);
}

.wallet-balance {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.wallet-trend {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.wallet-trend.up {
  background: rgba(16, 185, 129, 0.15);
  color: var(--neon-green);
}

.wallet-trend.neutral {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

.wallet-actions {
  display: flex;
  gap: 10px;
}


/* ===== Income Card ===== */
.income-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.income-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.income-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.income-icon-wrap.purple {
  background: rgba(245, 158, 11, 0.15);
  color: var(--neon-purple);
}

.income-icon-wrap.green {
  background: rgba(16, 185, 129, 0.15);
  color: var(--neon-green);
}

.income-icon-wrap.orange {
  background: rgba(245, 158, 11, 0.15);
  color: var(--neon-orange);
}

.income-icon-wrap.pink {
  background: rgba(234, 88, 12, 0.15);
  color: var(--neon-pink);
}

.income-icon-wrap.cyan {
  background: rgba(251, 191, 36, 0.15);
  color: var(--neon-cyan);
}

.income-icon-wrap.blue {
  background: rgba(59, 130, 246, 0.15);
  color: var(--neon-blue);
}

.income-details {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 130px;
  flex-shrink: 0;
}

.income-label {
  font-size: 13px;
  color: var(--text-secondary);
  white-space: nowrap;
}

.income-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
}

.income-bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1s ease;
}

.bar-fill.purple {
  background: var(--gradient-purple);
}

.bar-fill.green {
  background: var(--gradient-green);
}

.bar-fill.orange {
  background: var(--gradient-orange);
}

.bar-fill.pink {
  background: var(--gradient-pink);
}

.bar-fill.cyan {
  background: var(--gradient-cyan);
}

.bar-fill.blue {
  background: var(--gradient-blue);
}

/* ===== User Info Card ===== */
.user-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.info-row:hover {
  background: rgba(245, 158, 11, 0.05);
  transform: translateX(5px);
}

.info-icon {
  width: 36px;
  height: 36px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-purple);
  font-size: 14px;
}

.info-content {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info-label {
  font-size: 12px;
  color: var(--text-muted);
}

.info-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.info-value.highlight {
  color: var(--neon-cyan);
}

/* Rank Status */
.rank-status {
  padding: 16px;
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.1);
  border-radius: var(--radius-sm);
}

.rank-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--text-secondary);
  font-size: 12px;
}

.rank-badge-large {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(239, 68, 68, 0.1);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}

.rank-badge-large.not-qualified {
  color: var(--neon-red);
}

.rank-badge-large i {
  font-size: 18px;
}

.rank-badge-large span {
  font-size: 14px;
  font-weight: 600;
}

.rank-progress .progress-info {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.progress-bar-custom {
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--gradient-purple);
  border-radius: 6px;
  transition: width 1s ease;
}

/* ===== Limits Card ===== */
.limits-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.limit-item {
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-sm);
}

.limit-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.limit-title {
  font-size: 13px;
  color: var(--text-secondary);
}

.limit-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.limit-progress {
  display: flex;
  align-items: center;
  gap: 12px;
}

.limit-bar {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

.limit-fill {
  height: 100%;
  border-radius: 8px;
  transition: width 1s ease;
}

.limit-bar.purple .limit-fill {
  background: var(--gradient-purple);
}

.limit-bar.green .limit-fill {
  background: var(--gradient-green);
}

.limit-percent {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  min-width: 35px;
}

.limit-info-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(251, 191, 36, 0.05);
  border: 1px solid rgba(251, 191, 36, 0.1);
  border-radius: var(--radius-sm);
}

.limit-info-box i {
  color: var(--neon-cyan);
}

.limit-info-box p {
  font-size: 12px;
  color: var(--text-secondary);
  margin: 0;
}

/* ===== Quick Actions ===== */
.actions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.action-item:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-5px);
}

.action-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
}

.action-icon.purple {
  background: rgba(245, 158, 11, 0.15);
  color: var(--neon-purple);
}

.action-icon.green {
  background: rgba(16, 185, 129, 0.15);
  color: var(--neon-green);
}

.action-icon.cyan {
  background: rgba(251, 191, 36, 0.15);
  color: var(--neon-cyan);
}

.action-icon.orange {
  background: rgba(245, 158, 11, 0.15);
  color: var(--neon-orange);
}

.action-icon.pink {
  background: rgba(234, 88, 12, 0.15);
  color: var(--neon-pink);
}

.action-icon.blue {
  background: rgba(59, 130, 246, 0.15);
  color: var(--neon-blue);
}

.action-item:hover .action-icon {
  transform: scale(1.1);
}

.action-item span {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}

.action-item:hover span {
  color: var(--text-primary);
}

/* ===== Activity Card ===== */
.activity-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.activity-item:hover {
  background: rgba(245, 158, 11, 0.05);
}

.activity-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.activity-icon.deposit {
  background: rgba(16, 185, 129, 0.15);
  color: var(--neon-green);
}

.activity-icon.earning {
  background: rgba(245, 158, 11, 0.15);
  color: var(--neon-purple);
}

.activity-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.activity-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.activity-time {
  font-size: 11px;
  color: var(--text-muted);
}

.activity-amount {
  font-size: 14px;
  font-weight: 700;
}

.activity-amount.positive {
  color: var(--neon-green);
}

.activity-item.empty {
  flex-direction: column;
  padding: 30px;
  text-align: center;
}

.empty-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.activity-item.empty span {
  font-size: 13px;
  color: var(--text-muted);
}



/* ===== Footer ===== */
.dashboard-footer {
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-content p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.footer-content a {
  color: var(--neon-purple);
  font-weight: 600;
}

.footer-content i.pulse {
  color: var(--neon-red);
  animation: heartPulse 1s ease infinite;
}

@keyframes heartPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

.w-100 {
  width: 100% !important;
}


/* ===== Responsive Design ===== */
@media (max-width: 1400px) {
  .main-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1200px) {
  .sidebar {
    transform: translateX(-100%);
  }

  .sidebar.active {
    transform: translateX(0);
  }

  .main-content {
    margin-left: 0;
  }

  .menu-btn {
    display: flex;
  }
}

@media (max-width: 992px) {
  .welcome-content {
    flex-direction: column;
    text-align: center;
  }

  .welcome-stats {
    margin-top: 20px;
  }

  .welcome-actions {
    justify-content: center;
  }

  .search-container {
    display: none;
  }

  .profile-info {
    display: none;
  }
}

@media (max-width: 768px) {
  .dashboard-content {
    padding: 95px 16px 16px;
  }

  .main-grid {
    grid-template-columns: 1fr;
  }

  .quick-stats {
    grid-template-columns: 1fr;
  }

  .team-stats-grid {
    grid-template-columns: 1fr;
  }

  .actions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .top-header {
    padding: 0 16px;
  }

  .header-right {
    gap: 8px;
  }

  .header-action {
    width: 40px;
    height: 40px;
  }

  .dashboard-footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .welcome-card {
    padding: 20px;
  }

  .welcome-text h1 {
    font-size: 1.3rem;
  }

  .btn-neon {
    padding: 10px 16px;
    font-size: 13px;
  }

  .stat-card {
    padding: 20px;
  }

  .stat-content h3 {
    font-size: 24px;
  }

  .glass-card {
    padding: 20px;
  }

  .actions-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .action-item {
    padding: 14px 8px;
  }

  .action-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}