.about-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    background: rgba(147, 112, 219, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    animation: iconGlow 4s ease-in-out infinite;
    color: #9370db;
    margin-right: 20px;
    overflow: visible;
    position: relative;
}

.about-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.about-icon::after {
    content: 'About Lily';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    color: #9370db;
    padding: 8px 16px;
    font-size: 16px;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
    text-shadow: 0 0 10px rgba(147, 112, 219, 0.4);
    z-index: 1000;
    font-weight: 500;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.about-icon:hover {
    transform: scale(1.1) rotate(15deg);
    background: rgba(147, 112, 219, 0.3);
    filter: drop-shadow(0 0 40px rgba(147, 112, 219, 0.9))
           drop-shadow(0 0 80px rgba(147, 112, 219, 0.7));
}

.about-icon:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    background: rgba(255, 255, 255, 0.15);
    color: #9370db;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

/* Light theme specific about icon styles */
body.light-theme .about-icon {
    background: rgba(147, 112, 219, 0.1);
    color: #9370db;
}

body.light-theme .about-icon:hover {
    background: rgba(147, 112, 219, 0.2);
}

@keyframes iconGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(183, 157, 255, 0.8))
               drop-shadow(0 0 40px rgba(183, 157, 255, 0.4));
        opacity: 0.8;
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(183, 157, 255, 0.9))
               drop-shadow(0 0 60px rgba(183, 157, 255, 0.6));
        opacity: 1;
    }
}

/* Media queries for the about icon */
@media (max-width: 768px) {
    .about-icon {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }
    
    .about-icon::after {
        font-size: 12px;
        padding: 4px 10px;
    }
}

@media (max-width: 480px) {
    .about-icon {
        width: 35px;
        height: 35px;
        margin-right: 5px;
    }
    
    .about-icon::after {
        display: none;
    }
} 