    .blog-author-banner {
        max-width: 800px;
        margin: 40px auto;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 16px;
        padding: 35px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        animation: fadeInUp 0.8s ease-out;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .blog-author-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #ff0000, #ff6b6b, #667eea, #764ba2);
        animation: shimmer 3s infinite;
    }

    @keyframes shimmer {
        0%, 100% { background-position: -200% 0; }
        50% { background-position: 200% 0; }
    }

    .blog-author-banner::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        animation: pulse 6s ease-in-out infinite;
        pointer-events: none;
    }

    @keyframes pulse {
        0%, 100% { transform: scale(1); opacity: 0.5; }
        50% { transform: scale(1.1); opacity: 0.8; }
    }

    .blog-author-content {
        display: flex;
        align-items: center;
        gap: 30px;
        position: relative;
        z-index: 2;
    }

    .blog-author-avatar-container {
        position: relative;
        animation: float 3s ease-in-out infinite;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
    }

    .blog-author-avatar {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid white;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .blog-author-avatar:hover {
        transform: scale(1.1);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    }

    .blog-author-info {
        flex: 1;
        color: white;
        animation: slideInRight 0.8s ease-out 0.2s both;
    }

    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .blog-author-name {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 10px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .blog-author-verified {
        color: #1da1f2;
        font-size: 1.3rem;
        animation: bounce 2s infinite;
    }

    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
        40% { transform: translateY(-5px); }
        60% { transform: translateY(-3px); }
    }

    .blog-author-bio {
        font-size: 1.1rem;
        opacity: 0.9;
        margin-bottom: 20px;
        line-height: 1.5;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        animation: fadeIn 0.8s ease-out 0.4s both;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 0.9; }
    }

    .blog-author-social {
        display: flex;
        gap: 12px;
        animation: slideInUp 0.8s ease-out 0.6s both;
    }

    @keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .blog-social-link {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(20px);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        text-decoration: none;
        position: relative;
        overflow: hidden;
    }

    .blog-social-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
        transition: left 0.6s;
    }

    .blog-social-link:hover::before {
        left: 100%;
    }

    .blog-social-link svg {
        width: 20px;
        height: 20px;
        fill: white;
        transition: all 0.3s ease;
    }

    .blog-social-link:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: translateY(-5px) scale(1.1);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    .blog-social-link:hover svg {
        transform: scale(1.2);
    }

    /* Instagram specific */
    .blog-social-link.instagram:hover {
        background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    }

    /* YouTube specific */
    .blog-social-link.youtube:hover {
        background: #FF0000;
    }

    /* Telegram specific */
    .blog-social-link.telegram:hover {
        background: #0088cc;
    }

    /* Dark theme support */
    body.dark-theme .blog-author-banner {
        background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    body.dark-theme .blog-author-banner::before {
        background: linear-gradient(90deg, #ff6b6b, #667eea, #764ba2, #4a5568);
    }

    /* Responsive */
    @media (max-width: 768px) {
        .blog-author-banner {
            margin: 20px;
            padding: 25px;
        }
        
        .blog-author-content {
            flex-direction: column;
            text-align: center;
            gap: 20px;
        }
        
        .blog-author-name {
            justify-content: center;
            font-size: 1.6rem;
        }
        
        .blog-author-avatar {
            width: 70px;
            height: 70px;
        }
        
        .blog-social-link {
            width: 40px;
            height: 40px;
        }
        
        .blog-social-link svg {
            width: 18px;
            height: 18px;
        }
    }

    /* Loading animation */
    .blog-author-banner.loading {
        animation: pulse 1.5s ease-in-out infinite;
    }

    /* Hover effects for entire banner */
    .blog-author-banner:hover::after {
        animation: pulse 2s ease-in-out infinite;
    }