/* Custom CSS to add Glassmorphism and Premium Glows to Bootstrap */

body {
  background-color: #030014;
  background-image:
    radial-gradient(ellipse at 50% -20%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(56, 189, 248, 0.15) 0%, transparent 40%),
    radial-gradient(ellipse at 80% 20%, rgba(168, 85, 247, 0.15) 0%, transparent 40%);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #e5e7eb;
  /* text-gray-200 equivalent */
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* Glass Panels */
.glass-panel {
  background: linear-gradient(145deg, rgba(32, 28, 60, 0.75) 0%, rgba(19, 16, 42, 0.85) 100%);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  box-shadow: 0 12px 35px 0 rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
}

/* Glow Cards */
.glow-card-gold {
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.15) 0%, rgba(32, 28, 52, 0.85) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 20px;
  box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.08), 0 10px 30px rgba(0, 0, 0, 0.45);
  padding: 1.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.glow-card-gold:hover {
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: inset 0 0 30px rgba(212, 175, 55, 0.2), 0 8px 32px rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

.glow-card-blue {
  background: linear-gradient(145deg, rgba(59, 130, 246, 0.15) 0%, rgba(22, 26, 56, 0.85) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.4);
  border-radius: 20px;
  box-shadow: inset 0 0 20px rgba(59, 130, 246, 0.08), 0 10px 30px rgba(0, 0, 0, 0.45);
  padding: 1.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.glow-card-blue:hover {
  border-color: rgba(59, 130, 246, 0.6);
  box-shadow: inset 0 0 30px rgba(59, 130, 246, 0.2), 0 8px 32px rgba(59, 130, 246, 0.15);
  transform: translateY(-2px);
}

.glow-card-green {
  background: linear-gradient(145deg, rgba(16, 185, 129, 0.15) 0%, rgba(20, 32, 52, 0.85) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: 20px;
  box-shadow: inset 0 0 20px rgba(16, 185, 129, 0.08), 0 10px 30px rgba(0, 0, 0, 0.45);
  padding: 1.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.glow-card-green:hover {
  border-color: rgba(16, 185, 129, 0.6);
  box-shadow: inset 0 0 30px rgba(16, 185, 129, 0.2), 0 8px 32px rgba(16, 185, 129, 0.15);
  transform: translateY(-2px);
}

.glow-card-purple {
  background: linear-gradient(145deg, rgba(168, 85, 247, 0.15) 0%, rgba(30, 24, 58, 0.85) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(168, 85, 247, 0.4);
  border-radius: 20px;
  box-shadow: inset 0 0 20px rgba(168, 85, 247, 0.08), 0 10px 30px rgba(0, 0, 0, 0.45);
  padding: 1.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.glow-card-purple:hover {
  border-color: rgba(168, 85, 247, 0.6);
  box-shadow: inset 0 0 30px rgba(168, 85, 247, 0.2), 0 8px 32px rgba(168, 85, 247, 0.1);
  transform: translateY(-2px);
}

/* Fog Animation */
@keyframes fogFlow {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 0.5;
  }

  33% {
    transform: translate(15px, -15px) scale(1.1) rotate(5deg);
    opacity: 0.8;
  }

  66% {
    transform: translate(-15px, 10px) scale(0.9) rotate(-5deg);
    opacity: 0.6;
  }

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

.fog-glow {
  position: absolute;
  filter: blur(50px);
  animation: fogFlow 12s infinite ease-in-out;
  pointer-events: none;
  z-index: 0;
}

/* Inner Cards */
.inner-card {
  background-color: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 1rem;
}

.input-dark-glass {
  background-color: rgba(0, 0, 0, 0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
  border-radius: 8px !important;
  backdrop-filter: blur(8px);
}

.input-dark-glass:focus {
  border-color: rgba(59, 130, 246, 0.8) !important;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.4) !important;
}

/* Hide Number Input Arrows */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

/* Text Gradients */
.text-gradient-gold {
  background: linear-gradient(to right, #F9D976, #fff7dd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-green {
  background: linear-gradient(to right, #6ee7b7, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-purple {
  background: linear-gradient(to right, #d8b4fe, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Layout & Global Overflow Protection */
html,
body {
  overflow-x: hidden !important;
  max-width: 100vw;
  width: 100%;
}

main {
  min-width: 0 !important;
  max-width: 100vw;
}

/* Sidebar Specific */
.sidebar-gradient {
  background-color: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(16px);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-link {
  display: flex;
  align-items: center;
  padding: 0.8rem 1.25rem;
  color: #9ca3af;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s;
  margin-bottom: 0.5rem;
  text-decoration: none;
}

.sidebar-link:hover {
  color: #D4AF37;
  background-color: rgba(30, 41, 59, 0.8);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
  transform: translateX(4px);
}

.sidebar-link.active {
  color: #fff;
  background: linear-gradient(to right, #6366f1, #a855f7);
  font-weight: 700;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.6), inset 0 0 10px rgba(255, 255, 255, 0.2);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* Mobile & Desktop Responsive Sidebar Rules */
@media (max-width: 767.98px) {
  #sidebar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    height: 100vh !important;
    width: 280px !important;
    max-width: 85vw !important;
    z-index: 1060 !important;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.85);
  }

  #sidebar.show-mobile {
    transform: translateX(0) !important;
  }

  #sidebarOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 1055;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  #sidebarOverlay.show-mobile {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (min-width: 768px) {
  #sidebar {
    width: 260px;
    position: relative;
    transform: none !important;
  }

  #sidebar.collapsed {
    width: 88px !important;
  }

  #sidebar.collapsed .sidebar-link span {
    display: none !important;
  }

  #sidebar.collapsed .sidebar-link {
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
  }

  #sidebar.collapsed .sidebar-link i {
    margin-right: 0 !important;
    font-size: 1.4rem;
  }
}

/* Buttons */
.btn-glass-primary,
.btn-glass-blue {
  background: rgba(59, 130, 246, 0.15) !important;
  color: #93c5fd !important;
  font-weight: bold;
  padding: 0.875rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(59, 130, 246, 0.4) !important;
  transition: all 0.3s;
  text-align: center;
  width: 100%;
}

.btn-glass-primary:hover,
.btn-glass-blue:hover {
  background: rgba(59, 130, 246, 0.25) !important;
  border-color: rgba(59, 130, 246, 0.7) !important;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
  color: #ffffff !important;
}

.btn-primary-gradient {
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
  transition: all 0.3s ease;
}

.btn-primary-gradient:hover {
  background: linear-gradient(135deg, #4f46e5 0%, #9333ea 100%) !important;
  box-shadow: 0 6px 25px rgba(168, 85, 247, 0.6);
  transform: translateY(-1px);
  color: #ffffff !important;
}

.btn-gold-gradient {
  background: linear-gradient(135deg, #E8B923 0%, #D4AF37 100%) !important;
  color: #0c0a18 !important;
  font-weight: 800 !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
  transition: all 0.3s ease;
}

.btn-gold-gradient:hover {
  background: linear-gradient(135deg, #C5A059 0%, #B8860B 100%) !important;
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.55);
  transform: translateY(-1px);
  color: #000000 !important;
}

.btn-glass-gold {
  background: rgba(212, 175, 55, 0.15) !important;
  color: #dad594 !important;
  font-weight: bold;
  padding: 0.875rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(212, 175, 55, 0.4) !important;
  transition: all 0.3s;
  text-align: center;
  width: 100%;
}

.btn-glass-gold:hover {
  background: rgba(212, 175, 55, 0.25) !important;
  border-color: #dad594 !important;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  color: #ffffff !important;
}

.btn-glass-purple {
  background: rgba(168, 85, 247, 0.15) !important;
  color: #e9d5ff !important;
  font-weight: bold;
  padding: 0.875rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(168, 85, 247, 0.4) !important;
  transition: all 0.3s;
  text-align: center;
  width: 100%;
}

.btn-glass-purple:hover {
  background: rgba(168, 85, 247, 0.25) !important;
  border-color: rgba(168, 85, 247, 0.7) !important;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
  color: #ffffff !important;
}

/* Form inputs */
.form-control::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
}

/* Utilities */
.text-gold {
  color: #dad594 !important;
}

.text-green-400 {
  color: #4ade80 !important;
}

.text-purple-400 {
  color: #c084fc !important;
}

.text-blue-400 {
  color: #60a5fa !important;
}

.text-gray-400 {
  color: #9ca3af !important;
}

.text-gray-500 {
  color: #6b7280 !important;
}

.bg-black-40 {
  background-color: rgba(0, 0, 0, 0.4) !important;
}

.pill-green,
.badge-pill-active {
  background: rgba(34, 197, 94, 0.15) !important;
  border: 1px solid rgba(74, 222, 128, 0.35) !important;
  color: #4ade80 !important;
  border-radius: 50rem !important;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  white-space: nowrap !important;
  flex-shrink: 0;
  padding: 0.25rem 0.75rem !important;
}

.badge-pill-wallet {
  background: rgba(34, 197, 94, 0.12) !important;
  border: 1px solid rgba(74, 222, 128, 0.3) !important;
  color: #e5e7eb !important;
  border-radius: 50rem !important;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  white-space: nowrap !important;
  flex-shrink: 0;
  padding: 0.25rem 0.75rem !important;
}

.badge-pill-wallet .val-green {
  color: #4ade80 !important;
  font-weight: 800;
}

.fs-7 {
  font-size: 0.875rem;
}

.fs-8 {
  font-size: 0.75rem;
}

.fs-9 {
  font-size: 0.65rem;
}

/* Dribbble Colorful Dots Loader */
.dribbble-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.dribbble-dots div {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  animation: dribbbleBounce 0.6s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite alternate;
}

.dribbble-dots div:nth-child(1),
.dribbble-dots .dot-gold {
  background: linear-gradient(135deg, #E8B923, #fbbf24) !important;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.85), 0 0 24px rgba(245, 158, 11, 0.4);
  animation-delay: 0s;
}

.dribbble-dots div:nth-child(2),
.dribbble-dots .dot-purple {
  background: linear-gradient(135deg, #a855f7, #c084fc) !important;
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.85), 0 0 24px rgba(168, 85, 247, 0.4);
  animation-delay: 0.15s;
}

.dribbble-dots div:nth-child(3),
.dribbble-dots .dot-blue {
  background: linear-gradient(135deg, #38bdf8, #60a5fa) !important;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.85), 0 0 24px rgba(56, 189, 248, 0.4);
  animation-delay: 0.3s;
}

.dribbble-dots div:nth-child(4),
.dribbble-dots .dot-green {
  background: linear-gradient(135deg, #10b981, #34d399) !important;
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.85), 0 0 24px rgba(16, 185, 129, 0.4);
  animation-delay: 0.45s;
}

@keyframes dribbbleBounce {
  0% {
    transform: translateY(0) scale(0.8);
    opacity: 0.5;
  }

  100% {
    transform: translateY(-12px) scale(1.2);
    opacity: 1;
  }
}

/* Staking Type Tab Buttons */
.stake-tab-container {
  background: rgba(12, 10, 24, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 16px;
  padding: 6px;
  display: flex;
  gap: 8px;
}

.stake-tab-btn {
  flex: 1;
  border-radius: 12px !important;
  padding: 10px 14px !important;
  border: 1px solid transparent !important;
  background: transparent;
  color: #94a3b8 !important;
  font-weight: 700;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  outline: none !important;
}

.stake-tab-btn .tab-title {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  color: #cbd5e1;
  transition: color 0.25s;
}

.stake-tab-btn .tab-sub {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: #94a3b8;
  margin-top: 2px;
  transition: color 0.25s;
}

/* Inactive Hover State - Glowing Ambient BG & Crisp White Text */
.stake-tab-btn:hover:not(.active) {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.25) 0%, rgba(99, 102, 241, 0.2) 100%) !important;
  border: 1px solid rgba(168, 85, 247, 0.6) !important;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.35), inset 0 0 15px rgba(168, 85, 247, 0.15) !important;
  transform: translateY(-1px);
}

.stake-tab-btn:hover:not(.active) .tab-title {
  color: #ffffff !important;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

.stake-tab-btn:hover:not(.active) .tab-sub {
  color: #e2e8f0 !important;
  text-shadow: 0 0 8px rgba(168, 85, 247, 0.4);
}

/* Active State - Luminous Gradient with Glow */
.stake-tab-btn.active {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  box-shadow: 0 6px 22px rgba(139, 92, 246, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

.stake-tab-btn.active .tab-title {
  color: #ffffff !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.stake-tab-btn.active .tab-sub {
  color: #f1f5f9 !important;
}

/* ==================== ROI CALCULATOR MODAL STYLES ==================== */
.roi-modal-container {
  background: linear-gradient(145deg, rgba(26, 20, 52, 0.96) 0%, rgba(15, 12, 34, 0.98) 100%);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(168, 85, 247, 0.35);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(168, 85, 247, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.roi-chip-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: 10px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.roi-chip-btn:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
  color: #F9D976;
  transform: translateY(-1px);
}

.roi-chip-btn.active {
  background: linear-gradient(135deg, #D4AF37 0%, #ffe48d 100%) !important;
  border-color: #ffedb4 !important;
  color: #0c0a18 !important;
  font-weight: 800;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.roi-target-chip {
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.25);
  color: #d8b4fe;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 5px 10px;
  border-radius: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.roi-target-chip:hover {
  background: rgba(168, 85, 247, 0.25);
  border-color: rgba(168, 85, 247, 0.6);
  color: #ffffff;
  transform: translateY(-1px);
}

.roi-target-chip.active {
  background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%) !important;
  border-color: #e9d5ff !important;
  color: #ffffff !important;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
}

.roi-hero-card {
  background: linear-gradient(145deg, rgba(34, 197, 94, 0.12) 0%, rgba(20, 30, 48, 0.75) 100%);
  border: 1px solid rgba(74, 222, 128, 0.35);
  border-radius: 18px;
  box-shadow: inset 0 0 25px rgba(74, 222, 128, 0.08), 0 8px 25px rgba(0, 0, 0, 0.4);
}

.roi-metric-box {
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 12px;
  transition: all 0.2s ease;
}

.roi-metric-box:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(15, 23, 42, 0.85);
}

.roi-future-card {
  background: linear-gradient(145deg, rgba(168, 85, 247, 0.12) 0%, rgba(25, 20, 48, 0.8) 100%);
  border: 1px solid rgba(168, 85, 247, 0.35);
  border-radius: 18px;
  box-shadow: inset 0 0 25px rgba(168, 85, 247, 0.08), 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* ==================== GLOBAL ALERT MODAL STYLES ==================== */
.global-alert-modal-backdrop {
  background: rgba(10, 10, 18, 0.3);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  transition: opacity 0.25s ease;
}

.global-alert-card {
  background: linear-gradient(180deg, #fcfcfc 0%, #ffffff 40%, #ffffff 100%);
  border: none;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 92%;
  position: relative;
  overflow: hidden;
  animation: alertPopIn 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes alertPopIn {
  0% {
    opacity: 0;
    transform: scale(0.92) translateY(15px);
  }

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

.global-alert-close-btn {
  display: none;
  /* Removed close button as per second image */
}

.global-alert-card h3 {
  color: #1e293b !important;
  /* Dark text for title */
  font-weight: 800;
  font-size: 1.3rem;
  margin-top: 10px;
}

.global-alert-card .global-alert-msg-box {
  color: #64748b !important;
  /* Grey text for message */
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.global-alert-icon-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px auto;
  border: none;
  position: relative;
}

.global-alert-icon-box::before {
  display: none;
  /* No glow */
}

/* Alert Type: Error */
.global-alert-card.type-error {
  background: linear-gradient(180deg, #ffeeee 0%, #ffffff 35%, #ffffff 100%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.global-alert-card.type-error .global-alert-icon-box {
  background: #ff4d4f;
  color: #ffffff;
}

.global-alert-card.type-error .global-alert-action-btn {
  background: linear-gradient(135deg, #6ee7b7 0%, #3b82f6 100%);
  /* Changed to cyan-blue gradient if they want that cyan button, or maybe just flat cyan */
  background: #64eedd;
  color: #0f172a;
  box-shadow: none;
}

.global-alert-card.type-error .global-alert-action-btn:hover {
  background: #45d6c4;
  transform: translateY(-1px);
}

.global-alert-card.type-error .global-alert-progress-fill {
  background: #ff4d4f;
}

/* Alert Type: Success */
.global-alert-card.type-success {
  background: linear-gradient(180deg, #eeffee 0%, #ffffff 35%, #ffffff 100%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.global-alert-card.type-success .global-alert-icon-box {
  background: #22c55e;
  color: #ffffff;
}

.global-alert-card.type-success .global-alert-action-btn {
  background: #64eedd;
  color: #0f172a;
  box-shadow: none;
}

.global-alert-card.type-success .global-alert-action-btn:hover {
  background: #45d6c4;
  transform: translateY(-1px);
}

.global-alert-card.type-success .global-alert-progress-fill {
  background: #22c55e;
}

/* Alert Type: Warning */
.global-alert-card.type-warning {
  background: linear-gradient(180deg, #fffce6 0%, #ffffff 35%, #ffffff 100%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.global-alert-card.type-warning .global-alert-icon-box {
  background: #f59e0b;
  color: #ffffff;
}

.global-alert-card.type-warning .global-alert-action-btn {
  background: #64eedd;
  color: #0f172a;
  box-shadow: none;
}

.global-alert-card.type-warning .global-alert-action-btn:hover {
  background: #45d6c4;
  transform: translateY(-1px);
}

.global-alert-card.type-warning .global-alert-progress-fill {
  background: #f59e0b;
}

/* Alert Type: Info */
.global-alert-card.type-info {
  background: linear-gradient(180deg, #e6f7ff 0%, #ffffff 35%, #ffffff 100%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.global-alert-card.type-info .global-alert-icon-box {
  background: #3b82f6;
  color: #ffffff;
}

.global-alert-card.type-info .global-alert-action-btn {
  background: #64eedd;
  color: #0f172a;
  box-shadow: none;
}

.global-alert-card.type-info .global-alert-action-btn:hover {
  background: #45d6c4;
  transform: translateY(-1px);
}

.global-alert-card.type-info .global-alert-progress-fill {
  background: #3b82f6;
}

.global-alert-msg-box {
  background: transparent;
  border: none;
  padding: 12px 16px;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.55;
  word-break: break-word;
}


/* Overriding Bootstrap Warning Color to Metallic Gold */
.text-warning {
  color: #dad594 !important;
}

.bg-warning {
  background-color: #dad594 !important;
}

.border-warning {
  border-color: #dad594 !important;
}

/* Staking Plan Badges */
.badge-stacking {
  background: rgba(6, 182, 212, 0.15) !important;
  color: #38bdf8 !important;
  border: 1px solid rgba(56, 189, 248, 0.4) !important;
  padding: 3px 10px !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  font-size: 0.75rem !important;
  display: inline-block !important;
  letter-spacing: 0.3px;
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.2);
}

.badge-regular {
  background: rgba(245, 158, 11, 0.15) !important;
  color: #fbbf24 !important;
  border: 1px solid rgba(251, 191, 36, 0.4) !important;
  padding: 3px 10px !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  font-size: 0.75rem !important;
  display: inline-block !important;
  letter-spacing: 0.3px;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.2);
}