html, body {
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%) !important;
      min-height: 100vh;
    }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
            min-height: 100vh;
            overflow: hidden;
            position: relative;
        }
        
        .bg-animation {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 0;
            overflow: hidden;
        }
        
        .bg-animation::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(58, 150, 255, 0.15), transparent);
            border-radius: 50%;
            top: -200px;
            right: -200px;
            animation: float 20s ease-in-out infinite;
        }
        
        .bg-animation::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(0, 200, 150, 0.1), transparent);
            border-radius: 50%;
            bottom: -150px;
            left: -150px;
            animation: float 15s ease-in-out infinite reverse;
        }
        
        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(50px, 50px) scale(1.1); }
        }
        
        /* Main Container */
        .main-container {
            position: relative;
            z-index: 10;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
            padding-top: 80px;
        }
        
        /* Logo Section */
        .logo-section {
            text-align: center;
            margin-bottom: 60px;
            animation: fadeInDown 0.6s ease-out;
        }
        
        .logo-icon {
            width: 72px;
            height: 72px;
            background: linear-gradient(135deg, #3a96ff 0%, #2575d8 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            box-shadow: 0 8px 32px rgba(58, 150, 255, 0.25);
            position: relative;
        }
        
        .logo-icon::after {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(135deg, #3a96ff, #00c896);
            border-radius: 18px;
            z-index: -1;
            opacity: 0.3;
            filter: blur(8px);
        }
        
        .logo-icon svg {
            width: 40px;
            height: 40px;
            fill: white;
        }
        
        .brand-name {
            font-size: 42px;
            font-weight: 700;
            color: white;
            margin-bottom: 8px;
            letter-spacing: -0.02em;
            position: relative;
        }
        
        .brand-name .rpc-text {
            background: linear-gradient(135deg, #3a96ff 0%, #00c896 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
        }
        
        .brand-tagline {
            color: rgba(255, 255, 255, 0.5);
            font-size: 15px;
            font-weight: 400;
            letter-spacing: 0.01em;
        }
        
        /* Loading Card */
        .loading-card {
            background: rgba(26, 32, 44, 0.8);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 40px;
            max-width: 500px;
            width: 100%;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            animation: fadeInUp 0.8s ease-out 0.2s backwards;
        }
        
        .loading-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 30px;
        }
        
        .loading-text {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
        }
        
        .loading-percentage {
            font-size: 24px;
            font-weight: 700;
            background: linear-gradient(135deg, #3a96ff, #00c896);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* Progress Bar */
        .progress-container {
            position: relative;
            width: 100%;
            height: 8px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 25px;
        }
        
        .progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #3a96ff, #00c896, #3a96ff);
            background-size: 200% 100%;
            border-radius: 10px;
            transition: width 0.3s ease;
            animation: shimmer 2s linear infinite;
            box-shadow: 0 0 20px rgba(58, 150, 255, 0.5);
        }
        
        @keyframes shimmer {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }
        
        /* Status Messages */
        .status-container {
            margin-top: 20px;
            max-height: 250px;
            overflow-y: auto;
            overflow-x: hidden;
            padding-right: 10px;
        }
        
        /* Custom scrollbar for status */
        .status-container::-webkit-scrollbar {
            width: 6px;
        }
        
        .status-container::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
        }
        
        .status-container::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #3a96ff, #00c896);
            border-radius: 10px;
        }
        
        .status-container::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, #4aa6ff, #00d8a6);
        }
        
        .status-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
            opacity: 0;
            animation: fadeIn 0.4s ease-out forwards;
        }
        
        .status-icon {
            width: 20px;
            height: 20px;
            border: 2px solid rgba(58, 150, 255, 0.3);
            border-radius: 50%;
            border-top-color: #3a96ff;
            animation: spin 1s linear infinite;
        }
        
        .status-icon.complete {
            border: none;
            background: #00c896;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: none;
        }
        
        .status-icon.complete::after {
            content: '✓';
            color: white;
            font-size: 12px;
            font-weight: bold;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* Footer Note */
        .footer-note {
            text-align: center;
            margin-top: 30px;
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.4);
            font-size: 13px;
            animation: fadeIn 0.8s ease-out 0.6s backwards;
        }
        
        /* Floating Crypto Icons */
        .crypto-float {
            position: fixed;
            opacity: 0.1;
            animation: floatCrypto 20s ease-in-out infinite;
            z-index: 1;
        }
        
        .crypto-float:nth-child(1) {
            top: 20%;
            left: 10%;
            font-size: 60px;
            animation-delay: 0s;
        }
        
        .crypto-float:nth-child(2) {
            top: 60%;
            right: 15%;
            font-size: 80px;
            animation-delay: 5s;
        }
        
        .crypto-float:nth-child(3) {
            bottom: 20%;
            left: 20%;
            font-size: 50px;
            animation-delay: 10s;
        }
        
        @keyframes floatCrypto {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(10deg); }
        }
        
        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        /* WOW Exit Transition */
        body.page-transition {
            animation: pageExit 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
        }
        
        @keyframes pageExit {
            0% {
                transform: scale(1) rotate(0deg);
                opacity: 1;
                filter: blur(0px);
            }
            50% {
                transform: scale(1.1);
                filter: blur(5px);
            }
            100% {
                transform: scale(0) rotate(180deg);
                opacity: 0;
                filter: blur(20px);
            }
        }
        
        /* Mobile Responsive */
        @media (max-width: 600px) {
            .brand-name {
                font-size: 28px;
            }
            
            .brand-tagline {
                font-size: 13px;
            }
            
            .main-container {
                padding: 20px 15px;
                padding-top: 70px;
                padding-bottom: 30px;
            }
            
            .logo-section {
                margin-bottom: 40px;
            }
            
            .loading-card {
                padding: 25px 18px;
                margin-bottom: 10px;
            }
            
            .logo-icon {
                width: 56px;
                height: 56px;
            }
            
            .logo-icon svg {
                width: 30px;
                height: 30px;
            }
            
            .ticker-item {
                font-size: 12px;
            }
            
            .footer-note {
                font-size: 11px;
                margin-top: 20px;
                margin-bottom: 15px;
                padding: 0 10px;
                line-height: 1.4;
            }
            
            .status-container {
                max-height: 180px;
            }
        }    
    .scwtw-max-h-120px {
        max-height:120px !important;
    }

    .btn-primary, button[class*="btn"] {
      position: relative;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 4px 15px rgba(58, 150, 255, 0.3);
    }
    
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(58, 150, 255, 0.5);
    }
    
    .btn-primary:active {
      transform: translateY(0);
    }
    
    /* Button ripple effect */
    .btn-primary::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.6s, height 0.6s;
    }
    
    .btn-primary:active::before {
      width: 300px;
      height: 300px;
    }
    
    /* Glass morphism for modal */
    #walletModal {
      backdrop-filter: blur(20px);
      background: rgba(26, 32, 44, 0.95) !important;
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }
    
    /* Professional search bar */
    .search-container {
      margin-bottom: 20px;
    }
    
    .search-bar {
      position: relative;
      transition: all 0.3s ease;
    }
    
    .search-input {
      background: rgba(255, 255, 255, 0.05);
      border: 2px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 14px 20px 14px 50px;
      color: #fff;
      font-size: 15px;
      width: 100%;
      transition: all 0.3s ease;
    }
    
    .search-input:focus {
      outline: none;
      border-color: #3a96ff;
      background: rgba(255, 255, 255, 0.08);
      box-shadow: 0 0 0 4px rgba(58, 150, 255, 0.1);
    }
    
    .search-icon {
      position: absolute;
      left: 18px;
      top: 50%;
      transform: translateY(-50%);
      color: rgba(255, 255, 255, 0.5);
      transition: color 0.3s ease;
    }
    
    .search-bar:focus-within .search-icon {
      color: #3a96ff;
    }
    
    /* Enhanced wallet items */
    .wallet-item {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      padding: 16px;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
    }
    
    .wallet-item::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 16px;
      padding: 2px;
      background: linear-gradient(135deg, rgba(58, 150, 255, 0.3), rgba(0, 200, 150, 0.3));
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      opacity: 0;
      transition: opacity 0.4s ease;
    }
    
    .wallet-item:hover::before {
      opacity: 1;
    }
    
    .wallet-item:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 12px 30px rgba(58, 150, 255, 0.2);
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
      border-color: rgba(58, 150, 255, 0.3);
    }
    
    .wallet-item img {
      transition: all 0.4s ease;
      filter: brightness(0.95);
    }
    
    .wallet-item:hover img {
      filter: brightness(1.1);
      transform: scale(1.05);
    }
    
    .wallet-name {
      margin-top: 12px;
      font-weight: 600;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.95);
      transition: color 0.3s ease;
    }
    
    .wallet-item:hover .wallet-name {
      color: #3a96ff;
    }
    
    /* Professional scrollbar */
    #walletGrid::-webkit-scrollbar {
      width: 10px;
    }
    
    #walletGrid::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.03);
      border-radius: 10px;
      margin: 8px 0;
    }
    
    #walletGrid::-webkit-scrollbar-thumb {
      background: linear-gradient(180deg, #3a96ff, #2575d8);
      border-radius: 10px;
      border: 2px solid rgba(26, 32, 44, 0.95);
    }
    
    #walletGrid::-webkit-scrollbar-thumb:hover {
      background: linear-gradient(180deg, #4aa6ff, #3585e8);
    }
    
    /* Fade in animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .fade_up_anim {
      animation: fadeInUp 0.8s ease-out forwards;
      opacity: 0;
    }
    
    .fade_up_anim[data-delay="0.2"] {
      animation-delay: 0.2s;
    }
    
    .fade_up_anim[data-delay="0.4"] {
      animation-delay: 0.4s;
    }
    
    .fade_up_anim[data-delay=".5"] {
      animation-delay: 0.5s;
    }
    
    /* Professional heading styles */
    .display-4 {
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.1;
    }
    
    /* Enhanced stats section */
    .col-span-6, .col-span-3 {
      transition: transform 0.3s ease;
    }
    
    .col-span-6:hover, .col-span-3:hover {
      transform: translateY(-5px);
    }
    
    .h3 {
      font-weight: 700;
      color: rgba(255, 255, 255, 0.95);
    }

    h1.display-4, h2.display-4 {
      background: linear-gradient(135deg, #3a96ff, #00c896);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .fixed.inset-0.z-\\[999\\] {
      backdrop-filter: blur(8px);
      animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    
    button:focus-visible, input:focus-visible {
      outline: 3px solid rgba(58, 150, 255, 0.5);
      outline-offset: 2px;
    }

    .loader {
      position: relative;
    }
    
    .loader::after {
      content: '';
      position: absolute;
      inset: -10px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(58, 150, 255, 0.2), transparent);
      animation: pulse 2s ease-in-out infinite;
    }
    
    @keyframes pulse {
      0%, 100% { opacity: 0; transform: scale(1); }
      50% { opacity: 1; transform: scale(1.2); }
    }
    
    * {
      transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    }

    .popup {
      background: linear-gradient(135deg, #ffffff, #f8f9fa);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
      border: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .popup-container {
      backdrop-filter: blur(10px);
      background: rgba(0, 0, 0, 0.6);
    }
    
    /* Professional shimmer effect for cards */
    @keyframes shimmer {
      0% {
        background-position: -1000px 0;
      }
      100% {
        background-position: 1000px 0;
      }
    }
    
    .btn-primary, .btn-white {
      position: relative;
      overflow: hidden;
    }
    
    .btn-primary::after {
      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;
    }
    
    .btn-primary:hover::after {
      left: 100%;
    }
    
    /* Enhanced connect button */
    .btn-primary {
      background: linear-gradient(135deg, #3a96ff, #2575d8);
      border: none;
      padding: 16px 40px;
      font-size: 16px;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: none;
    }
    
    /* Stats numbers with gradient */
    .h3, .display-4 {
      position: relative;
    }
    
    /* Smooth page transitions */
    @keyframes pageLoad {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    body {
      animation: pageLoad 0.6s ease-out;
    }
    
    /* Professional card styling for stats */
    .rounded-xl {
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
      border: 1px solid rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(10px);
    }
    
    /* Better text readability */
    p, .text-lg {
      line-height: 1.7;
      letter-spacing: 0.01em;
    }

    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, #3a96ff, #2575d8);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 1000;
      box-shadow: 0 10px 30px rgba(58, 150, 255, 0.4);
    }
    
    .back-to-top.visible {
      opacity: 1;
      visibility: visible;
    }
    
    .back-to-top:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(58, 150, 255, 0.6);
    }
    
    .back-to-top::before {
      content: '↑';
      color: white;
      font-size: 24px;
      font-weight: bold;
    }
    
    /* 2. Particle Background */
    .particle-container {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: -1;
      overflow: hidden;
    }
    
    .particle {
      position: absolute;
      width: 4px;
      height: 4px;
      background: rgba(58, 150, 255, 0.4);
      border-radius: 50%;
      animation: float-particle 20s infinite ease-in-out;
    }
    
    @keyframes float-particle {
      0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
      }
      10% {
        opacity: 1;
      }
      90% {
        opacity: 1;
      }
      100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
      }
    }
    
    /* 3. Toast Notification System */
    .toast-container {
      position: fixed;
      top: 20px;
      right: 20px;
      z-index: 10000;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    
    .toast {
      background: rgba(26, 32, 44, 0.95);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 16px 20px;
      min-width: 300px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
      display: flex;
      align-items: center;
      gap: 12px;
      animation: slideInRight 0.4s ease-out;
    }
    
    .toast.success {
      border-left: 4px solid #00c896;
    }
    
    .toast.error {
      border-left: 4px solid #ef4444;
    }
    
    .toast.info {
      border-left: 4px solid #3a96ff;
    }
    
    @keyframes slideInRight {
      from {
        transform: translateX(400px);
        opacity: 0;
      }
      to {
        transform: translateX(0);
        opacity: 1;
      }
    }
    
    .toast-icon {
      font-size: 20px;
    }
    
    .toast-message {
      flex: 1;
      color: rgba(255, 255, 255, 0.95);
      font-size: 14px;
    }
    
    .toast-close {
      cursor: pointer;
      color: rgba(255, 255, 255, 0.6);
      font-size: 18px;
      transition: color 0.2s;
    }
    
    .toast-close:hover {
      color: rgba(255, 255, 255, 1);
    }
    
    /* 4. Enhanced Form Inputs */
    input[type="text"],
    input[type="email"],
    input[type="password"],
    textarea {
      background: rgba(255, 255, 255, 0.05) !important;
      border: 2px solid rgb(58 150 255 / 50%) !important;
      border-radius: 12px !important;
       
      font-size: 15px !important;
      transition: all 0.3s ease !important;
    }
    
    input[type="text"]:focus,
    input[type="email"]:focus,
    input[type="password"]:focus,
    textarea:focus {
      outline: none !important;
      border-color: #3a96ff !important;
      background: rgba(255, 255, 255, 0.08) !important;
      box-shadow: 0 0 0 4px rgba(58, 150, 255, 0.1) !important;
      transform: translateY(-2px);
    }
    
    /* 5. Wallet Card 3D Flip Effect */
    .wallet-item {
      perspective: 1000px;
      transform-style: preserve-3d;
    }
    
    .wallet-item:active {
      transform: scale(0.98) translateY(-6px);
    }
    
    /* 6. Parallax Scroll Elements */
    .parallax-slow {
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    /* 7. Enhanced Mobile Menu */
    @media (max-width: 768px) {
      .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(8px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
      }
      
      .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
      }
      
      .mobile-menu {
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      }
      
      .mobile-menu.active {
        transform: translateX(0);
      }
    }
    
    /* 8. Loading Skeleton */
    .skeleton {
      background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.05) 25%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0.05) 75%
      );
      background-size: 200% 100%;
      animation: skeleton-loading 1.5s infinite;
      border-radius: 8px;
    }
    
    @keyframes skeleton-loading {
      0% { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }
    
    /* 9. Smooth Section Transitions */
    section {
      animation: fadeInSection 0.8s ease-out;
    }
    
    @keyframes fadeInSection {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    /* 10. Glow Effects on Hover */
    .glow-on-hover {
      position: relative;
    }
    
    .glow-on-hover::after {
      content: '';
      position: absolute;
      inset: -2px;
      background: linear-gradient(45deg, #3a96ff, #00c896, #3a96ff);
      border-radius: inherit;
      opacity: 0;
      filter: blur(20px);
      z-index: -1;
      transition: opacity 0.3s ease;
    }
    
    .glow-on-hover:hover::after {
      opacity: 0.7;
    }
    
    /* 12. Better Image Lazy Loading */
    img[loading="lazy"] {
      opacity: 0;
      transition: opacity 0.4s ease;
    }
    
    img[loading="lazy"].loaded {
      opacity: 1;
    }
    
    /* 13. Mobile Optimizations */
    @media (max-width: 768px) {
      .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
      }
      
      .toast-container {
        right: 10px;
        left: 10px;
        top: 10px;
      }
      
      .toast {
        min-width: auto;
        width: 100%;
      }
      
      /* Better mobile spacing */
      section {
        padding-left: 16px;
        padding-right: 16px;
      }
      
      /* Mobile-friendly touch targets */
      button, a, .wallet-item {
        min-height: 44px;
        min-width: 44px;
      }
    }
    
    /* 15. Scroll Reveal Animations */
    .reveal {
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }
    
    /* 16. Enhanced Scrollbar */
    ::-webkit-scrollbar {
      width: 12px;
    }
    
    ::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.05);
    }
    
    ::-webkit-scrollbar-thumb {
      background: linear-gradient(180deg, #3a96ff, #2575d8);
      border-radius: 10px;
      border: 2px solid rgba(0, 0, 0, 0.1);
    }
    
    ::-webkit-scrollbar-thumb:hover {
      background: linear-gradient(180deg, #4aa6ff, #3585e8);
    }
    
    /* 17. Pulse Animation for CTAs */
    @keyframes pulse-cta {
      0%, 100% {
        box-shadow: 0 0 0 0 rgba(58, 150, 255, 0.7);
      }
      50% {
        box-shadow: 0 0 0 20px rgba(58, 150, 255, 0);
      }
    }
    
    .pulse-cta {
      animation: pulse-cta 2s infinite;
    }
    
    /* ========== CAROUSEL STYLES ========== */
    .wallet-carousel-container {
      position: relative;
      overflow: hidden;
      padding: 0;
      margin: 0 auto;
      max-width: 100%;
      background: transparent;
      border-radius: 0;
      border: none;
      --carousel-gap: 30px;
    }
    
    .wallet-carousel {
      display: flex;
      transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      gap: var(--carousel-gap);
      will-change: transform;
    }
    
    .wallet-carousel-item {
      flex: 0 0 calc((100% - 2 * var(--carousel-gap)) / 3);
      flex-shrink: 0;
      transition: transform 0.3s ease;
    }
    
    .wallet-carousel-item:hover {
      transform: translateY(-3px);
    }
    
    /* Make carousel cards bigger and more prominent - NO BORDERS OR SHADOWS */
    .wallet-carousel-item .features-item {
      min-height: 300px;
      padding: 36px 28px;
      background: linear-gradient(135deg, rgba(26, 32, 44, 0.95), rgba(30, 41, 59, 0.9));
      border: none;
      box-shadow: none;
    }
    
    .wallet-carousel-item .features-item:hover {
      background: linear-gradient(135deg, rgba(30, 41, 59, 0.98), rgba(37, 51, 73, 0.95));
    }
    
    @media (max-width: 1024px) {
      .wallet-carousel-container {
        --carousel-gap: 24px;
      }
      .wallet-carousel-item {
        flex: 0 0 calc((100% - var(--carousel-gap)) / 2);
      }
    }
    
    @media (max-width: 640px) {
      .wallet-carousel-container {
        --carousel-gap: 20px;
      }
      .wallet-carousel-item {
        flex: 0 0 100%;
      }
    }
    
    /* Arrow buttons removed - swipe only */
    .carousel-arrow {
      display: none !important;
    }
    
    .carousel-dots {
      display: inline-flex;
      justify-content: center;
      gap: 6px;
      margin-top: 30px;
      padding: 0;
      background: transparent;
      border-radius: 0;
      position: relative;
      left: 50%;
      transform: translateX(-50%);
      border: none;
    }
    
    .carousel-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
      padding: 0;
    }
    
    .carousel-dot:hover {
      background: rgba(58, 150, 255, 0.8);
      transform: scale(1.1);
    }
    
    .carousel-dot.active {
      background: #3a96ff;
      width: 16px;
      height: 6px;
      border-radius: 3px;
    }
    
    .carousel-dot.active:hover {
      background: #4aa6ff;
      transform: scale(1.02);
    }
    
    /* ========== REVIEWS CAROUSEL STYLES ========== */
    .reviews-carousel-container {
      position: relative;
      overflow: hidden;
      padding: 0;
      margin: 0 auto;
      max-width: 100%;
      --review-gap: 30px;
    }
    
    .reviews-carousel {
      display: flex;
      transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      gap: var(--review-gap);
      will-change: transform;
    }
    
    .review-card {
      flex: 0 0 calc((100% - 2 * var(--review-gap)) / 3);
      background: linear-gradient(135deg, rgba(26, 32, 44, 0.95), rgba(30, 41, 59, 0.9));
      border-radius: 16px;
      padding: 32px 28px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      transition: transform 0.3s ease;
    }
    
    .review-card:hover {
      transform: translateY(-5px);
    }
    
    .review-card .stars {
      color: #FFD700;
      font-size: 24px;
      letter-spacing: 4px;
    }
    
    .review-card .review-text {
      color: rgba(255, 255, 255, 0.9);
      font-size: 16px;
      line-height: 1.6;
      flex-grow: 1;
      font-style: italic;
    }
    
    .review-card .reviewer {
      display: flex;
      align-items: center;
      gap: 16px;
      padding-top: 16px;
      border-top: 1px solid rgba(58, 150, 255, 0.2);
    }
    
    .review-card .avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      flex-shrink: 0;
      object-fit: cover;
      border: 2px solid rgba(58, 150, 255, 0.3);
    }
    
    .review-card .reviewer-name {
      font-size: 18px;
      font-weight: 600;
      color: white;
      margin-bottom: 4px;
    }
    
    .review-card .reviewer-title {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.6);
    }
    
    .review-carousel-dots {
      display: inline-flex;
      justify-content: center;
      gap: 8px;
      margin-top: 40px;
      padding: 0;
      background: transparent;
      border-radius: 0;
      position: relative;
      left: 50%;
      transform: translateX(-50%);
      border: none;
    }
    
    .review-carousel-dots .carousel-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.25);
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
      padding: 0;
    }
    
    .review-carousel-dots .carousel-dot:hover {
      background: rgba(58, 150, 255, 0.6);
      transform: scale(1.1);
    }
    
    .review-carousel-dots .carousel-dot.active {
      background: #3a96ff;
      width: 16px;
      height: 6px;
      border-radius: 3px;
    }
    
    .review-carousel-dots .carousel-dot.active:hover {
      background: #4aa6ff;
      transform: scale(1.02);
    }
    
    @media (max-width: 1024px) {
      .reviews-carousel-container {
        --review-gap: 24px;
      }
      .review-card {
        flex: 0 0 calc((100% - var(--review-gap)) / 2);
      }
    }
    
    @media (max-width: 640px) {
      .reviews-carousel-container {
        --review-gap: 20px;
      }
      .review-card {
        flex: 0 0 100%;
      }
      
      /* Hide carousel dots on mobile for smooth experience */
      .carousel-dots,
      .review-carousel-dots {
        display: none !important;
      }
    }

    [data-is-visible="true"] .fa-eye {
  display: none;
}

