* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

a {
    cursor: pointer;
}

.noise-bg {
    position: fixed;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    width: 200%;
    height: 200vh;
    background: transparent url('../assets/noise.png') repeat 0 0;
    background-repeat: repeat;
    animation: bg-animation .2s infinite;
    opacity: .9;
    visibility: visible;
    z-index: -1;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.text {
    text-align: center;
}

.text p {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.5px;
}

.nav-container {
    position: absolute;
    left: 30px;
    bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-prefix {
    font-family: 'Times New Roman', Times, serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    filter: blur(1.5px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-prefix:hover {
    filter: blur(0);
}

.nav-link, .nav-item {
    font-family: 'Times New Roman', Times, serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    filter: blur(1.5px);
    /* animation: glow 3s infinite alternate; */
}

.nav-link:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    filter: blur(0);
}

.nav-button {
    margin: 15px 0;
}

.showcase-btn {
    margin-bottom: 10px;
}

.nav-button a {
    font-family: 'Times New Roman', Times, serif;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    animation: glow 3s infinite alternate;
}

.nav-button a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

.glowing-text {
    font-family: 'Times New Roman', Times, serif;
    color: #fff;
    text-decoration: none;
    animation: glow-blur 2s infinite alternate;
}

@keyframes glow-blur {
    from {
        text-shadow: 0 0 1px #fff, 
                     0 0 2px #fff, 
                     0 0 5px #d3d3d3,
                     -1px 0 3px #acacac,
                     1px 0 3px #acacac;
    }
    to {
        text-shadow: 0 0 2px #fff, 
                     0 0 4px #d3d3d3, 
                     0 0 8px #d3d3d3,
                     -1px 0 5px #acacac,
                     1px 0 5px #acacac;
    }
}

@keyframes bg-animation {
    0% { transform: translate(0,0) }
    10% { transform: translate(-5%,-5%) }
    20% { transform: translate(-10%,5%) }
    30% { transform: translate(5%,-10%) }
    40% { transform: translate(-5%,15%) }
    50% { transform: translate(-10%,5%) }
    60% { transform: translate(15%,0) }
    70% { transform: translate(0,10%) }
    80% { transform: translate(-15%,0) }
    90% { transform: translate(10%,5%) }
    100% { transform: translate(5%,0) }
}

@media (max-width: 768px) {
    .nav-container {
        bottom: 15%;
    }

    .nav-button {
        margin: 10px 0;
    }
}


.eye-container {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.eye-svg {
    width: 100px;
    height: auto;
    z-index: 1;
}

.circular-text {
    position: absolute;
    width: 200px;
    height: 200px;
    animation: rotate 20s linear infinite;
}

.circular-text span {
    position: absolute;
    left: 50%;
    top: 0;
    transform-origin: 0 100px;
    font-size: 14px;
    color: #ddd;
    font-family: 'Times New Roman', Times, serif;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .eye-container,
    .circular-text {
        width: 150px;
        height: 150px;
    }

    .eye-svg {
        width: 75px;
    }

    .circular-text span {
        transform-origin: 0 75px;
    }
}


#model-container {
    position: fixed;
    top: 0;
    right: 0;
    width: 50vw;
    height: 100vh;
    z-index: 10;
}


#dead-model-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
}


.center-text {
    position: absolute;
}

@keyframes flicker {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
} 