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

body {
    /* 80s Vaporwave Background Gradient */
    font-family: 'Share Tech Mono', monospace; /* A classic retro font */
    background: linear-gradient(135deg, #0f0a20 0%, #301934 50%, #0f0a20 100%);
    color: #ffd6ff; /* Soft magenta/pink text */
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

#fractalCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Optional: Add a filter to colorize the fractal a bit */
    filter: hue-rotate(280deg) brightness(0.8);
}

.overlay {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    padding: 2rem;
    /* Lighter background filter than the original */
    background: rgba(48, 25, 52, 0.4); 
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

header {
    text-align: center;
    margin-bottom: 3rem;
    /* Give the header a perspective feel */
    transform: perspective(1000px) rotateX(5deg); 
}

h1 {
    font-size: clamp(2.5rem, 10vw, 6rem);
    font-weight: 400;
    letter-spacing: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: #40c4ff; /* Bright Cyan for contrast */

    /* Neon Glow Effect - Replaces the glitch */
    text-shadow: 
        0 0 5px #ff4081, /* Pink inner glow */
        0 0 15px #ff4081,
        0 0 30px #40c4ff, /* Cyan outer halo */
        0 0 50px #40c4ff;

    animation: neon-pulse 4s ease-in-out infinite alternate;
}

/* Removed .glitch styling as the neon glow replaces it */
/* Removed @keyframes glitch-1 and glitch-2 */

@keyframes neon-pulse {
    0% {
        opacity: 0.9;
        text-shadow: 
            0 0 4px #ff4081, 
            0 0 10px #40c4ff;
    }
    100% {
        opacity: 1;
        text-shadow: 
            0 0 6px #ff4081, 
            0 0 20px #ff4081, 
            0 0 40px #40c4ff;
    }
}

.subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    letter-spacing: 0.4rem;
    color: #6a1b9a; /* Deep violet */
    text-transform: capitalize;
    font-style: italic;
    text-shadow: 0 0 5px rgba(255, 214, 255, 0.3);
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about {
    display: inline-block;
    padding: 2rem 3rem;
    text-align: center;
    text-decoration: none; /* Remove underline */
    color: #ffd6ff;
    
    /* Cyan glowing border frame */
    border: 2px solid #00ffff;
    box-shadow: 
        0 0 10px #00ffff,
        0 0 20px #00ffff,
        0 0 30px #00ffff,
        inset 0 0 10px rgba(0, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.about:hover {
    text-decoration: none; /* Keep no underline on hover */
    box-shadow: 
        0 0 15px #00ffff,
        0 0 30px #00ffff,
        0 0 45px #00ffff,
        inset 0 0 15px rgba(0, 255, 255, 0.3);
    transform: scale(1.05);
}

.bio {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.6;
    color: #ffd6ff;
    letter-spacing: 0.08rem;
}

footer {
    text-align: center;
}

.instruction {
    font-size: 1rem;
    color: #40c4ff; /* Bright cyan */
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    opacity: 0.8;
    /* Softened blink effect */
    animation: soft-blink 3s infinite;
}

@keyframes soft-blink {
    0%, 100% {
        opacity: 0.9;
        text-shadow: 0 0 5px #40c4ff;
    }
    50% {
        opacity: 0.5;
        text-shadow: none;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .overlay {
        padding: 1rem;
    }

    h1 {
        letter-spacing: 0.4rem;
    }

    .subtitle {
        letter-spacing: 0.2rem;
    }

    .about {
        padding: 2rem;
        /* Disable 3D tilt on mobile for simplicity */
        transform: none; 
    }

    .instruction {
        font-size: 0.8rem;
        letter-spacing: 0.15rem;
    }
}
