/* Video/Canvas Background */
#canvas-container {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

#canvas-container canvas {
    position: absolute;
    top: 0;
    left: 0;
}

/* Header Social Icons */
.header-social-links {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 15px;
}

.header-social-links a {
    color: white;
    font-size: 1.5rem;
    transition: transform var(--transition-speed);
    background: rgba(10, 25, 47, 0.6);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.header-social-links a:hover {
    transform: translateY(-3px);
    background: rgba(10, 25, 47, 0.8);
}