[data-is-visible="true"] .fa-eye-slash {
  display: inline;
}

[data-is-visible="false"] .fa-eye {
  display: inline;
}

[data-is-visible="false"] .fa-eye-slash {
  display: none;
}

.connect-btn:hover {
    color:black!important;
}
.btn-accent6:hover {
    color:black!important;
}
.popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.popup {
    background-color: white;
    padding: 16px;
    border-radius: 16px;
}
.toggle-field {
    margin-top:16px;
}
textarea,input {
        color: black;
    border: 1px black;
    border-style: outset;
    padding: 8px;
}
}

.wallet-item {
  text-align: center;
  border: 0.5px solid #ffffff36;
  border-radius:16px;
  padding-top:8px; padding-bottom:8px;
}

.wallet-item img {
    display:inline-block;
  height: 80px; /* Maintain a fixed height for consistent layout */
  border-radius: 16px;
  object-fit: cover; /* Ensures the image fits within the circular border */
}

/* Mobile Styles */
@media (max-width: 576px) { /* Adjust the breakpoint as needed */
  .wallet-item img {
    height: 70px; /* Smaller height for mobile */
  }

  /* Optionally adjust the layout or grid for mobile */
  .wallet-item {
    text-align: center; /* Center align for better presentation on mobile */
    font-size:11px;
    
    padding-left: 0px!important;
  padding-right: 0px!important;
  }
}
/* End Mobile Style */


