.rp-7b4df2b8-wrapper {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 99999;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    animation: rpFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes rpFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rp-7b4df2b8-box {
    width: 340px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12), 0 2px 10px rgba(0,0,0,0.06);
    padding: 20px;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.rp-7b4df2b8-box:hover {
    transform: translateY(-2px);
}

.rp-7b4df2b8-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #f5f5f5;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #666;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 2;
}

.rp-7b4df2b8-close:hover {
    background: #e0e0e0;
    color: #333;
}

.rp-7b4df2b8-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.rp-7b4df2b8-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4285F4, #34A853);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    margin-right: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.rp-7b4df2b8-meta {
    flex-grow: 1;
}

.rp-7b4df2b8-author {
    font-size: 15px;
    font-weight: 600;
    color: #202124;
    margin-bottom: 2px;
}

.rp-7b4df2b8-date {
    font-size: 12px;
    color: #70757a;
}

.rp-7b4df2b8-google-icon {
    width: 24px;
    height: 24px;
    opacity: 0.9;
}

.rp-7b4df2b8-stars {
    font-size: 14px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.rp-7b4df2b8-text {
    font-size: 14px;
    line-height: 1.5;
    color: #4d5156;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}