@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: #04E1F9;
  --primaryColor: #004A90;
  --secondaryColor: #FFDE59;
  --grayColor: #737373;
  --white: #fff;
  --black: #000;
  --textLight: #E0E0E0;
  --borderColor: #343B4F;
  overflow-x: hidden;
}

/* CUSTOM CSS HERE */
* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  line-height: normal !important;
}

html {
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100vw;
}

body {
  overflow-x: hidden !important;
  overflow-y: auto;
  margin: 0;
  padding: 0;
  height: 100dvh;
  font-weight: 400;
  box-sizing: border-box;
  line-height: normal;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0d1128 100%);
  background-attachment: fixed;
  position: relative;
  width: 100%;
  max-width: 100vw;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 50%, rgba(4, 225, 249, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 74, 144, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(255, 222, 89, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  animation: bgPulse 15s ease-in-out infinite;
}

/* Robot-themed animated background */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2304E1F9' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
  animation: robotPattern 30s linear infinite;
  pointer-events: none;
  z-index: 0;
}

/* Floating robot circuit elements */
.middle-content::before {
  content: '';
  position: fixed;
  top: 10%;
  left: 5%;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(4, 225, 249, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatRobot1 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  max-width: 100px;
}

.middle-content::after {
  content: '';
  position: fixed;
  bottom: 15%;
  right: 5%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(0, 74, 144, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatRobot2 25s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  max-width: 120px;
}

@keyframes bgPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.8;
  }
}

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

  100% {
    transform: translateY(-60px) rotate(360deg);
  }
}

@keyframes floatRobot1 {

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

  50% {
    transform: translate(20px, -30px) scale(1.05);
    opacity: 0.6;
  }
}

@keyframes floatRobot2 {

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

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

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

::-webkit-scrollbar-track {
  background: linear-gradient(180deg, #1a1f3a 0%, #0d1128 100%);
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: linear-gradient(180deg, #04E1F9 0%, #004A90 100%);
  box-shadow: 0 0 10px rgba(4, 225, 249, 0.5);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #04E1F9 0%, #0066CC 100%);
}

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

a {
  text-decoration: none !important;
}

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

/* FONT SIZE */
.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(1rem, 0.8987rem + 0.5063vw, 1.5rem);
}

.font-22 {
  font-size: clamp(0.9375rem, 0.8489rem + 0.443vw, 1.375rem);
}

.font-20 {
  font-size: clamp(0.875rem, 0.7991rem + 0.3797vw, 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);
}

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

.scalable-gap-40 {
  gap: clamp(24px, 3vw, 40px);
}

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

.scalable-gap-12 {
  gap: 12;
}

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

/* FONT WEIGHT */
.regular {
  font-weight: 400;
}

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

.semibold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

/* COLOR */
.primaryColor {
  color: var(--primaryColor);
}

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

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

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

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

.text-danger {
  font-size: 12px;
}

.black {
  color: #000;
}

.green {
  color: #10B80D;
}

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

.bgthemeColor {
  background-color: var(--themeColor) !important;
}

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

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

.white-filter {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(16deg) brightness(105%) contrast(101%);
}

/* BUTTON */
.primary-button {
  background: linear-gradient(135deg, #04E1F9 0%, #004A90 100%);
  color: var(--white);
  border-radius: 24px;
  font-weight: 500;
  border: none;
  border: 1px solid transparent;
  transition: all 0.4s ease;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(4, 225, 249, 0.3);
}

.primary-button::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;
}

.primary-button:hover::before {
  left: 100%;
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(4, 225, 249, 0.5);
}

/* SIDEBAR */
.menu {
  padding: 36px 8px 0px 0px;
  height: calc(100% - 80px);
}

.menu li {
  position: relative;
}

.sidebar-icon {
  border-radius: 10px;
  display: flex;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
  transition: all 0.4s ease;
  background: linear-gradient(135deg, rgba(4, 225, 249, 0.1) 0%, rgba(0, 74, 144, 0.1) 100%);
  border: 1px solid rgba(4, 225, 249, 0.2);
  position: relative;
  overflow: hidden;
}

.sidebar-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(4, 225, 249, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.menu li>a:hover .sidebar-icon::before {
  width: 100%;
  height: 100%;
}

.menu li>a:hover .sidebar-icon {
  background: linear-gradient(135deg, rgba(4, 225, 249, 0.2) 0%, rgba(0, 74, 144, 0.2) 100%);
  border-color: rgba(4, 225, 249, 0.5);
  transform: translateX(5px) rotate(5deg);
  box-shadow: 0 4px 15px rgba(4, 225, 249, 0.3);
}

.menu li>a:hover .menu-text {
  color: #04E1F9;
  transform: translateX(5px);
}

.logo-sidebar {
  display: none;
}

.sidebar {
  width: 280px;
  flex: none;
  overflow-y: auto;
  overflow-x: hidden;
  transition: 0.3s width, 0.3s background;
  box-shadow: 0 0 40px rgba(4, 225, 249, 0.25);
  background: linear-gradient(180deg, #0a0e27 0%, #0d1128 50%, #1a1f3a 100%);
  border-right: 2px solid rgba(4, 225, 249, 0.2);
  position: relative;
}

.sidebar::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, #04E1F9 30%, #FFDE59 50%, #04E1F9 70%, transparent 100%);
  opacity: 0.5;
  animation: sidebarGlow 4s ease-in-out infinite;
}

.sidebar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 10% 20%, rgba(4, 225, 249, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 222, 89, 0.02) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

@keyframes sidebarGlow {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.8;
  }
}

.sidebar::-webkit-scrollbar {
  display: none;
}

.menu-text {
  display: inline;
  color: var(--textLight);
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  padding-left: 12px;
}

.menu .active {
  width: 100%;
  background: linear-gradient(90deg, rgba(4, 225, 249, 0.2) 0%, rgba(4, 225, 249, 0.35) 50%, rgba(0, 74, 144, 0.2) 100%);
  border-radius: 0px 16px 16px 0px;
  box-shadow:
    0 4px 20px rgba(4, 225, 249, 0.4),
    inset 0 0 20px rgba(4, 225, 249, 0.1);
  animation: activeMenuPulse 3s ease-in-out infinite;
  position: relative;
  border-left: 4px solid #04E1F9;
}

.menu .active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #04E1F9 0%, #FFDE59 50%, #04E1F9 100%);
  box-shadow: 0 0 15px rgba(4, 225, 249, 0.8);
  animation: activeBorderGlow 2s ease-in-out infinite;
}

.menu .active::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-right: 12px solid rgba(4, 225, 249, 0.3);
  filter: drop-shadow(0 0 8px rgba(4, 225, 249, 0.6));
}

@keyframes activeMenuPulse {

  0%,
  100% {
    box-shadow:
      0 4px 20px rgba(4, 225, 249, 0.4),
      inset 0 0 20px rgba(4, 225, 249, 0.1);
  }

  50% {
    box-shadow:
      0 6px 30px rgba(4, 225, 249, 0.6),
      inset 0 0 30px rgba(4, 225, 249, 0.2);
  }
}

@keyframes activeBorderGlow {

  0%,
  100% {
    box-shadow: 0 0 15px rgba(4, 225, 249, 0.8);
  }

  50% {
    box-shadow: 0 0 25px rgba(4, 225, 249, 1);
  }
}

.menu .active .sidebar-icon {
  background: linear-gradient(135deg, #04E1F9 0%, #004A90 100%);
  box-shadow: 0 0 20px rgba(4, 225, 249, 0.6);
  transform: scale(1.1);
}

.menu .active img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(2%) saturate(658%) hue-rotate(28deg) brightness(117%) contrast(100%);
  animation: iconBounce 0.6s ease;
  transform: scale(1.1);
}

