:root {
            --bg-dark: #0f172a;
            --bg-card: rgba(30, 41, 59, 0.7);
            --solana-purple: #9945FF;
            --solana-green: #14F195;
            --text-primary: #ffffff;
            --text-secondary: #94a3b8;
            --glass-border: 1px solid rgba(255, 255, 255, 0.1);
            --boost-highlight: rgba(153, 69, 255, 0.1);
        }

        body {
            background-color: var(--bg-dark);
            color: var(--text-primary);
            font-family: 'Space Grotesk', sans-serif;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(153, 69, 255, 0.15) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(20, 241, 149, 0.15) 0%, transparent 20%);
            min-height: 100vh;
        }

        /* Navbar */
        .navbar {
            background: rgba(15, 23, 42, 0.8);
            backdrop-filter: blur(10px);
            border-bottom: var(--glass-border);
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            letter-spacing: -1px;
        }

        .brand-gem { color: var(--solana-purple); }
        .brand-pump { color: var(--solana-green); }
        .brand-fun { color: white; font-weight: 300; font-size: 0.8em; opacity: 0.7; }

        /* Boosted Section */
        .boosted-section { padding: 2rem 0; }
        .section-title {
            font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px;
            color: var(--solana-green); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 10px;
        }
        .section-title i { filter: drop-shadow(0 0 5px var(--solana-green)); }

        /* Boosted Cards */
        .boost-card {
            background: linear-gradient(145deg, rgba(30,41,59,0.9) 0%, rgba(15,23,42,0.9) 100%);
            border: 1px solid rgba(153, 69, 255, 0.3); border-radius: 16px; padding: 1.5rem;
            transition: all 0.3s ease; position: relative; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }
        .boost-card:hover { transform: translateY(-5px); border-color: var(--solana-green); box-shadow: 0 10px 30px rgba(20, 241, 149, 0.2); }

        .boost-badge {
            position: absolute; top: 10px; right: 10px;
            background: linear-gradient(45deg, var(--solana-purple), #d946ef);
            font-size: 0.6rem; padding: 4px 8px; border-radius: 20px; font-weight: bold; color: white;
            box-shadow: 0 0 10px rgba(153, 69, 255, 0.5);
        }

        /* CTA Banner */
        .cta-banner {
            margin: 3rem 0; background: linear-gradient(90deg, rgba(153,69,255,0.1) 0%, rgba(20,241,149,0.1) 100%);
            border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 3rem 1rem;
            text-align: center; position: relative; overflow: hidden;
        }
        .cta-banner::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
            background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMSIgY3k9IjEiIHI9IjEiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4xKSIvPjwvc3ZnPg==');
            opacity: 0.5;
        }

        .btn-glow {
            background: white; color: black; font-weight: 700; padding: 12px 30px; border-radius: 50px;
            border: none; box-shadow: 0 0 15px rgba(255, 255, 255, 0.5); transition: all 0.3s; position: relative; z-index: 2;
        }
        .btn-glow:hover {
            background: var(--solana-green); color: black; box-shadow: 0 0 25px var(--solana-green); transform: scale(1.05);
        }

        /* Token Table */
        .custom-table-container {
            background: var(--bg-card); border-radius: 20px; border: var(--glass-border);
            backdrop-filter: blur(10px); padding: 1rem; overflow-x: auto;
        }
        .table {
            color: var(--text-primary); margin-bottom: 0; vertical-align: middle;
            --bs-table-bg: transparent; --bs-table-color: var(--text-primary);
            --bs-table-hover-bg: rgba(255,255,255,0.05); --bs-table-hover-color: var(--text-primary);
            --bs-table-border-color: rgba(255,255,255,0.1);
        }
        .table thead th {
            border-bottom: 1px solid rgba(255,255,255,0.1); color: var(--text-secondary);
            font-weight: 400; font-size: 0.85rem; text-transform: uppercase;
        }
        .table td { border-bottom: 1px solid rgba(255,255,255,0.05); padding: 1rem 0.5rem; vertical-align: middle; }
        
        tr.row-boosted { background: linear-gradient(90deg, rgba(153, 69, 255, 0.1) 0%, transparent 100%); position: relative; }
        tr.row-boosted td:first-child { border-left: 3px solid var(--solana-purple); }
        .table tr:last-child td { border-bottom: none; }

        .token-info { display: flex; align-items: center; gap: 12px; }
        .token-img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.1); }
        .token-rank { width: 25px; text-align: center; color: var(--text-secondary); font-weight: bold; font-size: 0.9rem; }
        .token-ticker { color: var(--text-secondary); font-size: 0.8rem; }

        .btn-swap {
            background: rgba(255,255,255,0.1); color: var(--solana-green); border: 1px solid var(--solana-green);
            border-radius: 8px; padding: 6px 16px; font-size: 0.85rem; transition: all 0.2s;
        }
        .btn-swap:hover { background: var(--solana-green); color: black; }

        .price-up { color: var(--solana-green); }
        .price-down { color: #ef4444; }
        .icon-boost-list { color: #d946ef; font-size: 0.8rem; margin-left: 5px; animation: pulse 2s infinite; }
        @keyframes pulse { 0% { opacity: 0.6; } 50% { opacity: 1; text-shadow: 0 0 5px #d946ef; } 100% { opacity: 0.6; } }

        /* --- ESTILOS EXTRA PARA MODAL WALLET (Añadidos quirúrgicamente) --- */
        .modal-backdrop-custom { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); z-index: 1050; align-items: center; justify-content: center; backdrop-filter: blur(5px); }
        .wallet-modal { background: #1e293b; border: 1px solid rgba(255,255,255,0.1); padding: 20px; border-radius: 20px; width: 320px; position: relative; }
        .wallet-option { display: flex; justify-content: space-between; padding: 15px; background: rgba(255,255,255,0.05); border-radius: 12px; margin-bottom: 10px; cursor: pointer; border: 1px solid transparent; }
        .wallet-option:hover { background: rgba(255,255,255,0.1); border-color: var(--solana-green); }
        .modal-close { position: absolute; top: 15px; right: 15px; cursor: pointer; color: #94a3b8; }
        .swal2-popup { background: #1e293b !important; border: 1px solid rgba(255,255,255,0.1) !important; color: white !important; }
        
        .btn-connected {
            background: rgba(20, 241, 149, 0.15) !important;
            border-color: var(--solana-green) !important;
            color: var(--solana-green) !important;
        }
        .btn-connected:hover {
            border-color: #ef4444 !important;
            color: #ef4444 !important;
            background: rgba(239, 68, 68, 0.15) !important;
        }