
:root {
    --glow-color: #00f7ff;
    --dark-bg: #000000;
    --text-color: #ffffff;
    --window-bg: rgba(0, 247, 255, 0.1);
}

@keyframes subtleFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(2px, -2px) rotate(1deg); }
    75% { transform: translate(-2px, 2px) rotate(-1deg); }
}

@keyframes intensifiedGlitch {
    0% { transform: translate(0) skew(0deg); filter: hue-rotate(0deg); }
    20% { transform: translate(-2px, 2px) skew(2deg); filter: hue-rotate(90deg); }
    40% { transform: translate(2px, -2px) skew(-2deg); filter: hue-rotate(180deg); }
    60% { transform: translate(-2px, -2px) skew(0deg); filter: hue-rotate(270deg); }
    80% { transform: translate(2px, 2px) skew(2deg); filter: hue-rotate(360deg); }
    100% { transform: translate(0) skew(0deg); filter: hue-rotate(0deg); }
}

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

body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    font-family: 'Courier New', monospace;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    cursor: url('asset/cursor.svg') 10 10, pointer;

}

#custom-cursor {
    width: 20px;
    height: 20px;
   /* border: 2px solid var(--glow-color);
    border-radius: 50%;*/
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
}

#golden-ratio-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('asset/golden-ratio.png') center center no-repeat;
    background-size: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: -1;
}

.glitch-text {
    position: absolute;
    color: var(--glow-color);
    text-shadow: 0 0 10px var(--glow-color);
    pointer-events: none;
    z-index: 1000;
    font-size: 1.2rem;
    opacity: 0.7;
    animation: intensifiedGlitch 0.3s infinite;
    mix-blend-mode: screen;
}

.center-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px;
    text-align: center;
}

.logo {
    width: 200px;
    height: 200px;
    animation: subtleFloat 8s ease-in-out infinite;
    transition: all 0.3s ease;
}

.intensified .logo {
    animation: intensifiedGlitch 2s infinite;
}

.title {
    font-size: 2.5rem;
    margin: 20px 0;
    text-shadow: 0 0 20px var(--glow-color);
    animation: subtleFloat 3s infinite;
    position: relative;
}

.title::before, .title::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    text-shadow: none;
    opacity: 0.3;
    animation: intensifiedGlitch 3s infinite alternate-reverse;
}

.title::before {
    top: 2px;
    color: #ff00ff;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.title::after {
    bottom: 2px;
    color: #00ffff;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

.description {
    max-width: 600px;
    line-height: 1.8;
    margin: 20px auto;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 0 5px var(--glow-color);
    position: relative;
    z-index: 1;
}

.window-95 {
    position: absolute;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid var(--glow-color);
    box-shadow: 0 0 30px rgba(0, 247, 255, 0.2);
    width: 300px;
    color: var(--glow-color);
    backdrop-filter: blur(5px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.window-95:hover {
    box-shadow: 0 0 40px rgba(0, 247, 255, 0.4);
    transform: scale(1.02);
}

.window-95-header {
    background: var(--glow-color);
    color: var(--dark-bg);
    padding: 8px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.window-95-content {
    padding: 15px;
    min-height: 100px;
    font-family: 'Courier New', monospace;
    line-height: 1.5;
    position: relative;
    overflow: hidden;
}

.window-95-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(0, 247, 255, 0.1) 50%, transparent 100%);
    animation: subtleFloat 3s infinite;
    pointer-events: none;
}

.stats {
    position: fixed;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--glow-color);
    padding: 15px;
    color: var(--glow-color);
    font-family: 'Courier New', monospace;
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.3);
    z-index: 2000;
}

.bottom-nav {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 2000;
}

.nav-button {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--glow-color);
    color: var(--glow-color);
    padding: 10px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 247, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.nav-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 247, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: subtleFloat 3s infinite;
}

.nav-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(0, 247, 255, 0.5);
    cursor:pointer;
}

.hidden-trigger {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 50%;
    right: 10%;
    cursor: pointer;
    opacity: 0;
}

@media (max-width: 768px) {
    .window-95 {
        width: 90%;
        max-width: 300px;
    }

    .title {
        font-size: 2rem;
    }

    .description {
        font-size: 0.9rem;
        padding: 0 15px;
    }

    .bottom-nav {
        flex-direction: column;
        align-items: center;
        bottom: 10px;
    }
}






/* Background Moving Text */
.background-text {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.background-text p {
    font-size: 3rem;
    font-weight: bold;
    opacity: 0.1;
    white-space: nowrap;
    position: absolute;
    animation: moveText 15s linear infinite;
}

@keyframes moveText {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}


/* Floating Buttons */
.floating-buttons .button {
    position: absolute;
    background-color: #444444;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.floating-buttons .button:hover {
    transform: scale(1.1);
}