@keyframes iconBounce {

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

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

.menu .active .menu-text {
  color: #04E1F9 !important;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(4, 225, 249, 0.5);
  letter-spacing: 0.5px;
}


/* PARENT ACTIVE MENU */
.menu .parent-active>a {
  background: linear-gradient(90deg, rgba(4, 225, 249, 0.15) 0%, rgba(4, 225, 249, 0.25) 50%, rgba(0, 74, 144, 0.15) 100%);
  border-radius: 0px 16px 16px 0px;
  box-shadow: 0 4px 15px rgba(4, 225, 249, 0.3);
  border-left: 3px solid rgba(4, 225, 249, 0.6);
}

.menu .parent-active .sidebar-icon {
  background: linear-gradient(135deg, rgba(4, 225, 249, 0.2) 0%, rgba(0, 74, 144, 0.2) 100%);
  border-color: rgba(4, 225, 249, 0.4);
  box-shadow: 0 0 15px rgba(4, 225, 249, 0.4);
}

.menu .parent-active img {
  filter: brightness(0) saturate(100%) invert(70%) sepia(98%) saturate(2476%) hue-rotate(157deg) brightness(101%) contrast(97%);
}

.menu .parent-active .menu-text {
  color: #04E1F9 !important;
  font-weight: 600;
}

.menu .parent-active .submenu-arrow svg path {
  stroke: #04E1F9 !important;
}

/* LOGO / SIDEBAR */
.logo-collapsed {
  border-bottom: 2px solid rgba(4, 225, 249, 0.3);
  background: linear-gradient(180deg, rgba(4, 225, 249, 0.1) 0%, rgba(0, 74, 144, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.logo-collapsed::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #04E1F9 50%, transparent 100%);
  animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

.sidebar {
  overflow-x: hidden;
}

.sidebar.collapsed {
  width: 60px;
}

.sidebar.collapsed .active {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  border-radius: 0px 16px 16px 0px;
}

.sidebar.collapsed .logo-container {
  padding: 8px;
}

.sidebar.collapsed .menu-text {
  display: none;
}

.sidebar.collapsed .logo-sidebar {
  display: block;
  border-bottom: 2px solid rgba(4, 225, 249, 0.3);
  background: linear-gradient(180deg, rgba(4, 225, 249, 0.1) 0%, rgba(0, 74, 144, 0.05) 100%);
}

.sidebar.collapsed .logo-collapsed {
  display: none;
}

/* COMMON FIX (BLEED ISSUE) */

.menu li>a,
.submenu a {
  position: relative;
  overflow: hidden;
}

/* LIST RESET */

li {
  list-style: none;
}


/* SUBMENU */

.has-submenu>a {
  cursor: pointer;
}

.submenu-arrow {
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  opacity: 0.7;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(4, 225, 249, 0.1);
}

.has-submenu.expanded .submenu-arrow {
  transform: rotate(90deg);
  background: rgba(4, 225, 249, 0.2);
  box-shadow: 0 0 10px rgba(4, 225, 249, 0.3);
}

.has-submenu:hover .submenu-arrow {
  opacity: 1;
  background: rgba(4, 225, 249, 0.15);
}

/* SUBMENU CONTAINER */
.submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding-left: 0;
  margin: 0;
  list-style: none;
  background: linear-gradient(135deg, rgba(4, 225, 249, 0.05) 0%, rgba(0, 74, 144, 0.05) 100%);
  border-radius: 0 12px 12px 0;
  margin-right: 8px;
  border-left: 2px solid rgba(4, 225, 249, 0.2);
  margin-left: 8px;
}

.submenu.expanded {
  max-height: 300px;
  padding: 8px 0;
}

.submenu li {
  margin: 0;
}

/* SUBMENU LINKS */
.submenu a {
  padding: 10px 0 10px 45px;
  color: var(--textLight);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
  border-radius: 0 12px 12px 0;
  position: relative;
}

/* Bullet indicator */
.submenu a::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(4, 225, 249, 0.5) 0%, rgba(0, 74, 144, 0.5) 100%);
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(4, 225, 249, 0.3);
  border: 1px solid rgba(4, 225, 249, 0.3);
}

/* Hover */
.submenu a:hover {
  background: linear-gradient(90deg, rgba(4, 225, 249, 0.15) 0%, rgba(0, 74, 144, 0.15) 100%);
  color: #04E1F9;
  padding-left: 50px;
  box-shadow: 0 2px 10px rgba(4, 225, 249, 0.2);
}

.submenu a:hover::before {
  background: linear-gradient(135deg, #04E1F9 0%, #FFDE59 100%);
  transform: translateY(-50%) scale(1.4);
  box-shadow: 0 0 15px rgba(4, 225, 249, 0.8);
  border-color: #04E1F9;
}

/* Active submenu */
.submenu a.active {
  background: linear-gradient(90deg, rgba(4, 225, 249, 0.2) 0%, rgba(0, 74, 144, 0.2) 100%);
  color: #04E1F9;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(4, 225, 249, 0.3);
}

.submenu a.active::before {
  background: linear-gradient(135deg, #04E1F9 0%, #FFDE59 100%);
  box-shadow: 0 0 15px rgba(4, 225, 249, 1);
  animation: bulletPulse 2s ease-in-out infinite;
  border-color: #04E1F9;
  transform: translateY(-50%) scale(1.5);
}

@keyframes bulletPulse {

  0%,
  100% {
    transform: translateY(-50%) scale(1.5);
    box-shadow: 0 0 15px rgba(4, 225, 249, 1);
  }

  50% {
    transform: translateY(-50%) scale(1.7);
    box-shadow: 0 0 20px rgba(4, 225, 249, 1);
  }
}

.submenu-text {
  white-space: nowrap;
}

/* COLLAPSED SIDEBAR FIXES */

.sidebar.collapsed .submenu a {
  padding-left: 0;
}

.sidebar.collapsed .submenu a::before {
  display: none;
}

/* Optional polish */
.sidebar.collapsed .parent-active>a {
  width: 48px;
}

/* Collapsed sidebar submenu styles */
.sidebar.collapsed .submenu-arrow {
  display: none;
}

.sidebar.collapsed .submenu {
  display: none;
}

.sidebar.collapsed .has-submenu>a {
  justify-content: center;
}

/* NAVBAR */
.navBar {
  position: sticky;
  top: 0;
  backdrop-filter: blur(30px);
  background: linear-gradient(90deg, rgba(13, 17, 40, 0.95) 0%, rgba(26, 31, 58, 0.95) 100%);
  padding: 10px 28px;
  transition: all 0.3s ease;
  z-index: 999 !important;
  border-bottom: 2px solid rgba(4, 225, 249, 0.3);
  box-shadow: 0 8px 32px rgba(4, 225, 249, 0.2);
  max-width: 100%;
  /* overflow: hidden; */
  display: flex !important;
  width: 100%;
}

.navBar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(4, 225, 249, 0.1), transparent);
  animation: navbarShine 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes navbarShine {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.navBar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #04E1F9 50%, transparent 100%);
  animation: navbarGlow 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes navbarGlow {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

.navBar>* {
  position: relative;
  z-index: 1;
}

.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  z-index: 1020;
}

.iconBackground {
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #04E1F9 0%, #004A90 100%);
  transition: all 0.4s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(4, 225, 249, 0.4);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(4, 225, 249, 0.3);
}

.iconBackground::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.iconBackground:hover::before {
  width: 150%;
  height: 150%;
}

.iconBackground:hover {
  background: linear-gradient(135deg, #00BFFF 0%, #0066CC 100%);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(4, 225, 249, 0.6);
}

.logo-container {
  padding: 8px 12px 8px 20px;
}

.iconBackground:hover {
  .fill-icon {
    fill: var(--white);
  }
}

.icon-hover {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  background: linear-gradient(135deg, rgba(4, 225, 249, 0.1) 0%, rgba(0, 74, 144, 0.1) 100%);
  border: 1px solid rgba(4, 225, 249, 0.2);
}

.icon-hover::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(4, 225, 249, 0.2) 0%, rgba(0, 74, 144, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.icon-hover img {
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.icon-hover:hover::before {
  opacity: 1;
}

.icon-hover:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(4, 225, 249, 0.4);
  border-color: rgba(4, 225, 249, 0.5);
}

.icon-hover:hover img {
  transform: scale(1.15);
  filter: drop-shadow(0 4px 12px rgba(4, 225, 249, 0.5));
}

/* Notification badge */
.notification-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #FF3535 0%, #CC0000 100%);
  border-radius: 50%;
  border: 2px solid rgba(13, 17, 40, 0.95);
  animation: notificationPulse 2s ease-in-out infinite;
}

@keyframes notificationPulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 53, 53, 0.7);
  }

  50% {
    transform: scale(1.1);
    box-shadow: 0 0 0 4px rgba(255, 53, 53, 0);
  }
}

/* profile dropdown */
.profile-tabs {
  width: clamp(8.125rem, 7.625rem + 2.5vw, 10.625rem);
}

.profile-name {
  h4 {
    color: #404040;
  }

  h5 {
    color: #565656;
  }
}

.profile-background {
  padding: 8px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(4, 225, 249, 0.1) 0%, rgba(0, 74, 144, 0.1) 100%);
  border: 1px solid rgba(4, 225, 249, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.profile-background:hover {
  background: linear-gradient(135deg, rgba(4, 225, 249, 0.2) 0%, rgba(0, 74, 144, 0.2) 100%);
  border-color: rgba(4, 225, 249, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(4, 225, 249, 0.3);
}

.profile-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.profile-dropdown .dropdown-menu {
  border-radius: 16px;
  background: linear-gradient(135deg, #0d1128 0%, #1a1f3a 100%);
  border: 2px solid rgba(4, 225, 249, 0.3);
  width: 250px;
  box-shadow: 0 12px 40px rgba(4, 225, 249, 0.3);
  padding: 16px !important;
  position: absolute;
  top: 100% !important;
  right: 0 !important;
  left: auto !important;
  margin-top: 8px !important;
  transform-origin: top right;
  animation: dropdownSlide 0.3s ease forwards;
  overflow: hidden;
  display: none;
}

.profile-dropdown .dropdown-menu.show {
  display: block;
}

.profile-dropdown .dropdown-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(4, 225, 249, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

@keyframes dropdownSlide {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.profile-dropdown-list {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.profile-dropdown-list::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: linear-gradient(180deg, #04E1F9 0%, #004A90 100%);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.profile-dropdown-list:hover::before {
  transform: scaleY(1);
}

.profile-dropdown-list:hover {
  background: linear-gradient(90deg, rgba(4, 225, 249, 0.15) 0%, rgba(0, 74, 144, 0.15) 100%);
  border-radius: 8px;
  transform: translateX(6px);
  box-shadow: 0 4px 15px rgba(4, 225, 249, 0.2);
}

.profile-dropdown-list:hover .grayColor {
  color: var(--themeColor) !important;
}

.profile-dropdown-list:hover svg path {
  stroke: var(--themeColor) !important;
}

.profile-dropdown-list:hover svg {
  fill: var(--themeColor) !important;
}

.logout {
  background: linear-gradient(135deg, rgba(255, 53, 53, 0.1) 0%, rgba(153, 0, 0, 0.1) 100%);
  border: 1px solid rgba(255, 53, 53, 0.3);
  transition: all 0.3s ease;
}

.logout:hover {
  background: linear-gradient(135deg, rgba(255, 53, 53, 0.2) 0%, rgba(153, 0, 0, 0.2) 100%);
  border-color: rgba(255, 53, 53, 0.5);
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(255, 53, 53, 0.3);
}

.borderBottom {
  border-bottom: 1px solid rgba(4, 225, 249, 0.2) !important;
  padding-bottom: 12px !important;
  margin-bottom: 8px !important;
}

/* DASHBOARD */
.main-content {
  overflow-y: auto;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}


/* Middle content */
.middle-content {
  padding: 30px clamp(1rem, 0.8228rem + 0.8861vw, 1.875rem);
  position: relative;
  z-index: 1;
  max-width: 100%;
  /* overflow-x: hidden; */
}

/* Ensure cards stay above background animations */
.dashboard-card,
.summary-card,
.dashboard-gold-trading-card {
  position: relative;
  z-index: 2;
}

.heading {
  background: linear-gradient(135deg, rgba(4, 225, 249, 0.15) 0%, rgba(0, 74, 144, 0.15) 100%);
  padding: clamp(0.625rem, 0.5237rem + 0.5063vw, 1.125rem);
  border-radius: clamp(0.625rem, 0.4984rem + 0.6329vw, 1.25rem);
  border: 1px solid rgba(4, 225, 249, 0.3);
  box-shadow: 0 4px 20px rgba(4, 225, 249, 0.2);
  position: relative;
  overflow: hidden;
}

.heading::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(4, 225, 249, 0.1), transparent);
  animation: headingShine 3s ease-in-out infinite;
}

@keyframes headingShine {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.heading h3 {
  color: var(--themeColor);
  position: relative;
  z-index: 1;
  text-shadow: 0 0 10px rgba(4, 225, 249, 0.3);
}

/* Dashboard */
.card-linear-gradiant {
  background: linear-gradient(135deg, #04E1F9 0%, #004A90 100%);
  box-shadow: 0 8px 32px rgba(4, 225, 249, 0.3);
  position: relative;
  overflow: hidden;
}

.card-linear-gradiant::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: cardRotate 10s linear infinite;
}

@keyframes cardRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.dashboard-card {
  padding: 18px 18px;
  border-radius: 14px;
  transition: all 0.3s ease;
}

.dashboard-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(4, 225, 249, 0.4);
}

.dashboard-card-icon {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
  border-radius: 16px;
  padding: 8px;
  aspect-ratio: 1;
  height: 60px;
  width: 60px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.dashboard-card:hover .dashboard-card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(4, 225, 249, 0.3);
}

.summary-card {
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(13, 17, 40, 0.8) 0%, rgba(26, 31, 58, 0.8) 100%);
  box-shadow: 0 8px 32px rgba(4, 225, 249, 0.2);
  gap: 30px;
  border: 1px solid rgba(4, 225, 249, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.summary-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(4, 225, 249, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.summary-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(4, 225, 249, 0.3);
  border-color: rgba(4, 225, 249, 0.3);
}

.summary-card-header {
  background: linear-gradient(135deg, rgba(4, 225, 249, 0.15) 0%, rgba(0, 74, 144, 0.15) 100%);
  border-radius: 15px 15px 0px 0px;
  padding: 20px clamp(1.875rem, 1.6218rem + 1.2658vw, 3.125rem);
  border-bottom: 2px solid rgba(4, 225, 249, 0.3);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.summary-card-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(4, 225, 249, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.summary-card-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #04E1F9 50%, transparent 100%);
  animation: headerGlow 3s ease-in-out infinite;
}

@keyframes headerGlow {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

.summary-card-content {
  padding: 0px clamp(1.25rem, 1.1234rem + 0.6329vw, 1.875rem) clamp(1.25rem, 1.1234rem + 0.6329vw, 1.875rem);
}

.dashboard-gold-trading-card {
  background: linear-gradient(135deg, #04E1F9 0%, #004A90 100%);
  border-radius: 35px;
  padding: 6px 0px 20px 0px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 40px rgba(4, 225, 249, 0.4);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.dashboard-gold-trading-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
  animation: cardSpin 8s linear infinite;
}

@keyframes cardSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.dashboard-gold-trading-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 50px rgba(4, 225, 249, 0.5);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Premium Welcome Card with Robot */
.premium-welcome-card {
  position: relative;
}

.welcome-robot-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: welcomeRobotPulse 3s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(4, 225, 249, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.robot-emoji {
  font-size: 28px;
  animation: welcomeRobotBounce 2s ease-in-out infinite;
}

@keyframes welcomeRobotPulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(4, 225, 249, 0.5);
  }

  50% {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(4, 225, 249, 0.8);
  }
}

@keyframes welcomeRobotBounce {

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

  25% {
    transform: translateY(-5px) rotate(-5deg);
  }

  75% {
    transform: translateY(-5px) rotate(5deg);
  }
}

.gradient-text-welcome {
  background: linear-gradient(90deg, #FFFFFF 0%, #04E1F9 50%, #FFFFFF 100%);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: welcomeTextShift 4s ease infinite;
}

@keyframes welcomeTextShift {

  0%,
  100% {
    background-position: 0% center;
  }

  50% {
    background-position: 100% center;
  }
}

/* Robot Vector Container */
.robot-vector-container {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.robot-vector {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 15px rgba(4, 225, 249, 0.5));
  animation: robotFloat 4s ease-in-out infinite;
}

@keyframes robotFloat {

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

  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

/* Robot Eyes Blink Animation */
.robot-eye-left,
.robot-eye-right {
  animation: robotBlink 4s ease-in-out infinite;
}

@keyframes robotBlink {

  0%,
  48%,
  52%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }

  50% {
    opacity: 0.3;
    transform: scaleY(0.1);
  }
}

/* Robot Arms Wave Animation */
.robot-arm-left {
  animation: robotWaveLeft 3s ease-in-out infinite;
  transform-origin: top right;
}

.robot-arm-right {
  animation: robotWaveRight 3s ease-in-out infinite;
  transform-origin: top left;
}

@keyframes robotWaveLeft {

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

  50% {
    transform: rotate(-15deg);
  }
}

@keyframes robotWaveRight {

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

  50% {
    transform: rotate(15deg);
  }
}

.gold-trading-card-content {
  padding: clamp(1.25rem, 1.1234rem + 0.6329vw, 1.875rem) 0px 0px 20px;
}

.total-investment-card {
  padding: 0px 20px;
}

.total-investment {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
  border-radius: 12px;
  padding: 6px 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.total-investment:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.dashboard-top-cards {
  padding: clamp(0rem, -0.7595rem + 3.7975vw, 3.75rem) 0px;
}

.dashboard-invitation-card {
  background-color: var(--white);
  border-radius: 35px;
  padding: 7px 18px clamp(1.25rem, 0.9462rem + 1.519vw, 2.75rem) clamp(1.25rem, 0.9968rem + 1.2658vw, 2.5rem);
  gap: 24px;
}

.primary-btn {
  background: linear-gradient(135deg, #04E1F9 0%, #004A90 100%);
  border-radius: 15px;
  border: 0;
  outline: 0;
  box-shadow: 0 4px 15px rgba(4, 225, 249, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: buttonGlow 3s ease-in-out infinite;
}

.primary-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.primary-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: buttonShineAlways 3s ease-in-out infinite;
}

@keyframes buttonShineAlways {
  0% {
    left: -100%;
  }

  100% {
    left: 200%;
  }
}

@keyframes buttonGlow {

  0%,
  100% {
    box-shadow: 0 4px 15px rgba(4, 225, 249, 0.4);
  }

  50% {
    box-shadow: 0 6px 25px rgba(4, 225, 249, 0.7);
  }
}

.primary-btn:hover::before {
  width: 300%;
  height: 300%;
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(4, 225, 249, 0.6);
}

.invitation-icons {
  height: clamp(1.5rem, 1.3987rem + 0.5063vw, 2rem);
}

.scalable-p-12 {
  padding: clamp(0.75rem, 0.7rem + 0.2vw, 0.75rem);
}

.scalable-p-12-36 {
  padding: 12px clamp(28px, 3vw, 36px);
}

.user-details-content {
  padding: 5px 0px clamp(1.875rem, 1.6218rem + 1.2658vw, 3.125rem) 0px;
}

.user-avtar {
  border: clamp(0.125rem, 0.0997rem + 0.1266vw, 0.25rem) solid var(--themeColor);
  border-radius: 50%;
  object-fit: cover;
  height: clamp(5rem, 4.7468rem + 1.2658vw, 6.25rem);
  width: clamp(5rem, 4.7468rem + 1.2658vw, 6.25rem);
  box-shadow: 0 0 20px rgba(4, 225, 249, 0.5);
  transition: all 0.3s ease;
  animation: avatarGlow 3s ease-in-out infinite;
}

@keyframes avatarGlow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(4, 225, 249, 0.5);
  }

  50% {
    box-shadow: 0 0 30px rgba(4, 225, 249, 0.8);
  }
}

.user-avtar:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 35px rgba(4, 225, 249, 0.9);
}

.mining-trading-card-content {
  padding: clamp(1.25rem, 1.1234rem + 0.6329vw, 1.875rem) 0px clamp(1.25rem, 1.1234rem + 0.6329vw, 1.875rem) 24px;

  button {
    padding: 10px clamp(1.25rem, 1.0601rem + 0.9494vw, 2.1875rem);
  }
}

.earn-trading-card-content {
  padding: clamp(1.25rem, 1.1234rem + 0.6329vw, 1.875rem) clamp(1.5rem, 1.2342rem + 1.3291vw, 2.8125rem) clamp(1.25rem, 1.1234rem + 0.6329vw, 1.875rem) 0px;

  button {
    padding: 10px clamp(1.25rem, 1.0601rem + 0.9494vw, 2.1875rem);
  }
}

/* Premium Robot-Themed Mining Cards */
.robot-mining-card {
  background: linear-gradient(135deg, rgba(4, 225, 249, 0.15) 0%, rgba(0, 74, 144, 0.15) 100%);
  border: 2px solid rgba(4, 225, 249, 0.3);
  border-radius: 20px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.robot-mining-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 0%, rgba(4, 225, 249, 0.1) 50%, transparent 100%);
  animation: robotCardSpin 10s linear infinite;
}

.robot-mining-card:hover {
  transform: translateY(-8px);
  border-color: rgba(4, 225, 249, 0.6);
  box-shadow: 0 15px 50px rgba(4, 225, 249, 0.4);
}

@keyframes robotCardSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.robot-mining-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #04E1F9 0%, #004A90 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: robotPulse 3s ease-in-out infinite;
  box-shadow: 0 0 30px rgba(4, 225, 249, 0.5);
}

.robot-mining-icon::before {
  content: '🤖';
  font-size: 40px;
  animation: robotBounce 2s ease-in-out infinite;
}

.robot-mining-icon::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(4, 225, 249, 0.3);
  animation: robotRing 2s ease-in-out infinite;
}

@keyframes robotPulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 30px rgba(4, 225, 249, 0.5);
  }

  50% {
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(4, 225, 249, 0.8);
  }
}

@keyframes robotBounce {

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

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

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

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

.robot-mining-btn {
  background: linear-gradient(135deg, #04E1F9 0%, #004A90 100%);
  border: none;
  border-radius: 12px;
  padding: 14px 40px;
  color: white;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(4, 225, 249, 0.4);
  animation: robotBtnGlow 3s ease-in-out infinite;
}

.robot-mining-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: robotBtnShine 3s ease-in-out infinite;
}

@keyframes robotBtnShine {
  0% {
    left: -100%;
  }

  100% {
    left: 200%;
  }
}

@keyframes robotBtnGlow {

  0%,
  100% {
    box-shadow: 0 8px 25px rgba(4, 225, 249, 0.4);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 12px 35px rgba(4, 225, 249, 0.7);
    transform: scale(1.02);
  }
}

.robot-mining-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(4, 225, 249, 0.6);
}

.robot-mining-btn:active {
  transform: translateY(-1px);
}

.mining-divider {
  width: 2px;
  background: linear-gradient(180deg, transparent 0%, rgba(4, 225, 249, 0.5) 50%, transparent 100%);
  margin: 0 20px;
}

/* Deposit */
.deposit-card {
  width: 300px;
  height: 180px;
  border-radius: 25px;
}

.deposit-content {
  border-top: 1px solid var(--white);
  padding: 31px 47px 24px;
}
select {
    color: #fff !important;             
    border: 1px solid #333;
}

select option {
    background-color: #000;  
    color: #fff;              
}
/* Input */
.form-group {
  position: relative;
}

.custom-input {
  width: 100%;
  padding: clamp(0.625rem, 0.5744rem + 0.2532vw, 0.875rem) 18px clamp(0.625rem, 0.5744rem + 0.2532vw, 0.875rem) 18px;
  border: 1px solid rgba(4, 225, 249, 0.3);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
  color: var(--textLight);
  background: rgba(13, 17, 40, 0.5);
  transition: all 0.3s ease;
  outline: none;
  cursor: pointer;
}

.custom-input:focus {
  border-color: var(--themeColor);
  box-shadow: 0 0 0 3px rgba(4, 225, 249, 0.15);
  background: rgba(13, 17, 40, 0.8);
  transform: translateY(-2px);
}

.custom-input:hover {
  border-color: var(--themeColor);
  box-shadow: 0 0 10px rgba(4, 225, 249, 0.2);
}

.custom-input::placeholder {
  color: var(--grayColor);
  font-weight: 400;
}

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

/* Custom icon */
.date-icon {
  position: absolute;
  right: 23px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  filter: brightness(0) saturate(100%) invert(100%) sepia(8%) saturate(7500%) hue-rotate(252deg) brightness(108%) contrast(93%);
}

.secondary-btn {
  background: linear-gradient(135deg, #04E1F9 0%, #004A90 100%);
  border-radius: 12px;
  border: 0;
  outline: 0;
  padding: clamp(0.75rem, 0.6994rem + 0.2532vw, 1rem) 16px;
  min-width: 250px;
  box-shadow: 0 4px 15px rgba(4, 225, 249, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: buttonGlow 3s ease-in-out infinite;
}

.secondary-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: buttonShineAlways 3s ease-in-out infinite;
}

.secondary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(4, 225, 249, 0.6);
}

.genrate-OTP {
  background: linear-gradient(135deg, #04E1F9 0%, #004A90 100%);
  border-radius: 4px;
  border: 1px solid rgba(4, 225, 249, 0.5);
  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%;
  box-shadow: 0 4px 15px rgba(4, 225, 249, 0.3);
  transition: all 0.3s ease;
  animation: buttonGlow 3s ease-in-out infinite;
  overflow: hidden;
}

.genrate-OTP::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: buttonShineAlways 3s ease-in-out infinite;
}

.genrate-OTP:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(4, 225, 249, 0.5);
}

/* form buttons */
.form-btn {
  background: linear-gradient(135deg, #04E1F9 0%, #004A90 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);
  box-shadow: 0 4px 15px rgba(4, 225, 249, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: buttonGlow 3s ease-in-out infinite;
}

.form-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: buttonShineAlways 3s ease-in-out infinite;
}

.form-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.form-btn:hover::after {
  width: 300%;
  height: 300%;
}

.form-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(4, 225, 249, 0.6);
}

.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(135deg, #04E1F9 0%, #004A90 50%, #FFDE59 100%);
  color: var(--white);
  box-shadow: 0 10px 40px rgba(4, 225, 249, 0.4);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.gradint-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: cardRotate 10s linear infinite;
}

.gradint-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 50px rgba(4, 225, 249, 0.6);
}

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

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

.table-wrapper {
  .dt-layout-full {
    border: 1px solid rgba(4, 225, 249, 0.2);
    padding: 0;
    background: linear-gradient(135deg, rgba(13, 17, 40, 0.8) 0%, rgba(26, 31, 58, 0.8) 100%);
    border-radius: 12px;
    overflow: hidden;
  }

  .table.dataTable thead>tr>th div.dt-column-header {
    color: var(--themeColor);
    font-size: 12px;
    font-weight: 600;
    padding: 0px 12px;
    white-space: nowrap;
    text-shadow: 0 0 10px rgba(4, 225, 249, 0.3);
  }

  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: rgba(13, 17, 40, 0.8);
    border: 1px solid rgba(4, 225, 249, 0.3);
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
    border-radius: 6px;
    transition: all 0.3s ease;
  }

  div.dt-container div.dt-search input:focus,
  div.dt-container div.dt-length select:focus {
    border-color: var(--themeColor);
    box-shadow: 0 0 10px rgba(4, 225, 249, 0.3);
  }


  .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: rgba(13, 17, 40, 0.6);
    vertical-align: middle;
    text-align: center;
    transition: all 0.3s ease;
  }

  .table.dataTable tbody tr:hover td {
    background: rgba(4, 225, 249, 0.1);
  }

  .approved-btn {
    background: linear-gradient(135deg, #04E1F9 0%, #004A90 100%);
    border: 0;
    padding: 3px 8px;
    color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(4, 225, 249, 0.3);
  }

  .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: rgba(4, 225, 249, 0.2);
  }

  .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 rgba(4, 225, 249, 0.15);
    background: rgba(4, 225, 249, 0.05);
  }

  .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: linear-gradient(135deg, rgba(4, 225, 249, 0.2) 0%, rgba(0, 74, 144, 0.2) 100%);
    transition: all 0.3s ease;
  }

  .pagination button:hover {
    background: linear-gradient(135deg, #04E1F9 0%, #004A90 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(4, 225, 249, 0.4);
  }

  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 rgba(4, 225, 249, 0.15);
  }

  .active>.page-link {
    color: var(--white);
    background: linear-gradient(135deg, #04E1F9 0%, #004A90 100%);
    box-shadow: 0 4px 15px rgba(4, 225, 249, 0.4);
  }

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

}


