:root {
    --neon-blue: #00f3ff;
    --deep-space: #020205;
    --glass: rgba(255, 255, 255, 0.05);
}

body {
    margin: 0;
    background-color: var(--deep-space);
    color: white;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

.glass-nav {
    background: var(--glass);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    padding: 20px 10%;
    position: fixed;
    width: 100%;
    z-index: 100;
}

.glass-panel {
    position: fixed;
    right: -400px;
    top: 0;
    width: 350px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--neon-blue);
    padding: 40px 20px;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.glass-panel.active { right: 0; }

.cta-btn {
    background: transparent;
    border: 1px solid var(--neon-blue);
    color: var(--neon-blue);
    padding: 15px 40px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
}

.cta-btn:hover {
    background: var(--neon-blue);
    color: black;
    box-shadow: 0 0 30px var(--neon-blue);
}