/* Reset default browser styles and set up full-screen layout */
body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #000;
}

/* Container for Three.js canvas */
#container {
    position: absolute;
    width: 100%;
    height: 100%;
}

#github-link {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 100;
    font-size: 14px;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
}

#github-link a {
    color: white;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}

#github-link a:hover {
    opacity: 1;
    text-decoration: underline;
}