.table-hover>tbody>tr:hover>* {
  background: linear-gradient(90deg, rgba(4, 225, 249, 0.1) 0%, rgba(0, 74, 144, 0.1) 100%) !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: linear-gradient(90deg, #FEB95A 0%, #986F36 100%);
    font-weight: 600;
  }

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

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


.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;
}

.truncate-input {
  width: 100%;
  padding-right: 130px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.copy-btn {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
}

/* Choose file - Premium Robot Theme */
.choose-file-btn {
  background: linear-gradient(135deg, #04E1F9 0%, #004A90 100%);
  border-radius: 8px;
  border: 1px solid rgba(4, 225, 249, 0.5);
  outline: 0;
  padding: 12px 20px;
  position: absolute;
  left: 0;
  height: 100%;
  cursor: pointer;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(4, 225, 249, 0.4);
  overflow: hidden;
}


.choose-file-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(4, 225, 249, 0.6);
  border-color: rgba(4, 225, 249, 0.8);
}

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

.file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.choose-file-btn {
    cursor: pointer;
    z-index: 10;
    position: absolute;
    pointer-events: auto;
}
.choose-file-input{
padding-left:  clamp(8.75rem, 8.4968rem + 1.2658vw, 10rem) !important;
}
.file-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qr-code {
  background-color: var(--white);
}

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




/* media query */

@media (max-width: 480px) {
  .navBar {
    padding: 6px 8px;
  }

  .scalable-gap-30 {
    gap: 12px;
  }

  .profile-hide {
    display: none;
  }

  .input-search {
    width: 150px;
    padding: 8px 16px;
  }
}

@media (max-width: 991px) {

  .sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 250px;
    background-color: #19191A;
    z-index: 99999;
    transform: translateX(-100%);
    transition: transform 0.35s ease-in-out;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 8px 0px 32px rgba(0, 0, 0, 0.25);
    will-change: transform;
  }

  /* OPEN STATE */
  .sidebar:not(.collapsed) {
    transform: translateX(0);
  }

  /* COLLAPSED STATE */
  .sidebar.collapsed {
    transform: translateX(-100%);
  }

  /* Overlay */
  .sidebar-container::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 998;
  }

}

