* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
}

#canvas {
    display: block;
    width: 100%;
    height: 100%;
    cursor: default;
}

.footer {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.social-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icons a {
    color: #fff;
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.2s ease;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.email {
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 14px;
    opacity: 0.7;
}
