body {
    background-color: #F0F0F0;
    margin: 0;
    padding: 0;
    font-family: "GT Pressura Mono Trial Md";
    overflow-x: hidden;
}
* {
    cursor: none;
}
html, body {
    cursor: none;
}
body.show-custom-cursor #custom-cursor {
    display: block;
}
#custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    pointer-events: none; 
    z-index: 9999;
    display: block;
}
#custom-cursor::before, #custom-cursor::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: red;
    top: 50%;
    left: 50%;
    transform-origin: center;
}
#custom-cursor::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
#custom-cursor::after {
    transform: translate(-50%, -50%) rotate(-45deg); 
}
.navbar {
    font-family: "GT Pressura Mono Trial Md"; 
    width: 100%;
    height: 56px;
    background-color: #F0F0F0;
    border-bottom: 1pt solid black;
    display: flex;
    align-items: center;
    position: fixed; 
    top: 0;
    left: 0;
    z-index: 1000;
    transition: transform 0.3s ease; 
    transform: translateY(0); 
}
.nav-arrow {
    position: absolute;
    left: 1.5%; 
    top: 50%; 
    transform: translateY(-50%); 
}
.arrow-link svg {
    display: inline-block;
    vertical-align: middle;
    fill: #707070; 
    transition: fill 0.3s ease;
}
.arrow-link:hover svg {
    fill: #FF9D00 !important;
}
.nav-link {
    text-decoration: none;
    color: #707070;
    font-family: inherit;
    font-size: 14pt; 
    transition: color 0.3s;
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); 
}
.nav-link:hover {
    color: #FF9D00; 
}
.nav-link.active {
    color: #0000FF;
}
.nav-link[href="about.html"] {
    left: 7.4%; 
}
.nav-link[href="designer.html"] {
    left: 55.5%;
}
.nav-link[href="visual.html"] {
    left: 69.7%; 
}
.nav-link[href="space.html"] {
    left: 74.9%; 
}
.separator {
    position: absolute;
    left: 74.1%; 
    top: 50%; 
    transform: translateY(-50%); 
    color: #707070;
    pointer-events: none;
    font-size: 14pt;
}
.nav-link[href="archive.html"] {
    left: 87.9%; 
}
.nav-line {
    position: absolute;
    width: 1pt; 
    height: 45px; 
    background-color: black; 
    bottom: 0; 
}
.nav-line.designer {
    left: calc(55.5% - 17px - 1pt); 
}
.nav-line.visual-space {
    left: calc(69.7% - 17px - 0.5pt); 
}
.nav-line.archive {
    left: calc(87.9% - 17px - 1pt); 
}
@media screen and (max-width: 767px) {
    .navbar {
        width: 100vw;
    }
    .nav-link {
        font-size: 12pt;
    }
    .nav-line {
        width: 0.5pt;
    }
    .navbar {
        font-family: "GT Pressura Mono Trial Md";
        width: 100%;
        height: 56px;
        display: flex;
        align-items: center;
        position: fixed;
        top: 0;
        z-index: 1000;
        border-bottom: none; 
        padding: 0;
    }
    .nav-arrow {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center; 
    }
    .nav-line {
        display: none;
    }
    .nav-link:hover {
        color: #FF9D00;
    }
    .nav-link[href="about.html"] {
        left: 11%;
    }
    .nav-link[href="designer.html"] {
        left: 30%;
    }
    .nav-link[href="visual.html"] {
        left: 52%;
    }
    .separator {
        position: absolute;
        left: 65%;
        top: 50%;
        transform: translateY(-50%);
        color: #707070;
        pointer-events: none;
        font-size: 14pt;
    }
    .nav-link[href="space.html"] {
        left: 70%;
    }
    .nav-link[href="archive.html"] {
        left: 87%;
    }
    .nav-link {
        font-size: 3vw;
    }
    .arrow-link svg {
        width: 3vw;
    }
    .nav-line {
        height: 60%;
    }
    .nav-line.designer {
        left: calc(55.5% - 2vw);
    }
    .nav-line.visual-space {
        left: calc(69.7% - 2vw);
    }
    .nav-line.archive {
        left: calc(87.9% - 2vw);
    }
    .nav-arrow {
    position: absolute;
    left: 1.5%; 
    top: 50%; 
    transform: translateY(-50%); 
    }
    .arrow-link svg {
    display: inline-block;
    vertical-align: middle;
    fill: #707070; 
    transition: fill 0.3s ease;
    }}