body {
    margin: 0;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: monospace;
    overflow: hidden;
    color: #ffffff;
}

.content-container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 50vw;
    padding: 2rem;
}

.name {
    font-size: 3em;
    margin-bottom: 0.5em;
    font-family: monospace;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    position: relative;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    animation: gentleGlitch 4s infinite;
}

.title {
    font-size: 1.5em;
    margin-bottom: 2em;
    opacity: 0.9;
    letter-spacing: 0.1em;
}

@keyframes gentleGlitch {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translate(1px);
    }

    40% {
        transform: translate(-1px);
    }

    60% {
        transform: skew(0.5deg);
    }

    80% {
        transform: translate(1px);
    }

    100% {
        transform: translate(0);
    }
}

.section {
    margin: 2em 0;
    opacity: 0;
    animation: fadeIn 0.5s forwards;
    text-align: left;
}

.section-title {
    color: #888;
    margin-bottom: 1em;
    font-size: 1.2em;
    letter-spacing: 0.2em;
}

.project {
    margin: 1em 0;
    padding: 1em;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.5);
}

.project:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(1vw) skew(-2deg);
}

.project h3 {
    margin: 0 0 0.5em 0;
    color: #fff;
    letter-spacing: 0.1em;
}

.project p {
    color: #aaa;
    line-height: 1.4;
}

.cryptic-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.cryptic-symbol {
    opacity: 0.8;
    animation: float 3s ease-in-out infinite;
    position: absolute;
    color: #ffffff;
    mix-blend-mode: difference;
}

.glitch {
    animation: glitch 1s linear infinite;
    position: relative;
}

.contact {
    margin-top: 3em;
    padding: 1em;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact a {
    color: #888;
    text-decoration: none;
    margin: 0 1em;
    transition: all 0.3s ease;
    letter-spacing: 0.1em;
}

.contact a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
    display: inline-block;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg,
            rgba(0, 0, 0, 0.9) 0px,
            rgba(0, 0, 0, 0.9) 1px,
            transparent 1px,
            transparent 2px);
    pointer-events: none;
    z-index: 2;
    opacity: 0.5;
}

.vignette {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 50%, black 150%);
    pointer-events: none;
    z-index: 1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        filter: blur(0px);
    }

    50% {
        transform: scale(1.1);
        filter: blur(2px);
    }

    100% {
        transform: scale(1);
        filter: blur(0px);
    }
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }

    100% {
        transform: translateY(0) rotate(360deg);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.background-symbol {
    position: fixed;
    color: rgba(255, 255, 255, 0.1);
    pointer-events: none;
    z-index: 0;
    font-size: 40vh;
    animation: pulse 4s infinite;
}