* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ffffff;
    overflow: hidden;
    /* Prevent scrolling */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><text y="28" font-size="28">🐱</text></svg>'), auto;
}

.cat-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Allow clicks to pass through to the canvas, but allow selecting text */
    pointer-events: none;
    z-index: 10;
    text-align: center;
    width: 80%;
    max-width: 600px;
}

.cat-image {
    width: 300px;
    height: 300px;
    border-radius: 50px;
    object-fit: cover;
    box-shadow: 0 0 50px rgba(0, 243, 255, 0.3);
    /* Soft cyan glow */
    animation: float 6s ease-in-out infinite;
    margin-bottom: 20px;
    pointer-events: auto;
    /* Allow interaction with image if needed */
}

.profile-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    pointer-events: auto;
    /* Allow text selection */
    visibility: hidden;
    /* Hide initially */
}

.profile-role {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
    pointer-events: auto;
    visibility: hidden;
    /* Hide initially */
}

.profile-desc {
    font-size: 1rem;
    color: #888;
    line-height: 1.6;
    pointer-events: auto;
    visibility: hidden;
    /* Hide initially */
}

/* Typing Effect Cursor */
.typing-cursor::after {
    content: '|';
    display: inline-block;
    margin-left: 2px;
    color: #333;
    animation: blink 0.7s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

canvas {
    display: block;
    /* Removes bottom margin/whitespace */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}