@media (max-width: 576px) {
  .img-BYBIT {
    width: 45%;
  }

  .img-Invitation {
    width: 45%;
  }

  /* Robot Vector Responsive */
  .robot-vector-container {
    width: 80px;
    height: 80px;
  }

  .welcome-robot-icon {
    width: 40px;
    height: 40px;
  }

  .robot-emoji {
    font-size: 22px;
  }

  .gradient-text-welcome {
    font-size: 18px !important;
  }
}


@media (min-width:768px) and (max-width: 1250px) {
  .img-BYBIT {
    width: 50%;
  }

  .img-Invitation {
    width: 50%;
  }
}


/* 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;
  }

  /* Robot mining card responsive */
  .robot-mining-card {
    padding: 20px;
  }

  .robot-mining-icon {
    width: 60px;
    height: 60px;
  }

  .robot-mining-icon::before {
    font-size: 30px;
  }

  .robot-mining-btn {
    padding: 10px 25px;
    font-size: 16px;
  }

  .mining-divider {
    display: none;
  }
}

@media (min-width: 576px) {
  .d-md-flex {
    display: flex !important;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto !important;
  }
}


/* add css in 26/12/2025 */

/* Bottom Navbar */
.bottom-navbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  background: linear-gradient(135deg, #04E1F9 0%, #004A90 100%);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 20px;
  box-shadow: 0 -8px 32px rgba(4, 225, 249, 0.5);
  z-index: 999;
  border-radius: 20px 20px 0px 0px;
  backdrop-filter: blur(10px);
  border-top: 2px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
}

.bottom-navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: bottomNavShine 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes bottomNavShine {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.bottom-navbar a {
  color: var(--white);
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  gap: 4px;
  transition: all 0.3s ease;
  position: relative;
  padding: 6px 8px;
  border-radius: 10px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bottom-navbar a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.bottom-navbar a:hover::before {
  opacity: 1;
}

.bottom-navbar a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--secondaryColor);
  border-radius: 2px;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px var(--secondaryColor);
}

.bottom-navbar a:hover::after {
  width: 70%;
}

.bottom-navbar a:hover {
  color: var(--secondaryColor);
  transform: translateY(-3px);
}

.bottom-navbar i {
  font-size: 20px;
  margin-bottom: 3px;
  transition: all 0.3s ease;
}

.bottom-navbar a:hover i {
  transform: scale(1.2) rotate(5deg);
  filter: drop-shadow(0 4px 8px rgba(255, 222, 89, 0.5));
}

.bottom-navbar img {
  width: 22px;
  height: 22px;
  transition: all 0.3s ease;
  filter: brightness(0) invert(1);
  margin-bottom: 3px;
}

.bottom-navbar a:hover img {
  transform: scale(1.2) rotate(5deg);
  filter: brightness(0) invert(1) drop-shadow(0 4px 8px rgba(255, 222, 89, 0.5));
}

.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;
}
.login-credentials{
  height: 100vh;
}
/* 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: #e4b13b21 !important;
    border: 0 !important;
  }

  /* Next button base */
  a[rel="next"] {
    padding: 4px 14px !important;
    border-radius: 6px;
    cursor: pointer;
    color: var(--white);
    background-color: #e4b13b21 !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: #e4b13b21 !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;
    }
  }

}


/* PREMIUM ANIMATIONS AND EFFECTS */

/* Floating animation for cards */
@keyframes float {

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

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

.dashboard-card:hover {
  animation: float 3s ease-in-out infinite;
}

/* Glow effect for important elements */
@keyframes glow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(4, 225, 249, 0.3);
  }

  50% {
    box-shadow: 0 0 30px rgba(4, 225, 249, 0.6);
  }
}

/* Shimmer effect */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}

.shimmer {
  background: linear-gradient(90deg, transparent 0%, rgba(4, 225, 249, 0.2) 50%, transparent 100%);
  background-size: 1000px 100%;
  animation: shimmer 3s infinite;
}

/* Pulse animation */
@keyframes pulse {

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

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

/* Slide in from bottom */
@keyframes slideInBottom {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.summary-card {
  animation: slideInBottom 0.6s ease-out;
}

/* Fade in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.dashboard-card {
  animation: fadeIn 0.8s ease-in;
}

/* Rotate animation for icons */
@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.dashboard-card-icon:hover img {
  animation: rotate360 0.6s ease-in-out;
}

/* Neon border effect */
.neon-border {
  border: 2px solid rgba(4, 225, 249, 0.5);
  box-shadow:
    0 0 10px rgba(4, 225, 249, 0.3),
    inset 0 0 10px rgba(4, 225, 249, 0.1);
  animation: neonPulse 2s ease-in-out infinite;
}

@keyframes neonPulse {

  0%,
  100% {
    border-color: rgba(4, 225, 249, 0.5);
    box-shadow:
      0 0 10px rgba(4, 225, 249, 0.3),
      inset 0 0 10px rgba(4, 225, 249, 0.1);
  }

  50% {
    border-color: rgba(4, 225, 249, 0.8);
    box-shadow:
      0 0 20px rgba(4, 225, 249, 0.6),
      inset 0 0 20px rgba(4, 225, 249, 0.2);
  }
}

/* Gradient text animation */
.gradient-text {
  background: linear-gradient(90deg, #04E1F9 0%, #FFDE59 50%, #04E1F9 100%);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% center;
  }

  50% {
    background-position: 100% center;
  }
}

/* Scale on hover */
.scale-hover {
  transition: transform 0.3s ease;
}

.scale-hover:hover {
  transform: scale(1.05);
}

/* Smooth transitions for all interactive elements */
* {
  transition: color 0.3s ease, background 0.3s ease, border 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}


/* ========================================
   DASHBOARD REDESIGN - PREMIUM STYLES
   ======================================== */

/* Premium Welcome Banner */
.premium-welcome-banner {
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0d1128 100%);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(4, 225, 249, 0.3);
  box-shadow: 0 10px 40px rgba(4, 225, 249, 0.2);
  transition: all 0.4s ease;
}

.premium-welcome-banner:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(4, 225, 249, 0.3);
  border-color: rgba(4, 225, 249, 0.5);
}

.welcome-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(4, 225, 249, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 222, 89, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}


.welcome-left-section {
  display: flex;
  align-items: center;
  gap: 25px;
  flex: 1;
}

/* ========================================
   DASHBOARD REDESIGN - PREMIUM STYLES
   ======================================== */

/* Premium Welcome Banner */
.premium-welcome-banner {
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0d1128 100%);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(4, 225, 249, 0.3);
  box-shadow: 0 10px 40px rgba(4, 225, 249, 0.2);
  transition: all 0.4s ease;
}

