
  /* Root Variables for Glassmorphism */
  :root {
    --glass-bg: rgba(255, 255, 255, 0.3);
    --glass-border: rgba(255, 255, 255, 0.18);
    --blur-amount: 10px;
  }

  /* Hide scrollbars but keep scrolling functionality */
  .wallet-panel {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .wallet-panel::-webkit-scrollbar {
    display: none;
  }

  /* Main Wallet Panel with Glassmorphism */
  .wallet-panel {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
  }

  .wallet-panel .card-body {
    background: transparent;
    padding: 1rem;
  }

  /* Section Headers with Animation */
  .wallet-header h6,
  .staking-section h6,
  .game-stats-section h6 {
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.5px;
    animation: slideInDown 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    padding-bottom: 8px;
  }

  .wallet-header h6::after,
  .staking-section h6::after,
  .game-stats-section h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
    animation: expandWidth 0.8s ease;
  }

  @keyframes slideInDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes expandWidth {
    from {
      width: 0;
    }
    to {
      width: 30px;
    }
  }

  /* Wallet Info Row with Glassmorphism */
  .wallet-info-row {
    padding: 12px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    margin-bottom: 8px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: fadeInLeft 0.5s ease-out;
  }

  .wallet-info-row:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
    border-bottom-color: rgba(102, 126, 234, 0.4);
  }

  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(-10px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .wallet-info-row span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
  }

  .wallet-info-row strong {
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
  }

  /* Stake Buttons with Glassmorphism and Hover Effects */
  .stake-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 0.85rem;
    padding: 10px 12px;
    border-radius: 8px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: slideUp 0.5s ease-out;
  }

  .stake-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 2s infinite;
  }

  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes shimmer {
    0% {
      transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
      transform: translateX(100%) translateY(100%) rotate(45deg);
    }
  }

  .stake-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
    color: #fff;
  }

  .stake-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.2);
  }

  /* Game Stats Section */
  .game-stats-section {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 10px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .game-stats-section .stat-row {
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 0;
    transition: all 0.3s ease;
    animation: slideInRight 0.5s ease-out;
  }

  .game-stats-section .stat-row:hover {
    color: #fff;
    padding-left: 4px;
  }

  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(10px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .stat-row .badge {
    font-size: 0.75rem;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 700;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    transition: all 0.3s ease;
  }

  .stat-row .badge:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    transform: scale(1.05);
  }

  /* Wallet Actions with Glassmorphism Buttons */
  .wallet-actions {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: fadeInUp 0.7s ease-out 0.3s both;
  }

  .wallet-actions a {
    font-size: 0.85rem;
    padding: 10px 14px;
    border: none;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-weight: 600;
    position: relative;
    overflow: hidden;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .wallet-actions a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
  }

  .wallet-actions a:hover::before {
    width: 300px;
    height: 300px;
  }

  .wallet-actions a:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.4);
  }

  .btn-gradient-primary {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white !important;
  }

  .btn-gradient-primary:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 1) 0%, rgba(118, 75, 162, 1) 100%);
  }

  .btn-gradient-success {
    background: linear-gradient(135deg, rgba(17, 153, 142, 0.8) 0%, rgba(56, 239, 125, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white !important;
  }

  .btn-gradient-success:hover {
    background: linear-gradient(135deg, rgba(17, 153, 142, 1) 0%, rgba(56, 239, 125, 1) 100%);
  }

  .btn-gradient-warning {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.8) 0%, rgba(245, 87, 108, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white !important;
  }

  .btn-gradient-warning:hover {
    background: linear-gradient(135deg, rgba(240, 147, 251, 1) 0%, rgba(245, 87, 108, 1) 100%);
  }

  /* Fixed Plugin Card Glassmorphism */
  .fixed-plugin .card {
    max-height: 90vh;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .fixed-plugin .card:hover {
    box-shadow: 0 25px 70px rgba(102, 126, 234, 0.25);
  }

  /* Card Header */
  .fixed-plugin .card-header {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px 16px 0 0;
  }

  .fixed-plugin .card-header h5 {
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.5px;
  }

  /* Horizontal Line */
  hr.horizontal {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 1;
  }

  /* Smooth Scroll Alternative (CSS-based, no visible scrollbar) */
  .wallet-panel {
    scroll-behavior: smooth;
  }

  /* Staking Section */
  .staking-section {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 10px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
  }

  /* Wallet Header */
  .wallet-header {
    animation: slideInDown 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  }