.wallet-name {
  margin-top: 8px;
  font-weight: bold;
  
}

#walletGrid {
  max-height: 400px;
  padding-right:16px; padding-left:16px;
  overflow-y: auto;
  overflow-x: hidden;
}

/* Custom scrollbar styling for walletModal */
#walletGrid::-webkit-scrollbar {
  width: 8px; /* Width of the scrollbar */
}

#walletGrid::-webkit-scrollbar-track {
  background-color: #f1f1f1; /* Background color of the scrollbar track */
  border-radius: 4px;
}

#walletGrid::-webkit-scrollbar-thumb {
  background-color: #3a96ff; /* Color of the scrollbar thumb */
  border-radius: 4px;
}

#walletGrid::-webkit-scrollbar-thumb:hover {
  background-color: #555; /* Color when hovered */
}


/* Hover effect and pointer cursor on wallet items */
.wallet-item {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wallet-item:hover {
  transform: scale(1.05); /* Slightly enlarge on hover */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow on hover */
  background-color: rgba(0,0,0,0.2);
  border-radius: 16px;
  padding: 16px;
}

.selected-wallet {
  text-align: center;
  margin-top: 20px;
}

.rounded-image {
  width: 100px;  /* Adjust the width as needed */
  height: 100px; /* Adjust the height as needed */
  border-radius: 50%; /* This makes the image rounded */
  object-fit: cover; /* Ensures the image covers the area without stretching */
}

.wallet-name {
  margin-top: 10px;
  font-weight: bold; /* Optional: Makes the wallet name bold */
}

    /* Container for alignment */
.search-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: #f9f9f90f;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom:16px;
}