.premium-welcome-banner:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(4, 225, 249, 0.3);
  border-color: rgba(4, 225, 249, 0.5);
}

.welcome-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(4, 225, 249, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 222, 89, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.welcome-content-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  margin-top:24px;
}

.welcome-left-section {
  display: flex;
  align-items: center;
  gap: 25px;
  flex: 1;
}

.welcome-icon-container {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.robot-pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid rgba(4, 225, 249, 0.5);
  border-radius: 50%;
  animation: pulseRing 2s ease-out infinite;
}

.robot-pulse-ring.delay-1 {
  animation-delay: 1s;
}

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

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

.welcome-robot-emoji {
  font-size: 48px;
  animation: robotBounce 3s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.welcome-text-section {
  flex: 1;
}

.welcome-title {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  background: linear-gradient(90deg, #04E1F9 0%, #FFDE59 50%, #04E1F9 100%);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 4s ease infinite;
  margin-bottom: 8px;
}

.welcome-subtitle {
  font-size: 16px;
  color: var(--textLight);
  margin-bottom: 20px;
  font-weight: 500;
}

.welcome-dates {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.date-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.date-label {
  color: var(--grayColor);
  font-weight: 500;
}

.date-value {
  color: var(--themeColor);
  font-weight: 600;
}

/* Staking Display Card */
.welcome-right-section {
  flex-shrink: 0;
}

.staking-display-card {
  background: linear-gradient(135deg, rgba(4, 225, 249, 0.15) 0%, rgba(0, 74, 144, 0.15) 100%);
  border: 2px solid rgba(4, 225, 249, 0.4);
  border-radius: 20px;
  padding: 25px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
  min-width: 280px;
  transition: all 0.4s ease;
}

.staking-display-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(4, 225, 249, 0.4);
}

.staking-icon {
  font-size: 48px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

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

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

.staking-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.staking-label {
  font-size: 14px;
  color: var(--textLight);
  font-weight: 500;
}

.staking-amount {
  font-size: 28px;
  font-weight: 700;
  color: #04E1F9;
  text-shadow: 0 0 20px rgba(4, 225, 249, 0.5);
}

.staking-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(4, 225, 249, 0.2) 0%, transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowPulse {

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

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

/* Robot Decoration */
.robot-decoration {
  position: absolute;
  bottom: -20px;
  right: 20px;
  width: 120px;
  height: 120px;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.robot-vector-small {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 10px rgba(4, 225, 249, 0.3));
  animation: robotFloat 4s ease-in-out infinite;
}

/* Referral Link Card */
.referral-link-card {
  background: linear-gradient(135deg, rgba(13, 17, 40, 0.9) 0%, rgba(26, 31, 58, 0.9) 100%);
  border-radius: 20px;
  padding: 30px;
  border: 2px solid rgba(4, 225, 249, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.referral-link-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(4, 225, 249, 0.1), transparent);
  transition: left 0.6s ease;
}

.referral-link-card:hover::before {
  left: 100%;
}

.referral-link-card:hover {
  border-color: rgba(4, 225, 249, 0.4);
  box-shadow: 0 8px 30px rgba(4, 225, 249, 0.2);
}

.referral-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.referral-icon {
  font-size: 32px;
  animation: rotate 10s linear infinite;
}

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

  to {
    transform: rotate(360deg);
  }
}

.referral-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}

.referral-input-wrapper {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}

.referral-input {
  flex: 1;
  min-width: 250px;
  background: rgba(4, 225, 249, 0.05);
  border: 2px solid rgba(4, 225, 249, 0.3);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--textLight);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.referral-input:focus {
  outline: none;
  border-color: var(--themeColor);
  box-shadow: 0 0 20px rgba(4, 225, 249, 0.3);
  background: rgba(4, 225, 249, 0.1);
}

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

.referral-btn {
  background: linear-gradient(135deg, #04E1F9 0%, #004A90 100%);
  border: none;
  border-radius: 12px;
  padding: 14px 24px;
  color: white;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  bottom: -25px;
}

.referral-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.referral-btn:hover::before {
  width: 300%;
  height: 300%;
}


.referral-btn:hover {
  /* transform: scale(1.06); */
  box-shadow: 0 8px 25px rgba(4, 225, 249, 0.5);
}


.btn-icon {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

/* User Details Premium Card */
.user-details-premium-card {
  background: linear-gradient(135deg, rgba(13, 17, 40, 0.9) 0%, rgba(26, 31, 58, 0.9) 100%);
  border-radius: 20px;
  border: 2px solid rgba(4, 225, 249, 0.2);
  overflow: hidden;
  transition: all 0.4s ease;
}

.user-details-premium-card:hover {
  border-color: rgba(4, 225, 249, 0.4);
  box-shadow: 0 10px 35px rgba(4, 225, 249, 0.25);
  transform: translateY(-3px);
}

/* User Details Compact Card - New Design */
.user-details-compact-card {
  background: linear-gradient(135deg, rgba(13, 17, 40, 0.9) 0%, rgba(26, 31, 58, 0.9) 100%);
  border-radius: 20px;
  border: 2px solid rgba(4, 225, 249, 0.2);
  padding: 25px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.user-details-compact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(4, 225, 249, 0.1), transparent);
  transition: left 0.6s ease;
}

.user-details-compact-card:hover::before {
  left: 100%;
}

.user-details-compact-card:hover {
  border-color: rgba(4, 225, 249, 0.4);
  box-shadow: 0 10px 35px rgba(4, 225, 249, 0.25);
  transform: translateY(-3px);
}

.user-compact-header {
  display: flex;
  align-items: center;
  gap: 20px;
     margin-bottom: 18px;
    padding-bottom: 18px;
  border-bottom: 1px solid rgba(4, 225, 249, 0.2);
}

.user-avatar-compact {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid rgba(4, 225, 249, 0.5);
  padding: 3px;
  background: linear-gradient(135deg, rgba(4, 225, 249, 0.2) 0%, rgba(0, 74, 144, 0.2) 100%);
  box-shadow: 0 0 25px rgba(4, 225, 249, 0.4);
  position: relative;
  transition: all 0.3s ease;
}

.user-avatar-compact img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.user-avatar-compact:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(4, 225, 249, 0.6);
}

.avatar-status-badge {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, #10B80D 0%, #0A7808 100%);
  border-radius: 50%;
  border: 3px solid rgba(13, 17, 40, 0.9);
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(16, 184, 13, 0.7);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(16, 184, 13, 0);
  }
}

.user-info-compact {
  flex: 1;
}

.user-name-compact {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 5px 0;
  text-shadow: 0 0 10px rgba(4, 225, 249, 0.3);
}

.user-role-compact {
  font-size: 13px;
  color: var(--themeColor);
  margin: 0;
  font-weight: 500;
}

.user-details-grid-compact {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.detail-item-compact {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(4, 225, 249, 0.05);
  border: 1px solid rgba(4, 225, 249, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.detail-item-compact::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #04E1F9 0%, #004A90 100%);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.detail-item-compact:hover::before {
  transform: scaleY(1);
}

.detail-item-compact:hover {
  background: rgba(4, 225, 249, 0.1);
  border-color: rgba(4, 225, 249, 0.4);
  transform: translateX(5px);
}

.detail-icon-compact {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(4, 225, 249, 0.2) 0%, rgba(0, 74, 144, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(4, 225, 249, 0.3);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.detail-item-compact:hover .detail-icon-compact {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 0 20px rgba(4, 225, 249, 0.4);
}

.detail-content-compact {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.detail-label-compact {
  font-size: 12px;
  color: var(--grayColor);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-value-compact {
  font-size: 16px;
  color: var(--white);
  font-weight: 700;
}

.user-card-footer-compact {
  display: flex;
  justify-content: center;
}

.view-profile-link-compact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  background: linear-gradient(135deg, #04E1F9 0%, #004A90 100%);
  border-radius: 12px;
  color: white;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.view-profile-link-compact::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;
}

.view-profile-link-compact:hover::before {
  left: 100%;
}

.view-profile-link-compact:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(4, 225, 249, 0.5);
  color: white;
}

.view-profile-link-compact svg {
  transition: transform 0.3s ease;
}

.view-profile-link-compact:hover svg {
  transform: translateX(5px);
}

.user-card-header {
  background: linear-gradient(90deg, #04E1F9 0%, #004A90 100%);
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-icon {
  font-size: 28px;
}

.header-title {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin: 0;
}

.user-card-body {
  padding: 35px 30px;
}

.user-avatar-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.user-avatar-wrapper {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid rgba(4, 225, 249, 0.5);
  padding: 5px;
  background: linear-gradient(135deg, rgba(4, 225, 249, 0.2) 0%, rgba(0, 74, 144, 0.2) 100%);
  box-shadow: 0 0 30px rgba(4, 225, 249, 0.4);
  animation: avatarGlow 3s ease-in-out infinite;
  transition: all 0.3s ease;
}

.user-avatar-wrapper:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 40px rgba(4, 225, 249, 0.6);
}

.user-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.user-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--themeColor);
  margin: 0;
  text-shadow: 0 0 15px rgba(4, 225, 249, 0.3);
}

.user-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 25px;
}

.info-item {
  background: rgba(4, 225, 249, 0.05);
  border: 1px solid rgba(4, 225, 249, 0.2);
  border-radius: 12px;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.3s ease;
}

.info-item:hover {
  background: rgba(4, 225, 249, 0.1);
  border-color: rgba(4, 225, 249, 0.4);
  transform: translateY(-2px);
}

.info-label {
  font-size: 13px;
  color: var(--grayColor);
  font-weight: 500;
}

.info-value {
  font-size: 18px;
  color: var(--themeColor);
  font-weight: 700;
}

.user-card-footer {
  display: flex;
  justify-content: center;
}

.view-profile-btn {
  background: linear-gradient(135deg, #04E1F9 0%, #004A90 100%);
  border: none;
  border-radius: 12px;
  padding: 14px 35px;
  color: white;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.view-profile-btn::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;
}

.view-profile-btn:hover::before {
  left: 100%;
}

.view-profile-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(4, 225, 249, 0.5);
}

.view-profile-btn svg {
  transition: transform 0.3s ease;
}

.view-profile-btn:hover svg {
  transform: translateX(5px);
}

/* Mining Action Cards */
.mining-action-card {
  background: linear-gradient(135deg, rgba(4, 225, 249, 0.1) 0%, rgba(0, 74, 144, 0.1) 100%);
  border: 2px solid rgba(4, 225, 249, 0.3);
  border-radius: 20px;
  padding: 35px 30px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.mining-action-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 0%, rgba(4, 225, 249, 0.1) 50%, transparent 100%);
  animation: cardSpin 10s linear infinite;
}

.mining-action-card:hover {
  transform: translateY(-8px);
  border-color: rgba(4, 225, 249, 0.6);
  box-shadow: 0 15px 45px rgba(4, 225, 249, 0.3);
}

.mining-action-card.earn-card {
  background: linear-gradient(135deg, rgba(255, 222, 89, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
  border-color: rgba(255, 222, 89, 0.3);
}

.mining-action-card.earn-card:hover {
  border-color: rgba(255, 222, 89, 0.6);
  box-shadow: 0 15px 45px rgba(255, 222, 89, 0.3);
}

.mining-card-icon {
  font-size: 64px;
  margin-bottom: 20px;
  animation: iconBounce 2s ease-in-out infinite;
}

.mining-card-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.mining-card-desc {
  font-size: 14px;
  color: var(--textLight);
  margin-bottom: 25px;
}

.mining-action-btn {
  background: linear-gradient(135deg, #04E1F9 0%, #004A90 100%);
  border: none;
  border-radius: 12px;
  padding: 14px 30px;
  color: white;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mining-action-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.mining-action-btn:hover::before {
  width: 300%;
  height: 300%;
}

.mining-action-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(4, 225, 249, 0.5);
}

.mining-action-btn svg {
  transition: transform 0.3s ease;
}

.mining-action-btn:hover svg {
  transform: translateX(5px);
}

/* Mining Minimal Cards - New Design */
.mining-minimal-card {
  background: linear-gradient(135deg, rgba(4, 225, 249, 0.1) 0%, rgba(0, 74, 144, 0.15) 100%);
  border: 2px solid rgba(4, 225, 249, 0.3);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  min-height: 140px;
}

.mining-minimal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(4, 225, 249, 0.2), transparent);
  transition: left 0.6s ease;
}

.mining-minimal-card:hover::before {
  left: 100%;
}

.mining-minimal-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(4, 225, 249, 0.1) 0%, transparent 70%);
  animation: cardPulse 8s ease-in-out infinite;
}

@keyframes cardPulse {

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

  50% {
    transform: scale(1.2) rotate(180deg);
    opacity: 0.8;
  }
}

.mining-minimal-card:hover {
  transform: translateY(-5px);
  border-color: rgba(4, 225, 249, 0.6);
  box-shadow: 0 15px 45px rgba(4, 225, 249, 0.4);
}

.mining-minimal-card.earn-minimal-card {
  background: linear-gradient(135deg, rgba(255, 222, 89, 0.1) 0%, rgba(255, 165, 0, 0.15) 100%);
  border-color: rgba(255, 222, 89, 0.3);
}

.mining-minimal-card.earn-minimal-card::after {
  background: radial-gradient(circle, rgba(255, 222, 89, 0.1) 0%, transparent 70%);
}

.mining-minimal-card.earn-minimal-card:hover {
  border-color: rgba(255, 222, 89, 0.6);
  box-shadow: 0 15px 45px rgba(255, 222, 89, 0.4);
}

.mining-minimal-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.mining-minimal-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 8px 0;
  text-shadow: 0 2px 10px rgba(4, 225, 249, 0.3);
  line-height: 1.2;
}

.mining-minimal-subtitle {
  font-size: 14px;
  color: var(--textLight);
  margin: 0;
  font-weight: 500;
  opacity: 0.9;
}

.mining-minimal-btn {
  background: linear-gradient(135deg, #04E1F9 0%, #004A90 100%);
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  color: white;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(4, 225, 249, 0.3);
}

.mining-minimal-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.mining-minimal-btn:hover::before {
  width: 300%;
  height: 300%;
}

.mining-minimal-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(4, 225, 249, 0.6);
}

.mining-minimal-btn svg {
  transition: transform 0.3s ease;
}

.mining-minimal-btn:hover svg {
  transform: translateX(5px);
}

/* Responsive for Mining Minimal Cards */
@media (max-width: 576px) {
  .mining-minimal-card {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
  }

  .mining-minimal-title {
    font-size: 22px;
  }

  .mining-minimal-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Status Mini Cards */
.status-mini-card {
  background: linear-gradient(135deg, rgba(13, 17, 40, 0.8) 0%, rgba(26, 31, 58, 0.8) 100%);
  border: 2px solid rgba(4, 225, 249, 0.2);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.status-mini-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(4, 225, 249, 0.1), transparent);
  transition: left 0.6s ease;
}

.status-mini-card:hover::before {
  left: 100%;
}

.status-mini-card:hover {
  transform: translateY(-5px);
  border-color: rgba(4, 225, 249, 0.4);
  box-shadow: 0 10px 30px rgba(4, 225, 249, 0.25);
}

.status-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(4, 225, 249, 0.2) 0%, rgba(0, 74, 144, 0.2) 100%);
  border: 2px solid rgba(4, 225, 249, 0.3);
  transition: all 0.3s ease;
}

