
 
    :root {
        --neon-blue: #00f2ff;
        --neon-orange: #ff5e00;
        --neon-purple: #bc13fe;
        --void-black: #050508;
        --laser-red: #ff003c;
        --glass-panel: rgba(10, 10, 20, 0.85);
    }

    #token-sector {
        background-color: var(--void-black);
        background-image: 
            radial-gradient(circle at 50% 50%, rgba(0, 242, 255, 0.05) 0%, transparent 70%),
            linear-gradient(rgba(0, 242, 255, 0.02) 1px, transparent 1px),
            linear-gradient(90deg, rgba(0, 242, 255, 0.02) 1px, transparent 1px);
        background-size: 100% 100%, 40px 40px, 40px 40px;
        color: #e0e0e0;
        font-family: 'JetBrains Mono', monospace;
        padding: 80px 0;
        position: relative;  
        overflow: hidden;
    }

    
    .space-battle-layer {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        pointer-events: none;
        z-index: 0;
    }

    .starship {
        position: absolute;
        color: var(--neon-blue);
        font-size: 20px;
        filter: drop-shadow(0 0 10px var(--neon-blue));
        animation: shipMove linear infinite;
    }

    .starship.enemy {
        color: var(--neon-orange);
        filter: drop-shadow(0 0 10px var(--neon-orange));
        animation: shipMoveReverse linear infinite;
    }

    .starship::after {
        content: "";
        position: absolute;
        width: 40px; height: 2px;
        background: var(--neon-blue);
        box-shadow: 0 0 10px var(--neon-blue);
        top: 50%; right: -50px;
        animation: laserShoot 1.5s infinite;
    }

    .starship.enemy::after {
        background: var(--laser-red);
        box-shadow: 0 0 10px var(--laser-red);
        left: -50px; right: auto;
    }

    @keyframes shipMove {
        from { left: -10%; transform: translateY(0); }
        to { left: 110%; transform: translateY(50px); }
    }

    @keyframes shipMoveReverse {
        from { right: -10%; transform: translateY(0); }
        to { right: 110%; transform: translateY(-30px); }
    }

    @keyframes laserShoot {
        0% { transform: scaleX(0); opacity: 0; }
        50% { transform: scaleX(1); opacity: 1; }
        100% { transform: scaleX(0); opacity: 0; transform: translateX(100px); }
    }

    .bg-stream {
        position: absolute;
        top: -100px;
        color: var(--neon-blue);
        font-size: 10px;
        opacity: 0.1;
        animation: rain linear infinite;
    }

    @keyframes rain { from { transform: translateY(0); } to { transform: translateY(120vh); } }

    
    .cyber-panel {
        background: var(--glass-panel);
        border: 1px solid rgba(0, 242, 255, 0.1);
        position: relative;
        padding: 30px;
        backdrop-filter: blur(10px);
        clip-path: polygon(0 0, 95% 0, 100% 5%, 100% 100%, 5% 100%, 0 95%);
        height: 100%;
        transition: 0.3s;
        z-index: 1;  
    }

    .cyber-panel::before {
        content: "";
        position: absolute;
        top: 0; left: 0; width: 100%; height: 2px;
        background: linear-gradient(90deg, var(--neon-blue), transparent);
    }

    
    .info-row {
        background: rgba(255, 255, 255, 0.03);
        border-left: 3px solid var(--neon-blue);
        margin-bottom: 10px;
        padding: 12px 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: 0.3s;
    }

    .info-row:hover {
        background: rgba(0, 242, 255, 0.08);
        transform: translateX(5px);
    }

    .label-text { font-family: 'Share Tech Mono', monospace; color: #888; font-size: 12px; text-transform: uppercase; }
    .value-text { font-family: 'Orbitron', sans-serif; color: var(--neon-blue); font-size: 13px; font-weight: bold; }

    
    .chart-wrapper {
        position: relative;
        padding: 20px;
        filter: drop-shadow(0 0 15px rgba(0, 242, 255, 0.15));
    }

    
    .scanning-line {
        position: absolute;
        width: 100%; height: 2px;
        background: var(--neon-blue);
        box-shadow: 0 0 15px var(--neon-blue);
        left: 0; z-index: 5;
        opacity: 0.4;
        animation: scanVertical 4s linear infinite;
    }

    @keyframes scanVertical { 0% { top: 0%; } 100% { top: 100%; } }

     
    .cyber-btn {
        background: transparent;
        border: 1px solid var(--neon-blue);
        color: var(--neon-blue);
        font-family: 'Orbitron', sans-serif;
        font-size: 11px;
        padding: 8px 20px;
        text-decoration: none;
        transition: 0.3s;
        display: inline-block;
        clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
    }

    .cyber-btn:hover {
        background: var(--neon-blue);
        color: #000;
        box-shadow: 0 0 20px var(--neon-blue);
    }

    
    .cyber-accordion .accordion-item {
        background: transparent;
        border: 1px solid rgba(0, 242, 255, 0.1);
        margin-top: 20px;
    }

    .cyber-accordion .accordion-button {
        background: rgba(0, 242, 255, 0.05);
        color: #fff;
        font-family: 'Orbitron', sans-serif;
        font-size: 14px;
        border: none; box-shadow: none;
    }

    .cyber-accordion .accordion-button:not(.collapsed) {
        color: var(--neon-blue);
        border-bottom: 1px solid var(--neon-blue);
    }
 