/* Search bar styling */
.search-bar {
  position: relative;
  width: 100%;
  max-width: 400px;
  display: flex;
  align-items: center;
  background-color: #ffffff00;
  border: 1px solid #ddd;
  border-radius: 25px;
  padding: 10px 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.search-bar input {
    color:white;
}

.search-bar:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Icon styling */
.search-icon {
  color: #999;
  font-size: 18px;
  margin-right: 10px;
}

/* Input field styling */
.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  color: #333;
  background: transparent;
  padding: 5px 0;
}

.search-input::placeholder {
  color: #aaa;
}

/* Responsive design */
@media (max-width: 480px) {
  .search-bar {
    max-width: 100%;
  }
}

.note {
    color:black;
    padding-top:16px;padding-bottom:16px;
}
.btn-connect {
    display: inline-flex;
    background-color:#3a96ff;
    outline-color:#3a96ff;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 9999px;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 500;
    color: rgb(255, 255, 255);
    outline-style: solid;
    outline-width: 1px;
    outline-offset: 3px;
    transition-duration: 300ms;
    transition-timing-function: linear;
}
.form-control {
  width: 100%;
  padding: 10px 15px;
  font-size: 16px;
  font-family: Arial, sans-serif;
  color: #333;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  outline: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-control:focus {
  border-color: #007bff;
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2);
}

