        .vexax-topbar {
            width: 100%;
            height: 40px;
            background: linear-gradient(135deg, #121826 0%, #1e293b 100%);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            font-family: 'Orbitron', sans-serif;
            z-index: 9999;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        
        .vexax-center {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            font-size: 0.85rem;
            font-weight: 600;
            color: #fff;
            white-space: nowrap;
        }
        .vexax-center a {
            color: #FF8C00;
            /* color: #4cc9f0; */
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            margin: 0 8px;
        }
        .vexax-center a:hover {
            color: #fff;
            text-decoration: underline;
        }
        .separator {
            color: rgba(255, 255, 255, 0.3);
            margin: 0 5px;
        }
        /* Responsive */
        @media (max-width: 768px) {
            .vexax-center{
                font-size: 0.75rem;
            }
            .vexax-center {
                position: relative;
                left: 0;
                transform: none;
                order: 3;
                width: 100%;
                margin-top: 5px;
            }            
            .vexax-topbar {
                height: auto;
                min-height: 40px;
                flex-wrap: wrap;
                padding: 8px 15px;
            }
        }        
        @media (max-width: 480px) {
            .vexax-center{
                font-size: 0.7rem;
            }
        }
        .a-link{text-decoration: none;}