.status-icon-wrapper.green-theme {
  background: linear-gradient(135deg, rgba(16, 184, 13, 0.2) 0%, rgba(10, 120, 8, 0.2) 100%);
  border-color: rgba(16, 184, 13, 0.3);
}

.status-icon-wrapper.cyan-theme {
  background: linear-gradient(135deg, rgba(4, 225, 249, 0.2) 0%, rgba(0, 74, 144, 0.2) 100%);
  border-color: rgba(4, 225, 249, 0.3);
}

.status-icon-wrapper.blue-theme {
  background: linear-gradient(135deg, rgba(0, 74, 144, 0.2) 0%, rgba(0, 40, 80, 0.2) 100%);
  border-color: rgba(0, 74, 144, 0.3);
}

.status-icon-wrapper.yellow-theme {
  background: linear-gradient(135deg, rgba(255, 222, 89, 0.2) 0%, rgba(255, 165, 0, 0.2) 100%);
  border-color: rgba(255, 222, 89, 0.3);
}

.status-mini-card:hover .status-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(4, 225, 249, 0.4);
}

.status-info {
  flex: 1;
}

.status-label {
  font-size: 13px;
  color: var(--grayColor);
  font-weight: 500;
  margin-bottom: 5px;
}

.status-value {
  font-size: 20px;
  color: var(--themeColor);
  font-weight: 700;
  margin: 0;
}

.status-value.green {
  color: #10B80D;
}

