/* Author image styling */
.cad-avatar img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.cad-avatar:hover img {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Animated text styling */
.cad-animated-name {
    font-family: 'Arial', sans-serif;
    font-size: 2rem;
    color: #2c3e50;
    margin: 15px 0;
    min-height: 40px;
    position: relative;
}

/* Typing cursor effect */
.cad-animated-name::after {
    content: "|";
    animation: cad-blink 1s infinite;
    position: absolute;
    margin-left: 3px;
}

@keyframes cad-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}