.form-control::placeholder {
  color: #aaa;
  font-style: italic;
}

.form-control:hover {
  border-color: #0056b3;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}
        .crypto-ticker {
            background: linear-gradient(90deg, #1D2330 0%, #262B38 100%);
            overflow: hidden;
            white-space: nowrap;
            padding: 12px 0;
            border-bottom: 1px solid #282E3B;
            position: relative;
        }
        
        .ticker-wrap {
            display: flex;
            width: 100%;
        }
        
        .ticker-content {
            display: flex;
            flex-wrap: nowrap;      /* prevents items from wrapping */
            animation: scroll-left 40s linear infinite;
        }
        
        .ticker-item {
            display: flex;          /* flex to align image + text */
            align-items: center;    /* vertically center everything */
            margin-right: 50px;     /* space between items */
            color: #fff;
            font-size: 14px;
            font-weight: 500;
            flex-shrink: 0;         /* prevent shrinking */
            white-space: nowrap;    /* prevent text from wrapping */
        }
        
        .ticker-symbol {
            color: #3a96ff;
            font-weight: 600;
            margin-right: 8px;
        }
        
        .ticker-image img {
            width: 20px;
            height: 20px;
            margin-right: 6px;
            border-radius: 50%;
            display: inline-block;
            vertical-align: middle;
        }
        
        .ticker-price {
            color: #00C896;
            margin-right: 8px;
        }
        
        .ticker-change-up {
            color: #00C896;
        }
        
        .ticker-change-down {
            color: #FF4757;
        }
        
        @keyframes scroll-left {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); } /* use 50% if you duplicate content for smooth loop */
        }