/* Status Modern Cards - New Design */
.status-modern-card {
  background: linear-gradient(135deg, rgba(13, 17, 40, 0.9) 0%, rgba(26, 31, 58, 0.9) 100%);
  border: 2px solid rgba(4, 225, 249, 0.3);
  border-radius: 18px;
  padding: 25px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.status-modern-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(4, 225, 249, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.status-modern-card:hover::before {
  opacity: 1;
}

.status-modern-card:hover {
  transform: translateY(-8px);
  border-color: rgba(4, 225, 249, 0.6);
  box-shadow: 0 15px 40px rgba(4, 225, 249, 0.3);
}

.status-modern-card.green-card {
  border-color: rgba(16, 184, 13, 0.3);
}

.status-modern-card.green-card:hover {
  border-color: rgba(16, 184, 13, 0.6);
  box-shadow: 0 15px 40px rgba(16, 184, 13, 0.3);
}

.status-modern-card.green-card::before {
  background: radial-gradient(circle at top right, rgba(16, 184, 13, 0.1) 0%, transparent 70%);
}

.status-modern-card.cyan-card {
  border-color: rgba(4, 225, 249, 0.3);
}

.status-modern-card.cyan-card:hover {
  border-color: rgba(4, 225, 249, 0.6);
  box-shadow: 0 15px 40px rgba(4, 225, 249, 0.3);
}

.status-modern-card.blue-card {
  border-color: rgba(0, 74, 144, 0.3);
}

.status-modern-card.blue-card:hover {
  border-color: rgba(0, 74, 144, 0.6);
  box-shadow: 0 15px 40px rgba(0, 74, 144, 0.3);
}

.status-modern-card.blue-card::before {
  background: radial-gradient(circle at top right, rgba(0, 74, 144, 0.1) 0%, transparent 70%);
}

.status-modern-card.yellow-card {
  border-color: rgba(255, 222, 89, 0.3);
}

.status-modern-card.yellow-card:hover {
  border-color: rgba(255, 222, 89, 0.6);
  box-shadow: 0 15px 40px rgba(255, 222, 89, 0.3);
}

.status-modern-card.yellow-card::before {
  background: radial-gradient(circle at top right, rgba(255, 222, 89, 0.1) 0%, transparent 70%);
}

.status-modern-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.status-modern-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(4, 225, 249, 0.15) 0%, rgba(0, 74, 144, 0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(4, 225, 249, 0.3);
  transition: all 0.3s ease;
}

.green-card .status-modern-icon {
  background: linear-gradient(135deg, rgba(16, 184, 13, 0.15) 0%, rgba(10, 120, 8, 0.15) 100%);
  border-color: rgba(16, 184, 13, 0.3);
}

.cyan-card .status-modern-icon {
  background: linear-gradient(135deg, rgba(4, 225, 249, 0.15) 0%, rgba(0, 74, 144, 0.15) 100%);
  border-color: rgba(4, 225, 249, 0.3);
}

.blue-card .status-modern-icon {
  background: linear-gradient(135deg, rgba(0, 74, 144, 0.15) 0%, rgba(0, 40, 80, 0.15) 100%);
  border-color: rgba(0, 74, 144, 0.3);
}

.yellow-card .status-modern-icon {
  background: linear-gradient(135deg, rgba(255, 222, 89, 0.15) 0%, rgba(255, 165, 0, 0.15) 100%);
  border-color: rgba(255, 222, 89, 0.3);
}

.status-modern-card:hover .status-modern-icon {
  transform: rotate(-10deg) scale(1.1);
  box-shadow: 0 0 20px rgba(4, 225, 249, 0.4);
}

.status-badge-active {
  background: linear-gradient(135deg, #10B80D 0%, #0A7808 100%);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 10px rgba(16, 184, 13, 0.4);
  animation: badgePulse 2s ease-in-out infinite;
}

.status-badge-count {
  background: linear-gradient(135deg, rgba(4, 225, 249, 0.2) 0%, rgba(0, 74, 144, 0.2) 100%);
  color: var(--themeColor);
  font-size: 13px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(4, 225, 249, 0.3);
  min-width: 45px;
  text-align: center;
}

.cyan-card .status-badge-count {
  color: #04E1F9;
  border-color: rgba(4, 225, 249, 0.3);
}

.blue-card .status-badge-count {
  background: linear-gradient(135deg, rgba(0, 74, 144, 0.2) 0%, rgba(0, 40, 80, 0.2) 100%);
  color: #0066CC;
  border-color: rgba(0, 74, 144, 0.3);
}

.yellow-card .status-badge-count {
  background: linear-gradient(135deg, rgba(255, 222, 89, 0.2) 0%, rgba(255, 165, 0, 0.2) 100%);
  color: #FFDE59;
  border-color: rgba(255, 222, 89, 0.3);
}

.status-modern-body {
  margin-bottom: 15px;
}

.status-modern-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 8px 0;
  text-shadow: 0 2px 10px rgba(4, 225, 249, 0.3);
  line-height: 1;
}

.green-card .status-modern-value {
  color: #10B80D;
  text-shadow: 0 2px 10px rgba(16, 184, 13, 0.3);
}

.cyan-card .status-modern-value {
  color: #04E1F9;
  text-shadow: 0 2px 10px rgba(4, 225, 249, 0.3);
}

.blue-card .status-modern-value {
  color: #0066CC;
  text-shadow: 0 2px 10px rgba(0, 74, 144, 0.3);
}

.yellow-card .status-modern-value {
  color: #FFDE59;
  text-shadow: 0 2px 10px rgba(255, 222, 89, 0.3);
}

.status-modern-label {
  font-size: 13px;
  color: var(--grayColor);
  margin: 0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-modern-footer {
  position: relative;
  height: 4px;
  background: rgba(4, 225, 249, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.status-progress-line {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #04E1F9 0%, #004A90 100%);
  border-radius: 4px;
  animation: progressSlide 2s ease-in-out infinite;
}

.green-card .status-progress-line {
  background: linear-gradient(90deg, #10B80D 0%, #0A7808 100%);
}

.cyan-card .status-progress-line {
  background: linear-gradient(90deg, #04E1F9 0%, #004A90 100%);
}

.blue-card .status-progress-line {
  background: linear-gradient(90deg, #0066CC 0%, #004A90 100%);
}

.yellow-card .status-progress-line {
  background: linear-gradient(90deg, #FFDE59 0%, #FF8C00 100%);
}

@keyframes progressSlide {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

/* Responsive for Status Modern Cards */
@media (max-width: 576px) {
  .status-modern-card {
    padding: 20px;
  }

  .status-modern-value {
    font-size: 28px;
  }
}

/* Wallet Accordion Card */
.wallet-accordion-card {
  background: linear-gradient(135deg, rgba(13, 17, 40, 0.9) 0%, rgba(26, 31, 58, 0.9) 100%);
  border-radius: 20px;
  border: 2px solid rgba(4, 225, 249, 0.2);
  overflow: hidden;
  transition: all 0.4s ease;
}

.wallet-accordion-card:hover {
  border-color: rgba(4, 225, 249, 0.4);
  box-shadow: 0 10px 35px rgba(4, 225, 249, 0.25);
  transform: translateY(-3px);
}

.accordion-card-header {
  background: linear-gradient(90deg, #04E1F9 0%, #004A90 100%);
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-icon-badge {
  font-size: 28px;
}

.accordion-title {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin: 0;
}

.accordion-card-body {
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.wallet-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 20px;
  background: rgba(4, 225, 249, 0.05);
  border: 1px solid rgba(4, 225, 249, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.wallet-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #04E1F9 0%, #004A90 100%);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.wallet-item:hover::before {
  transform: scaleY(1);
}

.wallet-item:hover {
  background: rgba(4, 225, 249, 0.1);
  border-color: rgba(4, 225, 249, 0.4);
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(4, 225, 249, 0.2);
}

.wallet-item-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(4, 225, 249, 0.2) 0%, rgba(0, 74, 144, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(4, 225, 249, 0.3);
  transition: all 0.3s ease;
}

.wallet-item:hover .wallet-item-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(4, 225, 249, 0.4);
}

.wallet-item-info {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.wallet-label {
  font-size: 15px;
  color: var(--textLight);
  font-weight: 500;
}

.wallet-amount {
  font-size: 18px;
  color: var(--themeColor);
  font-weight: 700;
  text-shadow: 0 0 10px rgba(4, 225, 249, 0.3);
}

/* Income Cards Stack */


.income-stack-card {
  background: linear-gradient(135deg, #04E1F9 0%, #004A90 100%);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
  height: 100%;
}

.income-stack-card::before {
     content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: cardRotate 10s linear infinite;
}

.income-stack-card:hover {
  transform: translateX(10px) scale(1.02);
  box-shadow: 0 10px 35px rgba(4, 225, 249, 0.4);
  border-color: rgba(255, 255, 255, 0.4);
}

.income-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.income-stack-card:hover .income-card-icon {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
}

.income-card-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.income-card-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin-bottom: 5px;
}

.income-card-value {
  font-size: 24px;
  color: white;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.income-card-arrow {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.income-stack-card:hover .income-card-arrow {
  transform: translateX(10px);
  color: white;
}

/* Limit Flip Cards */
.limit-flip-card {
  background: linear-gradient(135deg, rgba(13, 17, 40, 0.9) 0%, rgba(26, 31, 58, 0.9) 100%);
  border-radius: 20px;
  border: 2px solid rgba(4, 225, 249, 0.3);
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

.limit-flip-card:hover {
  transform: translateY(-5px);
  border-color: rgba(4, 225, 249, 0.5);
  box-shadow: 0 15px 45px rgba(4, 225, 249, 0.3);
}

.limit-flip-card.three-x-card {
  border-color: rgba(255, 222, 89, 0.3);
}

.limit-flip-card.three-x-card:hover {
  border-color: rgba(255, 222, 89, 0.5);
  box-shadow: 0 15px 45px rgba(255, 222, 89, 0.3);
}

.limit-card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #04E1F9 0%, #004A90 100%);
  color: white;
  font-size: 20px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(4, 225, 249, 0.4);
  animation: badgePulse 2s ease-in-out infinite;
}

.limit-card-badge.three-x {
  background: linear-gradient(135deg, #FFDE59 0%, #FF8C00 100%);
  box-shadow: 0 4px 15px rgba(255, 222, 89, 0.4);
}

@keyframes badgePulse {

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

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

.limit-card-header {
  background: linear-gradient(90deg, rgba(4, 225, 249, 0.2) 0%, rgba(0, 74, 144, 0.2) 100%);
  padding: 25px 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.limit-header-icon {
  font-size: 32px;
}

.limit-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.limit-card-body {
  padding: 30px;
}

.limit-stat-row {
  margin-bottom: 20px;
}

.limit-stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-icon-wrapper {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(4, 225, 249, 0.2) 0%, rgba(0, 74, 144, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(4, 225, 249, 0.3);
  transition: all 0.3s ease;
}

.limit-flip-card:hover .stat-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(4, 225, 249, 0.4);
}

.stat-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.stat-label {
  font-size: 14px;
  color: var(--grayColor);
  font-weight: 500;
}

.stat-value {
  font-size: 24px;
  color: var(--themeColor);
  font-weight: 700;
  text-shadow: 0 0 15px rgba(4, 225, 249, 0.3);
}

.stat-value.remaining {
  color: #FFDE59;
  text-shadow: 0 0 15px rgba(255, 222, 89, 0.3);
}

.limit-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(4, 225, 249, 0.3) 50%, transparent 100%);
  margin: 20px 0;
}

.limit-card-footer {
  padding: 20px 30px;
  background: rgba(4, 225, 249, 0.05);
  border-top: 1px solid rgba(4, 225, 249, 0.2);
}

.progress-bar-wrapper {
  width: 100%;
  height: 10px;
  background: rgba(4, 225, 249, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
  position: relative;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #04E1F9 0%, #FFDE59 100%);
  border-radius: 10px;
  transition: width 1s ease;
  box-shadow: 0 0 15px rgba(4, 225, 249, 0.6);
  animation: progressGlow 2s ease-in-out infinite;
}

@keyframes progressGlow {

  0%,
  100% {
    box-shadow: 0 0 15px rgba(4, 225, 249, 0.6);
  }

  50% {
    box-shadow: 0 0 25px rgba(4, 225, 249, 0.9);
  }
}

.progress-text {
  font-size: 13px;
  color: var(--textLight);
  font-weight: 600;
  text-align: center;
  display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
  .welcome-content-wrapper {
    flex-direction: column;
  }

  .welcome-left-section {
    flex-direction: column;
    text-align: center;
  }



  .referral-input-wrapper {
    flex-direction: column;
  }

  .referral-input {
    width: 100%;
  }

  .referral-actions {
    width: 100%;
    justify-content: center;
  }

  .user-info-grid {
    grid-template-columns: 1fr;
  }

  .wallet-item-info {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .premium-welcome-banner {
    padding: 25px 20px;
  }

  .welcome-title {
    font-size: 22px;
  }

  .staking-amount {
    font-size: 24px;
  }

  .mining-card-icon {
    font-size: 48px;
  }

  .status-mini-card {
    flex-direction: column;
    text-align: center;
  }
}


/* ========================================
   WALLET MODERN DESIGN - NEW GRID LAYOUT
   ======================================== */

.wallet-modern-container {
  background: linear-gradient(135deg, rgba(13, 17, 40, 0.9) 0%, rgba(26, 31, 58, 0.9) 100%);
  border-radius: 20px;
  border: 2px solid rgba(4, 225, 249, 0.2);
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

.wallet-modern-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(4, 225, 249, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.wallet-modern-container:hover {
  border-color: rgba(4, 225, 249, 0.4);
  box-shadow: 0 10px 35px rgba(4, 225, 249, 0.25);
  transform: translateY(-3px);
}

.wallet-modern-header {
  background: linear-gradient(135deg, rgba(4, 225, 249, 0.15) 0%, rgba(0, 74, 144, 0.15) 100%);
  padding: 20px 25px;
  border-bottom: 2px solid rgba(4, 225, 249, 0.2);
  position: relative;
  z-index: 1;
}

.wallet-header-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.wallet-header-icon {
  font-size: 32px;
  animation: walletIconFloat 3s ease-in-out infinite;
}

@keyframes walletIconFloat {

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

  50% {
    transform: translateY(-5px) rotate(5deg);
  }
}

.wallet-modern-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  text-shadow: 0 2px 10px rgba(4, 225, 249, 0.3);
}

.wallet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding: 25px;
  position: relative;
  z-index: 1;
}

.wallet-grid-item {
  background: linear-gradient(135deg, rgba(4, 225, 249, 0.05) 0%, rgba(0, 74, 144, 0.05) 100%);
  border: 2px solid rgba(4, 225, 249, 0.2);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.wallet-grid-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(4, 225, 249, 0.1), transparent);
  transition: left 0.6s ease;
}

.wallet-grid-item:hover::before {
  left: 100%;
}

.wallet-grid-item:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(4, 225, 249, 0.5);
  box-shadow: 0 8px 25px rgba(4, 225, 249, 0.3);
}

/* Income Items - Cyan Theme */
.wallet-grid-item.income-item {
  border-color: rgba(4, 225, 249, 0.3);
}

.wallet-grid-item.income-item:hover {
  border-color: rgba(4, 225, 249, 0.6);
  box-shadow: 0 8px 25px rgba(4, 225, 249, 0.4);
}

.wallet-grid-item.income-item .wallet-grid-icon {
  background: linear-gradient(135deg, rgba(4, 225, 249, 0.2) 0%, rgba(0, 74, 144, 0.2) 100%);
  border-color: rgba(4, 225, 249, 0.4);
}

.wallet-grid-item.income-item .wallet-grid-value {
  color: #04E1F9;
  text-shadow: 0 0 15px rgba(4, 225, 249, 0.5);
}

/* Withdrawal Items - Yellow Theme */
.wallet-grid-item.withdrawal-item {
  border-color: rgba(255, 222, 89, 0.3);
}

.wallet-grid-item.withdrawal-item:hover {
  border-color: rgba(255, 222, 89, 0.6);
  box-shadow: 0 8px 25px rgba(255, 222, 89, 0.4);
}

.wallet-grid-item.withdrawal-item .wallet-grid-icon {
  background: linear-gradient(135deg, rgba(255, 222, 89, 0.2) 0%, rgba(255, 165, 0, 0.2) 100%);
  border-color: rgba(255, 222, 89, 0.4);
}

.wallet-grid-item.withdrawal-item .wallet-grid-value {
  color: #FFDE59;
  text-shadow: 0 0 15px rgba(255, 222, 89, 0.5);
}

/* Total Item - Green Theme */
.wallet-grid-item.total-item {
  border-color: rgba(16, 184, 13, 0.3);
}

.wallet-grid-item.total-item:hover {
  border-color: rgba(16, 184, 13, 0.6);
  box-shadow: 0 8px 25px rgba(16, 184, 13, 0.4);
}

.wallet-grid-item.total-item .wallet-grid-icon {
  background: linear-gradient(135deg, rgba(16, 184, 13, 0.2) 0%, rgba(10, 120, 8, 0.2) 100%);
  border-color: rgba(16, 184, 13, 0.4);
}

.wallet-grid-item.total-item .wallet-grid-value {
  color: #10B80D;
  text-shadow: 0 0 15px rgba(16, 184, 13, 0.5);
}

/* Top Up Item - Purple Theme */
.wallet-grid-item.topup-item {
  border-color: rgba(138, 43, 226, 0.3);
}

.wallet-grid-item.topup-item:hover {
  border-color: rgba(138, 43, 226, 0.6);
  box-shadow: 0 8px 25px rgba(138, 43, 226, 0.4);
}

.wallet-grid-item.topup-item .wallet-grid-icon {
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.2) 0%, rgba(75, 0, 130, 0.2) 100%);
  border-color: rgba(138, 43, 226, 0.4);
}

.wallet-grid-item.topup-item .wallet-grid-value {
  color: #9370DB;
  text-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
}

.wallet-grid-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(4, 225, 249, 0.15) 0%, rgba(0, 74, 144, 0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(4, 225, 249, 0.3);
  transition: all 0.3s ease;
}

.wallet-grid-icon img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(16deg) brightness(105%) contrast(101%);
}

.status-modern-icon img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(16deg) brightness(105%) contrast(101%);
}

.stat-icon-wrapper img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(16deg) brightness(105%) contrast(101%);
}

.wallet-grid-item:hover .wallet-grid-icon {
  transform: rotate(-10deg) scale(1.1);
  box-shadow: 0 0 20px rgba(4, 225, 249, 0.5);
}

.wallet-grid-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wallet-grid-label {
  font-size: 13px;
  color: var(--grayColor);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wallet-grid-value {
  font-size: 22px;
  color: var(--themeColor);
  font-weight: 700;
  text-shadow: 0 0 15px rgba(4, 225, 249, 0.4);
  line-height: 1;
}

/* Responsive for Wallet Grid */
@media (max-width: 768px) {
  .wallet-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .wallet-modern-header {
    padding: 18px 20px;
  }

  .wallet-modern-title {
    font-size: 18px;
  }

  .wallet-grid-item {
    padding: 15px;
  }

  .wallet-grid-value {
    font-size: 20px;
  }
}


/* ========================================
   FIXED FOOTER AT BOTTOM
   ======================================== */

.main-footer {
  position: fixed;
  bottom: 0;
  left: 280px;
  right: 0;
  background: linear-gradient(90deg, rgba(13, 17, 40, 0.95) 0%, rgba(26, 31, 58, 0.95) 100%);
  backdrop-filter: blur(30px);
  border-top: 2px solid rgba(4, 225, 249, 0.3);
  padding: 15px 30px;
  z-index: 998;
  transition: all 0.3s ease;
  box-shadow: 0 -8px 32px rgba(4, 225, 249, 0.2);
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #04E1F9 50%, transparent 100%);
  animation: footerGlow 3s ease-in-out infinite;
}

@keyframes footerGlow {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

.sidebar.collapsed~.main-content .main-footer {
  left: 75px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  position: relative;
  z-index: 1;
}

.footer-text {
  color: var(--textLight);
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.footer-text a {
  color: var(--themeColor);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

.footer-text a:hover {
  color: #00BFFF;
  text-shadow: 0 0 10px rgba(4, 225, 249, 0.5);
}

.footer-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-link {
  color: var(--textLight);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.footer-link:hover {
  color: var(--themeColor);
  transform: translateY(-2px);
}


/* Responsive Footer */
@media (max-width: 768px) {
  .main-footer {
    left: 0;
    padding: 12px 20px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

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


/* Login css */
/* Advanced Animated Background with Image */
.background-img {
  min-height: 100vh;
  background:
    linear-gradient(135deg,
      rgba(10, 14, 39, 0.95) 0%,
      rgba(26, 31, 58, 0.92) 50%,
      rgba(13, 17, 40, 0.95) 100%),
    url("../images/png/login-bg-img.png") center / cover no-repeat fixed;

  position: relative;
  overflow: hidden;
  background-blend-mode: overlay;
}

/* Background Image Overlay for Better Contrast */
.background-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 14, 39, 0.3);
  z-index: 0;
  pointer-events: none;
}


/* Animated Gradient Overlay */
.background-img::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle at 20% 30%, rgba(4, 225, 249, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 222, 89, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(0, 74, 144, 0.1) 0%, transparent 50%);
  animation: bgRotate 20s linear infinite;
  z-index: 1;
}

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

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

/* Moving Gradient Waves */
.background-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(45deg, transparent 30%, rgba(4, 225, 249, 0.05) 50%, transparent 70%);
  background-size: 200% 200%;
  animation: waveMove 8s ease-in-out infinite;
  z-index: 2;
}

@keyframes waveMove {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.login-container {
  height: 100vh;
  overflow-y: scroll;
}

/* Enhanced Floating Particles */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.particle:nth-child(1) {
  width: 6px;
  height: 6px;
  background: rgba(4, 225, 249, 0.8);
  left: 10%;
  animation: float-particle 12s infinite ease-in-out;
  box-shadow: 0 0 10px rgba(4, 225, 249, 0.8);
  z-index: 3;
}

.particle:nth-child(2) {
  width: 8px;
  height: 8px;
  background: rgba(255, 222, 89, 0.7);
  left: 25%;
  animation: float-particle 15s infinite ease-in-out 2s;
  box-shadow: 0 0 15px rgba(255, 222, 89, 0.7);
  z-index: 3;
}

.particle:nth-child(3) {
  width: 5px;
  height: 5px;
  background: rgba(4, 225, 249, 0.9);
  left: 50%;
  animation: float-particle 18s infinite ease-in-out 4s;
  box-shadow: 0 0 12px rgba(4, 225, 249, 0.9);
  z-index: 3;
}

.particle:nth-child(4) {
  width: 7px;
  height: 7px;
  background: rgba(0, 74, 144, 0.8);
  left: 70%;
  animation: float-particle 14s infinite ease-in-out 6s;
  box-shadow: 0 0 10px rgba(0, 74, 144, 0.8);
  z-index: 3;
}

.particle:nth-child(5) {
  width: 6px;
  height: 6px;
  background: rgba(255, 222, 89, 0.8);
  left: 85%;
  animation: float-particle 16s infinite ease-in-out 8s;
  box-shadow: 0 0 15px rgba(255, 222, 89, 0.8);
  z-index: 3;
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh) translateX(0) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  50% {
    transform: translateY(50vh) translateX(50px) scale(1);
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-10vh) translateX(-30px) scale(0.5);
    opacity: 0;
  }
}

/* Ultra Premium Login Card */
.login-card {
  background: linear-gradient(135deg, rgba(13, 17, 40, 0.98) 0%, rgba(26, 31, 58, 0.98) 100%);
  border-radius: 30px;
  padding: 24px 30px;
  border: 2px solid transparent;
  box-shadow: 0 25px 70px rgba(4, 225, 249, 0.4), 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  position: relative;
  z-index: 10;
  animation: cardEntrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  margin: 10px;
}

@keyframes cardEntrance {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.9) rotateX(10deg);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
  }
}

/* Animated Border Effect */
.login-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 30px;
  background: linear-gradient(45deg,
      #04E1F9 0%,
      #FFDE59 25%,
      #004A90 50%,
      #04E1F9 75%,
      #FFDE59 100%);
  background-size: 300% 300%;
  z-index: -1;
  animation: borderAnimation 6s linear infinite;
}

@keyframes borderAnimation {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Inner Glow Effect */
.login-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(4, 225, 249, 0.15) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  animation: innerGlow 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes innerGlow {

  0%,
  100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

/* Form Container */
form {
  position: relative;
  z-index: 1;
}

/* Logo Section with Icon */
.login-heading {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(90deg, #04E1F9 0%, #FFDE59 50%, #04E1F9 100%);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 3s ease infinite;
  text-align: center;
  letter-spacing: 3px;
  text-shadow: 0 0 30px rgba(4, 225, 249, 0.5);
  position: relative;
  display: inline-block;
  width: 100%;
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.login-container label,
.login-container h3 {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.75rem, 0.712rem + 0.1899vw, 0.9375rem);
  font-weight: 400;
}

/* Form Inputs with Advanced Effects */
.form-group {
  margin-bottom: 0;
  position: relative;
}

.form-group label {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.custom-input {
  background: rgba(4, 225, 249, 0.08);
  border: 2px solid rgba(4, 225, 249, 0.3);
  border-radius: 14px;
  padding: 16px 20px;
  color: #fff;
  font-size: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  position: relative;
}

.custom-input:focus {
  outline: none;
  border-color: #04E1F9;
  box-shadow:
    0 0 25px rgba(4, 225, 249, 0.5),
    0 0 50px rgba(4, 225, 249, 0.2),
    inset 0 0 20px rgba(4, 225, 249, 0.1);
  background: rgba(4, 225, 249, 0.15);
  transform: translateY(-3px) scale(1.01);
}

.custom-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

/* Checkbox with Glow */
.custom-checkbox {
  width: 20px;
  height: 20px;
  accent-color: #04E1F9;
  cursor: pointer;
  filter: drop-shadow(0 0 5px rgba(4, 225, 249, 0.5));
}

/* Links with Advanced Hover */
.primaryColor {
  color: #04E1F9;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  font-weight: 600;
}

.primaryColor::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #04E1F9, #FFDE59);
  transition: width 0.4s ease;
  box-shadow: 0 0 10px rgba(4, 225, 249, 0.8);
}

.primaryColor:hover::after {
  width: 100%;
}

.primaryColor:hover {
  color: #FFDE59;
  text-shadow: 0 0 15px rgba(255, 222, 89, 0.8);
  transform: translateX(3px);
}

/* Ultra Premium Animated Button */
.cta-login {
  background: linear-gradient(135deg, #04E1F9 0%, #004A90 50%, #04E1F9 100%);
  background-size: 200% 200%;
  border: none;
  border-radius: 14px;
  padding: 18px 55px;
  color: white;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow:
    0 10px 30px rgba(4, 225, 249, 0.5),
    0 0 20px rgba(4, 225, 249, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  animation: buttonPulse 3s ease-in-out infinite, gradientMove 4s linear infinite;
  transition: all 0.3s ease;
}

/* Continuous Button Animations */
@keyframes buttonPulse {

  0%,
  100% {
    box-shadow:
      0 10px 30px rgba(4, 225, 249, 0.5),
      0 0 20px rgba(4, 225, 249, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }

  50% {
    box-shadow:
      0 15px 40px rgba(4, 225, 249, 0.7),
      0 0 40px rgba(4, 225, 249, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.5);
  }
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Shine Effect on Button */
.cta-login::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg,
      transparent 30%,
      rgba(255, 255, 255, 0.3) 50%,
      transparent 70%);
  animation: buttonShine 3s linear infinite;
}

@keyframes buttonShine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

/* Ripple Effect */
.cta-login::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.cta-login:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 15px 45px rgba(4, 225, 249, 0.7),
    0 0 50px rgba(4, 225, 249, 0.5),
    inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

.cta-login:hover::after {
  width: 300%;
  height: 300%;
}

.cta-login:active {
  transform: translateY(-2px) scale(0.98);
}

/* Responsive Design */
@media (max-width: 768px) {
  .login-card {
    padding: 40px 30px;
    border-radius: 25px;
  }

  .login-heading {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .login-card {
    padding: 35px 25px;
    border-radius: 20px;
  }

  .login-heading {
    font-size: 26px;
    letter-spacing: 2px;
  }

  .cta-login {
    padding: 12px 40px;
    font-size: 13px;
  }

  .custom-input {
    padding: 14px 18px;
  }
}